0
votes
1answer
38 views
Matrix to Represent a Triangle in Screen Space
Hi All,
So i have a set of four points in 3D Space.
P1 [0, 0, 0]
P2 [128, 0, 0]
P3 [0, 128, 0]
P4 [128, 128, 0]
Which I'm then projecting orthographically to the screen effectively giving …
0
votes
0answers
43 views
Using opengl, how do I combine a background image and a smaller distorted texture?
I am attempting to make an image stretch effect on the iphone. I make a vertex array and shift the texture data for each indice within an arbitrary radius of a background image. Then make the …
2
votes
2answers
76 views
32 pixel gap at top of opengl es texture
I am trying for the first time to render to a texture using openGL ES (for iPhone) and then display the texture on the screen. Everything works except that there is a 32 row gap at the top of the …
0
votes
3answers
173 views
How to programmatically alpha fade a textured object in OpenGL ES 1.1 (iPhone)
I've been using OpenGL ES 1.1 on the iPhone for 10 months, and in that time there is one seemingly simple task I have been unable to do: programmatically fade a textured object. To keep it simple: how …
1
vote
3answers
134 views
Texturing error on a Sphere
I have a number of spherical longitude/latitude coordinates for points on a sphere that I need to visualize. For that purpose, I transformed the points to cartesian coordinates and built a mesh of …
2
votes
1answer
75 views
Algorithm for “filling in” texture in a 2D image
I recall seeing a paper a while back for an algorithm that could automatically and seamlessly "graft" texture from parts of an image onto another part of an image.
The approach was something along …
1
vote
1answer
42 views
How do I set a pixel color in a texture using ManagedDX?
Hey guys, I need to set a specific pixel in a texture to a custom color,
for doing that I made a Bitmap and I always set the pixel in the bitmap,
then I recreate the texture from the bitmap.
Doing …
0
votes
1answer
32 views
What does SetPrivateData does in Managed DirectX?
Iv'e seen this method for a Texture, would someone explain me what does it do?
1
vote
1answer
300 views
Draw polygon to clip texture to be transparent where polygon is openGL(EL)
I have two layers being drawn. A static background texture and a texture(png) with transparent parts. I can correctly see the background with no problems. What I would like to do is modify the top …
0
votes
3answers
216 views
OpenGL Texture Combiner - gradient texture
Hi,
I've got 2 RGBA8 textures:
A) The "main" texture with data for display in all channels
B) The "gradient" texture that only has meaningful data in alpha (of course this should really just be an …
0
votes
1answer
75 views
Program crashes when releases UIImage after generating OpenGL ES texture
Right now, I have followed this tutorial:
http://iphonedevelopment.blogspot.com/2009/05/opengl-es-from-ground-up-part-6%5F25.html
It does not work if I tried to release UIImage: I will get a …
1
vote
1answer
534 views
iPhone OpenGL ES Texture2D Masking
What's the best choice when trying to mask a texture
like ColorSplash or other apps like iSteam, etc?
I started learning OPENGL ES like... 4 days ago (I'm a total
rookie) and tried the following …
1
vote
1answer
671 views
XNA or OpenGL sphere texture mapping
I'm trying to map a completly normal texture into a sphere.
I can't change my texture to a wrapped one, so I need to find some mapping function.
This is my vertex shader code:
vec3 north = …
2
votes
3answers
133 views
OpenGL: distorted textures when not divisible by 2
I have a game engine that uses OpenGL for display.
I coded a small menu for it, and then I noticed something odd after rendering the text.
http://img43.imageshack.us/i/garbagen.png/
As you see, the …
1
vote
2answers
79 views
Which version of OpenGL supports rectangular textures (w/o extensions)?
Rectangular textures used to be support through extensions and at some version of OpenGL are now directly supported, i.e I can create textures with the same basic opengl methods just supplying …
