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 how to do it.

link|improve this question

69% accept rate
feedback

2 Answers

up vote 1 down vote accepted
+50

No, it is not possible.

The only coordinate you can modify in a fragment shader is the Z, going into the Z-buffer. And even that has performance implications, as it defeats some optimizations (like Hierarchical Z).

the X and Y positions are set before the fragment shader is ever executed (in the Rasterizer). Typical rasterizers actually generate at the very least 2x2 chunks of pixels, and the hardware does not really handle pixels individually, all the way to the blending stage.

What some people tend to do to mimic that type of feature is to generate more pixels than necessary, and discard the extraneous pixels.

The feature you have heard about could be tesselation though. It is not done as part of the fragment shader, but is a separate part of the pipeline, that allow to generate additional geometry.

Ultimately, what technique you can use depends on what you're trying to achieve. But a blanket modification of X and Y has never been supported by the various APIs out there, be it in Cg, OpenGL or DirectX, because the hardware can't do it.

link|improve this answer
OK so how do I do I modify z in CG? Displacement is the right term I guess... how do I pass the z position in and change it? – John Nov 23 '11 at 14:46
you can change Z through the DEPTH semantic (typed as float). the Cg specification says this on it: "[,,,] default value is the interpolated depth obtained from the rasterizer. Semantically, this default value is copied to the output at the beginning of the execution of the fragment program." – Bahbar Nov 23 '11 at 15:51
feedback

how about this?

http://http.developer.nvidia.com/GPUGems2/gpugems2_chapter40.html

link|improve this answer
Hi Casey, welcome to Stackoverflow. Although we like references in our answers, we'd like our answers to be "standalone". Please explain/summarize why the referenced webpage answers the question. – Marijn Feb 10 at 10:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.