Tagged Questions

2
votes
1answer
139 views

Cg shaders not being applied after switch to glVertexPointer

My renderer used to render geometry with the old fixed function stuff using glBegin/glEnd. After switching it to use vertex arrays via glVertexPointer et. al., my Cg shaders stopped showing up. If i ...
1
vote
1answer
47 views

(How) can a shader view the current render-buffer?

Is it possible for a pixel shader to see the current state of the depth/color/stencil buffer?
1
vote
3answers
80 views

Coordinates output from Cg Vertex shader

The article here says: Dividing x, y, and z by w accomplishes this. The resulting coordinates are called normalized device coordinates. Now all the visible geometric data lies in a cube with ...
1
vote
1answer
78 views

How to modify/displace pixel position in a Cg fragment shader?

Is it possible to modify pixel coordinates in a fragment (pixel) shader using Cg? I'm sure such functionality became available in 2nd/3rd-generation shaders but I don't know what profiles exactly, or ...
1
vote
0answers
31 views

How far can you push Cg?

I have been told by experienced shader developers that while Cg is great for simple shaders, it is advised to do GLSL/HLSL directly for advanced shaders, due to bugs in resultant shader code. What ...
1
vote
1answer
389 views

Stacking Cg shaders

In my engine I load Cg shaders from pairs of vertex/pixel shader files. I would like to be able to stack shaders to combine them (lighting + material, etc.). Short of breaking up the shaders into ...
0
votes
1answer
36 views

Can a shader sample a block/region of pixels in a texture?

Are there ways a shader can query the sum/average of a block of pixels in a texture read, rather than looking up a single value? I'm working in Cg but any examples and search terms are welcome. I ...
0
votes
1answer
51 views

Is nVidia's Cg dead?

I like Cg but it seems to be a long way behind GLSL/HLSL now - only supporting fragment & vertex shaders, for instance. Is it still being developed or has it been given up - in which case is ...