Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
11answers
2k views

How to work around a very large 2d array in C++

I need to create a 2D int array of size 800x800. But doing so creates a stack overflow (ha ha). I'm new to C++, so should I do something like a vector of vectors? And just encapsulate the 2d array ...
5
votes
3answers
1k views

Perspective correct texture mapping; z distance calculation might be wrong

I'm making a software rasterizer, and I've run into a bit of a snag: I can't seem to get perspective-correct texture mapping to work. My algorithm is to first sort the coordinates to plot by y. This ...
4
votes
1answer
371 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 ...
3
votes
2answers
123 views

Using OpenGL in Matlab to get depth buffer

Ive asked a similar question before and didnt manage to find a direct answer. Could someone provide sample code for extracting the depth buffer of the rendering of an object into a figure in Matlab? ...
3
votes
1answer
221 views

DirectX Z-Buffer Issue

Does anyone knows what might be causing the weird artifacts I am seeing in my C# Managed DirectX application. Here is a screenshot of the problem I am having: What you are looking at is some ...
2
votes
0answers
140 views

Write depth buffer from Cg and then read it from OpenGL

I'd like to create a shadow map with cg. I have written an opengl program and 2 pixel shaders (with 2 vertex shader). In the first pixel shader, I write the DEPTH register, and in the OpenGL program I ...
2
votes
3answers
99 views

Suggestions on optimizing a Z-buffer implementation?

I'm writing a 3D graphics library as part of a project of mine, and I'm at the point where everything works, but not well enough. In particular, my main headache is that my pixel fill-rate is ...
2
votes
2answers
171 views

[GLSL]How to compare the z value of all the vertices in world coordinate?

This might be a simple question. As a newbie on GLSL, I would rather ask here. Now, in the vertex shader, I can get the position in world coordinate system in the following way: gl_Position = ...
2
votes
2answers
325 views

Zbuffer rules for gl_Position

Here are my settings for opengl, incase they matter: glViewport(0,0,w,h); //w=800, h=600 glShadeModel(GL_SMOOTH); glClearColor(0.0f, 0.0f, 0.0f, 0.0f); glClearDepth(1.0f); glEnable(GL_DEPTH_TEST); ...
2
votes
2answers
151 views

The advantages of using a Z-Buffer versus prioritising pixels according to depth

This is a bit more of an academic question. Indeed I am preparing for a an exam and I'm just trying to truly understand this concept. Allow me to explain somewhat the context. The issue at hand is ...
2
votes
1answer
433 views

Efficient implementation of a Z-Buffer

I am currently implementing my own renderer using the Z-Buffer algorithm. Once I have done the necessary calculations (read: My Z-Buffer is filled with the correct values) I use SDL to colour in the ...
1
vote
1answer
327 views

Implementing a Z-buffer using OpenGL

For a project I want to implement my own Z-buffer. I know the algorithm and how to implement this. Because I do not want to write an entire graphics engine I was planning on using OpenGL, the problem ...
1
vote
1answer
115 views

DirectX meshes not being displayed properly after switching view and projection matrices

In my program, the meshes were being displayed properly, but when I change the device.transform.view and the device.transform.projection matrices from the left handed to the right handed system, the ...
1
vote
2answers
848 views

In DirectX 9, how to get zbuffer to work properly?

I've been unsuccessful at getting a simple cube geometry with shading turned on to display correctly. This is c# code, but the values are being passed through SlimDX directly to C++ code. ...
1
vote
1answer
939 views

How do I set up DirectX 9 so that backface culling is off, z-buffering is on, and gouraud shading works, for triangle meshes without normals data?

I've been having difficulty identifying the correct parameters for the PresentParameters and DirectX device, so that there can be both vertex-level gouraud shading and the use of a z buffer. Some ...
0
votes
0answers
29 views

Best Z ordering method for tile-based, cocos2D-iPhone games?

I want to make isometric, tile-based, iPhone games with cocos2D. Sprites need to be drawn on-top of other sprites that are "behind" it. I'm looking for the best way to do this. I'd like to avoid the ...
0
votes
1answer
29 views

Depth buffer in 2D

I'm working on a 2D game with realistic deferred lighting. Since I'm rendering the lights after the scene is rendered, I need a way to cull lighting calculations if there is an object, such as a tree, ...
0
votes
1answer
55 views

Certain faces not appearing

Well, I am creating a minecraft like terrain thing which - like minecraft is seperated into regions. my problem simply is that some faces are not showing, and the top and right part of 6x6 regions are ...
0
votes
1answer
42 views

Vertices behind are being drawn infront - XNA

Well, I am creating a minecraft terrain thing just for the heck of it. The problem I have is that if you look on a certain angle some faces which are actually behind others are drawn in front of them, ...
0
votes
0answers
53 views

Unity Render to Temporary buffer?

I have multiple transparent objects that I need to render within close proximity that are made up of multiple submeshes. To try to fix the problem of the submeshes writing over each other I have used ...
0
votes
1answer
204 views

How to access depth buffer in pixel shader in DirectX 9.0 c

Is it possible to access depth buffer via pixel shader 2.0 in DX 9.0c? I've google'd a bit and the only solution I've found describe GPU hack that works only on GeForce 6 & 7. What I am trying to ...
0
votes
1answer
76 views

Change depth buffer limits for pretransformed mesh in DirectX 9.0c

I'm writing small application that recieves pretransformed vertices and display them on screen. FVF for vertice is defined as (and I can't change it) #define MY_FVF D3DFVF_XYZRHW | D3DFVF_DIFFUSE | ...
0
votes
2answers
294 views

OpenGL Z-Biasing (Polygon Offset) Limitations

I have a two coplanar polygons. I tried doing. glEnable(GL_POLYGON_OFFSET_FILL); glPolygonOffset(0,1); and expected one to be distinctly "on top of" the other. This is the case until about 70-75 ...
0
votes
1answer
571 views

How to get Z values from Z Buffer

I'm having problems with drawing in OpenGL and I need to see exactly what values are being placed in the depth buffer. Can anyone tell me how to retrieve these values? Thanks Chris
0
votes
1answer
462 views

DirectX depth buffering not working

For some strange reason my depth buffer is not working, i.e. the triangles drawn later always overlap, regardless of their position. I have these presenter parameters D3DPRESENT_PARAMETERS d3dpp; ...
0
votes
1answer
132 views

Why is duplicate text being rendered onto the Z buffer of a different texture when using D3DXFont::DrawText?

I've been stumbling over this for a while and was wondering if anyone has run into this problem before. The application I'm working on is divided into multiple data plots and a single timeline at the ...
0
votes
1answer
3k views

Flash CS4 3D Sprite Rotation Z Order Problem

I suspect this is a maths issue rather than a flash one. In a nutshell, I have two cubes that rotate around their common center point. So far so good. Using the appendTranslation and appendRotation ...