Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
439 views

OpenGL stencil buffer OR operation?

I'm not sure if this is possible to do, but it's worth a shot. I'm using the stencil buffer to reduce overdraw for light volumes in a deferred renderer using this algorithm (when the camera is outside ...
4
votes
1answer
382 views

OpenGL using GL_STENCIL with a sphere

I'm working with OpenGL and I am trying to create a sphere that has a reflective surface. I have it reflecting but the reflection isn't correct. The object in the reflection should be bent and ...
4
votes
1answer
1k views

Concave polygon drawing

For drawing complex concave polygons with OpenGL, is it better to tesselate it into triangles, or use the stencil buffer? I'm guessing the stencil buffer would be faster for a single frame, but ...
2
votes
1answer
75 views

shadow volume - non-manifold objects

I have doubts regarding the creation of shadow volumes for non-manifold objects, specially when the objects have dangling faces. For instance: where we have a box (brown) and two connected faces ...
2
votes
1answer
126 views

Using the stencil buffer to merge dynamic shadow

I'm making a splitscreen coop 2D from-the-top game with LWJGL. I'm currently trying to figure a smart way of merging two field of vision with the stencil buffer. The whole point is that you are able ...
2
votes
1answer
362 views

Shadow volumes - final stage

I continue to work on shadow volumes in OpenGL, after finishing with volume itself, i need to draw a shadow using stencil buffer, and thats where i'm stuck :) I rendered this scene: ...
1
vote
0answers
5 views

Android OpenGL ES 1.1: Read from Stencil Buffer

Using Android OpenGL ES 1.1 (HTC Desire)... The problem I have in general is this: I have various 3D objects rendered in a complex scene. I want to check if the user has clicked on a particular ...
1
vote
1answer
60 views

opengl stencil buffer - not quite got it working

currently im drawing a background, then a transparent triangle into the stencil buffer, then a blue square where the triangle isnt being drawn. i was hoping the effect would be a blue square with a ...
1
vote
2answers
254 views

How to create Stencil buffer with texture (Image) in OpenGL-ES 2.0

Can I have Stencil prepared with a texture (Image) in OpenGL 2.0 So that some part of the Image will be transparent and as a result it will be transfered as is to Stencil buffer and then will use this ...
1
vote
1answer
178 views

Affect depth, or stencil buffer from inside fragment shader?

I know it is possible to control what is written to the depth buffer in GLSL by writing to gl_FragDepth, but is it possible to write to the stencil buffer? Also, can I cancel a pixel write completely ...
1
vote
2answers
143 views

opengl stencil buffer not initialized with zero?

I work under MS WindowsXP,my video card is itel GMA4500, my code: glClearStencil(0); glClear(GL_STENCIL_BUFFER_BIT); unsigned char* data = new unsigned char[width*height]; ...
1
vote
1answer
301 views

OperGL stencil buffer not acting how I expect

I have a simple UI widget system and I'm using the stencil buffer to act as a clipper so that children of a widget can't be drawn outside the widget. Basically, the stencil value for everything is ...
1
vote
2answers
2k views

Getting the OpenGL-ES Stencil Buffer Working

With the stencil buffer in opengl-es for Android, I'm simply trying to mask out drawing part of the screen. I think I have it set up right, but it is not masking out the non-stenciled parts. Below is ...
1
vote
2answers
375 views

OpenGl: Stencil buffer problem (Wall + Window)?

Hey all, I want to create a wall with a window inside, using stencil buffer. My code looks like this: glEnable(GL_STENCIL_TEST); glClearStencil(0); glClear(GL_STENCIL_BUFFER_BIT); glStencilMask(1); ...
1
vote
3answers
688 views

Does OpenGL stencil test happen before or after fragment program runs?

When I set glStencilFunc( GL_NEVER, . . . ) effectively disabling all drawing, and then run my [shader-bound] program I get no performance increase over letting the fragment shader run. I thought the ...
0
votes
0answers
39 views

Issue with masking using Open GL 1.0 stencil buffer in iOs

I have been struggling to find a solution for a simple masking using Stencil Buffer in OPEN GL 1.0 on the iOs. I draw the background and then I draw on top of it using glPushMatrix a frame which is ...
0
votes
1answer
88 views

OpenGL, stencil buffer of FBO not working?

I try to use the stencil buffer of a FBO in OpenGL, but I can't get it to work. I bound a depth24_stencil8 texture to the FBO both for the depth and stencil targets. As a simple test, I tried: /* ...
0
votes
1answer
111 views

Does iOS5 support both GL_STENCIL_INDEX and GL_STENCIL_INDEX8?

With the following code: GLuint viewRenderbuffer, viewFramebuffer, viewDepthbuffer, stencilBuffer; // Create the framebuffer object glGenFramebuffers(1, &viewFramebuffer); ...
0
votes
2answers
68 views

glStencilFunc not working for some reason :(

No matter what I tried, particles render outside the globe without touching the inside of the globe, I want it the other way around! no matter what parameters I changed (tried for 2 hours), its either ...
0
votes
1answer
191 views

OpenGL ES stencil operations

In reference to the problem diskussed in article OpenGL clipping a new question arises. I am implementing the clipping for a node based 2D scene graph. Whenever the clipping boxes are axis aligned I ...
0
votes
0answers
112 views

stencil renderbuffer creation not working with PowerVR's Windows OpenGL ES 2.0 emulator

When I create a stencil render buffer, no gl errors are reported, but the created buffer has no dimensions or size. This is the relevant code and resulting values: when setting up: EGLint ...
0
votes
1answer
155 views

problem with shadow volume using opengl

I cannot figure out a solution to my shadown projections using shadow volumes and stencil buffers. The problem can be viewed in: www.dt.fee.unicamp.br/~ricfow/shadowProblem.avi In this other video: ...
0
votes
1answer
317 views

Using stencil buffer in Direct3D

I'm trying to use stencil buffers on ID3D11Texture2D to overlay a portion of one texture on another texture. I plan to do this by drawing the desired shape on the stencil buffer and then copying the ...
0
votes
2answers
1k views

Using GlEs 2.0 FrameBuffer (FBO) and Stencil in android Native code (ndk)

I am trying to generate a frambuffer object and use stencil inside a native android application using the NDK (r5b). Target device is running froyo 2.2, supporting OpenGlEs 2.0. So, I've been coding ...
0
votes
1answer
135 views

Not able to get stencil to work

Was trying to get Stencil to work in my app. I use Sprites to render content on to the Device. Content could be movies, pictures or text. Can I set the stencil buffer using these Sprites, which can ...