Tagged Questions
The multitexturing tag has no wiki summary.
4
votes
1answer
67 views
Ratio of multipass textures compared to the color map
I have 4 textures used in a multi-pass effect with the color map at the highest quality - which for this example is 512x512. Currently the Normal, Specular & Parallax maps are the same dimensions. ...
3
votes
3answers
706 views
C++ OpenGL Multitexturing - glActiveTexture is NULL
I have started a new project, which I want to use multitexturing in.
I have done multixexturing before, and is supported by my version of OpenGL
In the header I have:
GLuint ...
3
votes
2answers
517 views
How to create a “scorched area” on a 3D terrain?
i'm experimenting a bit with C# and XNA. Going through the advanced "Riemers tutorials" helped me a lot, but i want to make my terrain even better. I have a simple game where player controls a tank ...
3
votes
1answer
826 views
Please help with an OpenGL ES (iPhone) multi-texturing (2D) code!
I have a texture from this PNG:
And another from this PNG:
They both have the same blend function:
glBlendFunc(GL_ONE, GL_ONE_MINUS_SRC_ALPHA);
I want to see them on one single polygon first. ...
2
votes
1answer
94 views
how draw object with diffuse texture after multi-textured object
I am drawing one object using multi-texturing. That comes fine but when I draw other objects after that using only diffuse texture, that diffuse texture gets bound with previous texture. I know I have ...
2
votes
1answer
282 views
OpenGL ES 1 multi-texturing with different uv coordinates
I need to render an object using multi-texturing but both the textures have different uv coordinates for same object. One is normal map and other one is light map.
Please provide any useful material ...
2
votes
1answer
110 views
How to draw a triangle with own texture on each corner?
Basically, i want to give 3 textures for each corner of a triangle, and interpolate from one texture to another, just like the colors would be interpolated with glColor() on the corners.
Edit: Since ...
2
votes
1answer
1k views
Any undersandable description of glTexEnvi (OpenGL ES 1.x)?
I've seen as many different parameters as many source codes I saw. Is there a description can be found somewhere that refers all about those parameters in details?
1
vote
0answers
44 views
Using RGB for A in fixed pipeline opengl
Yes so short question: Is it possible to use any of the RGB components as alpha in Opengl ES 1.1 (fixed pipeline)?
It seems that GL_COMBINE does not allow one to use the RGB as a source for alpha.
...
1
vote
3answers
291 views
OpenGL: Turn off multiple texture units
How to turn off multiple texture units because they influence to other render parts.
I activate my them:
glActiveTexture(GL_TEXTURE0 + index);
glBindTexture(GL_TEXTURE_2D,
...
1
vote
3answers
512 views
Texture units and vertex arrays in OpenGL
I'm trying to draw one cube with different textures for each face. I've come across many tutorials which state that in the display() routines, you need to enable all texture units before calling ...
1
vote
1answer
793 views
OpenGL primitives too dark when multitexturing?
I'm having a problem getting accurate primitive colours when I'm using multi-texturing elsewhere in the scene. Basically, I have some lines and polygons that I am trying render over a video texture ...
0
votes
1answer
38 views
Why do I have to switch Texture Unit in order for my Fragment Shader to recognize which texture to use?
I have this program for simple testing purpose. The program creates two 1-D textures and pass them to the shaders. The fragment shader is very simple. It just pulls out the texel at index 4 of the ...
0
votes
2answers
60 views
How do I get my textures to bind properly for multitexturing?
I'm trying to render colored text to the screen. I've got a texture containing a black (RGBA 0, 0, 0, 255) representation of the text to display, and I've got another texture containing the color ...
0
votes
0answers
56 views
Using GL ES 1.0, how do I combine vertex color and texture with modulate 2x?
I am trying to support OpenGL ES 1.0 in an existing engine and I need the vertex colour to scale the texture with modulate 2x.
IE Vertex color 128,128,128 combined with texture of 216,216,216 would ...
0
votes
1answer
210 views
OpenGl es 2.0 GLSL fragmentColor multiple textures
I am rendering frame, fragment color is based on two textures, i woudl like to increment value of one of textures in one pass, i mean can i run one program on two framebuffers in one pass?
like ...
0
votes
3answers
119 views
Multitexturing is darkening the entire scene!
I've implemented a scene using 3 quads, A, B, and C. Quad C is behind quad B. Quad B sits on top of Quad A.
All quads are using the same texture with the exception of Quad B. Quad B makes use of an ...
0
votes
1answer
717 views
OpenGL multiple textures with VBOs
I'm trying to figure out how to render an object (a cube) with different textures for each face. For simplicities sake, I have 2 textures that are applied to 3 faces of the cube each. I understand ...
0
votes
1answer
294 views
Multitexturing issue
I would like to blend up to 4 textures by using multitexturing feature in fixed
pipe line. I can successful use 2 texture units but when I use more then two
texture units there strange artifact ...
0
votes
1answer
532 views
OpenGL ES set Texture matrix for different Texturing units
with
glMatrixMode(GL_TEXTURE);
..some matrix operations...
i can change the current texture transformation matrix. However - it seems it affects not all texture units (i'm using multitexturing)
...
0
votes
0answers
477 views
Could somebody please show me a really simple OpenGL ES multi-texturing example?
I have this for now:
//Setup a move to the current position.
glLoadIdentity();
glTranslatef(squarePosition.x, squarePosition.y, 0);
//A simple base texture for "diffuse map".
...
0
votes
1answer
958 views
Lightmap with multitexturing, disabling lighting for one of the textures?
How i can disable lighting for only one of the textures in this multitexturing scheme? I tried to use glDisable(GL_LIGHTING) and glEnable(GL_LIGHTING) but it doesnt remember the settings when i render ...
0
votes
1answer
821 views
Shadows via shadowmaps and other textures - how to combine? OpenGL
Good day.
I draw a scene with shadows using shadow maps method (when we're rendering scene from light point of view to retrieve depth buffer, making shadow texture and projecting it on the scene, ...