Tagged Questions
The depth-buffer tag has no wiki summary.
4
votes
1answer
1k views
Android OpenGL 3D picking
I'm on Android OpenGL-ES 2.0 and after all the limitations that come with it, I can't figure out how to take 2D screen touches to the 3D points I have. I can't get the right results.
I'm trying to ...
4
votes
1answer
373 views
Drawing unobscured health bars in a Java 3D scene
So I'm working on a game in Java 3D and I'm implementing health bars that hover above units.
I started by drawing a quad at a 3D point above the unit's location and applying a Billboard behavior to ...
4
votes
1answer
290 views
Java OpenGL color material darkens when depth test is disabled
I've been working with the depth buffer in OpenGL (JOGL) to ensure certain items are rendered in front of others by disabling the depth buffer (detailed in my previous question ...
3
votes
4answers
128 views
How to correctly render coincident polygons in OpenGL (ES)
I understand that by setting the depth function in OpenGL ES one can control how overlapping geometries are rendered in a 3D scene. I use gl.depthFunc(gl.LEQUAL) (webgl) in my code.
However when two ...
3
votes
2answers
161 views
Writing the correct value in the depth buffer when using ray-casting
I am doing a ray-casting in a 3d texture until I hit a correct value. I am doing the ray-casting in a cube and the cube corners are already in world coordinates so I don't have to multiply the ...
3
votes
1answer
944 views
Writing texture data onto depth buffer
I'm trying to implement the technique described at : Compositing Images with Depth.
The idea is to use an existing texture (loaded from an image) as a depth mask, to basically fake 3D.
The problem ...
3
votes
3answers
473 views
Depth test inverted by default in OpenGL, or did I got it wrong?
I've been playing around with OpenGL for a full week or equivalent.
After 2D I'm now trying 3D. I want to reproduce the 3D scene you can see in the third video on http://johnnylee.net/projects/wii/.
...
2
votes
2answers
60 views
Why is GL_LEQUAL recommended for the GL depth function (and why doesn't it work for me)?
On the GL wiki they recommend using GL_LEQUAL for the depth function. Also, the depth function defaults to GL_LESS. When I use either of these functions, I get strange results. In this picture the red ...
2
votes
1answer
33 views
Can't get depth testing to work in OpenGL
I use SFML to create the window.
In this screenshot the cube should be behind the pyramid but it just doesn't work.
Here is the minimal code I used:
#include <OpenGL/gl.h>
#include ...
2
votes
1answer
133 views
Using depth buffer with GL_LINES
I want to draw edges of an object with hidden edges removed. The idea I want to apply is to render the object's faces first to the depth buffer, then in a second pass drawing the edges with depth ...
2
votes
3answers
279 views
How can I read the depth buffer in WebGL?
Using the WebGL API, how can I get a value from the depth buffer, or in any other way determine 3D coordinates from screen coordinates (i.e. to find a location clicked on), other than by performing my ...
2
votes
1answer
317 views
Matlab z buffer for simulating kinect
We are trying to simulate simple kinect output.
I have rendered a triangle mesh in Matlab and now I want to get at the depth buffer of the figure/axis where the shape has been rendered.
How do I do ...
2
votes
0answers
371 views
Support of GL_DEPTH_COMPONENT for cudaGraphicsGLRegisterImage
I'm trying to perform combined rendering with OpenGL for polygonal rendering and CUDA for volume rendering. My idea is to render the OpenGL scene into a framebuffer, then use that color and depth ...
2
votes
1answer
108 views
How to use depth testing when rendering to an offscreen buffer then onto texture
I'm rendering my scene to a texture. This works fine except that depth testing does not work. How do I enable depth testing if rendering to an offscreen texture? I'm using the FrameBuffer class ...
2
votes
2answers
398 views
Create depth buffer histogram texture with GLSL
I'm using the depth buffer of the current context to influence a texture I am displaying. The texture is 1 dimensional and in grayscale. From left to right represents from near to far. The more pixels ...
2
votes
1answer
569 views
Android depth buffer issue: Advice for anyone experiencing problem
I've wasted around 30 hours this week writing and re-writing code, believing that I had misunderstood how the OpenGL depth buffer works. Everything I tried, failed. I have now resolved my problem by ...
2
votes
1answer
452 views
OpenGL Depth Buffer Problem
For my last few projects I have been using some of the utility files that I found whilst looking at a few demos here.
Namely a file called opengl.h - mainly used to manage shaders a bit like glew and ...
2
votes
2answers
324 views
JOGL Depth Buffering Not Working
I have been using JOGL for a few days now and this is now becoming a major road block. I can not get shapes to draw in the correct z-order, instead, they are drawn in the order they are given to ...
2
votes
1answer
2k views
Using depth buffer in opengl es 2.0 iphone
I followed a tutorial using depth buffer in opengl es 1.1. But I use opengl es 2.0. The implemented code results in an error: Failed to make complete framebuffer object 8cd6.
See implemented code ...
2
votes
1answer
3k views
Android OpenGL ES Framebuffer objects - rendering to texture
I am using an Android device running Froyo supporting OpenGL ES 1.1 and OpenGL ES 2.0
I want to render the depth buffer to a texture. Having seen a number of examples for OpenGL, OpenGL ES on other ...
2
votes
2answers
504 views
How do I Z-sort triangles for a 3D engine?
I'm building a small 3D engine for a game I'm working on. I've got my basics sorted: textured triangles with backface culling. However depth sorting is proving to be a difficult problem.
I'm ...
1
vote
2answers
104 views
Render depth buffer to texture
Quite new at shaders, so please bear with me if I am doing something silly here. :)
I am trying to render the depth buffer of a scene to a texture using opengl ES 2.0 on iOS, but I do not seem to get ...
1
vote
1answer
283 views
OpenGL point sprites with depth testing - a blending issue?
I am rendering point sprites (using OpenGL ES 2.0 on iOS) as a user's drawing strokes. I am storing these points in vertex buffer objects such that I need to perform depth testing in order for the ...
1
vote
1answer
180 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
273 views
True depth values using OpenGL readPixels
I'd like to retrieve the depth buffer from my camera view for a 3D filtering application. Currently, I'm using glReadPixels to get the depth component. Instead of the [0,1] values, I need the true ...
1
vote
1answer
402 views
glReadPixels doesn't read depth buffer values on iOS
I can't seem to read the depth buffer values in OpenGL ES2 on iOS 4.3
afDepthPixels = (float*)malloc(sizeof(float) * iScreenWidth * iScreenHeight);
glReadPixels(0, 0, iScreenWidth, iScreenHeight, ...
1
vote
1answer
343 views
problem with opengles2 and gingerbread on galaxy s
Has anyone experienced a change in depth sort behaviour after upgrading a galaxy s to android 2.3.3 ?
I am finding that the depth sort fails to work once a certain polycount threshold has been ...
1
vote
2answers
337 views
glDepthMask(GL_FALSE) trashes the frame buffer on some GPUs
I sometimes disable depth buffer writing via glDepthMask(GL_FALSE) during the rendering of a frame. That works perfectly fine on some GPUs (like the Motorola Droid's PowerVR), but on the HTC EVO with ...
1
vote
1answer
331 views
Strange depth/blending in OpenGL drawing models
I'm having a strange problem which I cannot figure out for the life of me. I'm loading an OBJ model file from Maya and rendering it an OpenGL environment. This appears to go well and in my independent ...
1
vote
3answers
212 views
Why do you need the depth buffer?
I don't understand why I need to use depth buffer, because in this project cube draws without depth buffer.
Sorry for my bad English. I'm russian and started to learn English 1.5 years ago.
1
vote
2answers
1k views
(iOS) OpenGL ES (2.0) Application, how to move the object in Z?
I'm playing with OpenGL ES (2.0) Application (iOS) source code in XCode and was trying to make the colorful square move in the Z coordinate, so I tried to change the shader code from
...
1
vote
1answer
377 views
OpenGL: Can I mask wholly transparent fragments from the depth-buffer?
Is there a way to tell OpenGL not to write the depth of wholly transparent fragments into the depth buffer?
Just be be sure, the texture I want to render is never semi-transparent; its alpha values ...
1
vote
1answer
1k views
Disabling Depth Buffer checks in XNA 4.0 on Windows Phone 7
I don't see a RenderState as a member in the GraphicsDevice class, which is where the functions for disabling the depth buffer used to be. Anyone know how this is done with this new 4.0 API?
It ...
1
vote
1answer
792 views
Problems using glDrawTexfOES to render background image with foreground objects
I have a simple iPhone OpenGL ES app, in which I render a full-screen background image using a texture, and then draw 3D polyhedra on top of it using lines. The texture is displayed using ...
1
vote
3answers
1k views
OpenGL es 2.0 Read depth buffer
As far as i know, we can't read the Z(depth) value in OpenGL ES 2.0.
So I am wondering how we can get the 3D world coordinates from a point on the 2D screen?
Actually I have some random thoughts ...
1
vote
3answers
2k views
iPhone OpenGL ES: Applying a Depth Test on Textures that have transparent pixels for 2D game
Currently, I have blending and depth testing turn on for a 2D game. When I draw my textures, the "upper" texture remove some portion of the lower textures if they intersect. Clearly, transparent ...
1
vote
2answers
1k views
OpenGL ES depth buffer
I was wondering if I can deallocate the depth buffer in iPhone OpenGL ES to conserve memory? Or it stays until the application finishes?
I only need the depth testing in the beginning of the ...
0
votes
1answer
69 views
why glPolygonOffset is related to the slope of polygons
I am doing shadow mapping using OpenGL. There is a z-fighting problem when comparing the depth with the shadow map. I can solve the problem using glPolygonOffset. I know this function helps push(or ...
0
votes
2answers
63 views
Disable writing in depth buffer from glsl
All geometry is storing in one VBO (Transparent + Not transparent). I can not sort geometry. How I can disable writing in depth buffer from glsl without loss the data colors?
0
votes
1answer
43 views
Is the depth buffer size the same as the view port size?
If I perform
#define SCREEN_SIZE 512
glEnable(GL_DEPTH_TEST);
glViewport(0, 0, SCREEN_SIZE, SCREEN_SIZE);
Does this make my depth buffer size SCREEN_SIZE x SCREEN_SIZE?
0
votes
1answer
134 views
OpenGLES 2.0 (GLKit, iPhone): Polygons partially obscure wireframe lines
I am trying to create a 3D function plotter for iOS. I have succeeded to render the graph using triangle strips and also implemented drawing a wireframe via lines. But if I render both at the same ...
0
votes
2answers
129 views
Directx 11 depth test not working
I cannot get my program to correctly choose which models to place in front. I have followed the MSDN code exactly. My code appears to correctly draw all polygons in a particular call of DrawIndexed, ...
0
votes
1answer
55 views
XNA 3.1 Preserving the Depth Buffer before it clears
I'm trying to get around XNA 3.1's automatic clearing of the depth buffer when switching render targets by copying the IDirect3DSurface9 from the depth buffer before the render targets are switched, ...
0
votes
1answer
160 views
Comparing Kinect depth to OpenGL depth efficiently
Background:
This problem is related with 3D tracking of object.
My system projects object/samples from known parameters (X, Y, Z) to OpenGL and
try to match with image and depth informations ...
0
votes
2answers
75 views
With a 2D iPhone OpenGL ES 1.1 app, how do I get my depth buffer working for textures?
I'm making a 2D videogame. Right now I don't have that many sprites and one texture with no depth buffer works fine. But when I expand to multiple textures I want to use a depth buffer so that I don't ...
0
votes
2answers
50 views
Using depth and color buffers with different resolutions (sub-sampled depth buffer)
I want to use a sub-sampled depth buffer to increase performance of a program. In my case, it does not matter if there are artifacts or geometry popping will occur.
I have set up my framebuffer like ...
0
votes
1answer
428 views
OpenGL ES 2.x: How to Discard Depth Buffer glDiscardFramebufferEXT?
I read iOS OpenGL ES Logical Buffer Loads that a performance gain can be reached by "discarding" your depth buffer after each draw cycle. I try this, but it's as my game engine is not rendering any ...
0
votes
1answer
179 views
Differences in the depth buffer between Android versions using OpenGL ES 1.1
I'm writing a 2d game in OpenGL ES 1.0 (with casts to 1.1 Extensions where applicable). I'm trying to keep this as generic as possible in case I've missed something obvious.
I'm having an issue with ...
0
votes
1answer
99 views
Workaround for transparency and depth testing in OpenGL ES?
I'm trying to get depth testing working correctly on OpenGL ES, using the draw_texture extension. I realised early on that 'normal' z co-ordinates when rendered using this extension don't work. This ...
0
votes
0answers
114 views
Clipping in OpenGL ES using depth buffer while recursive draw
I want to draw a rectangle which might contain more rectangles and they too might contain more rectangles and this goes on. So you can have series of rectangles inside a rectangle. Suppose if there is ...