Tagged Questions
2
votes
2answers
103 views
Is ModelViewProjection the same as WorldViewProjection?
I am converting some code from HSLSL and XNA to CG and OpenGL.
The code is for rendering volume data. But volume data is not also sampled using the same distance in each dimension, for example (0.9f, ...
2
votes
1answer
271 views
Embedding other language in Flex/Bison
The bottom line:
If you would like to add one, very small feature into C++ using Flex/Bison, how would you do that? For example, ability to declare void xxx() functions with syntax: foo%%: xxx?
The ...
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
235 views
Example for rendering with Cg to a offscreen frame buffer object
I would like to see an example of rendering with nVidia Cg to an offscreen frame buffer object.
The computers I have access to have graphic cards but no monitors (or X server). So I want to render my ...
1
vote
1answer
425 views
C++ Nvidia Cg question
I started using Nvidia Cg shaders recently and everything looks and works fine if I'm doing it on the Nvidia GPU (GTS250 in my case).
I tried launching the same (my own test application) on ATI ...
1
vote
1answer
428 views
Embedding cg shaders in C++ GPGPU library
I'm writing a GPGPU Fluid simulation, which runs using C++/OpenGL/Cg. At the moment, the library requires that the user specify a path to the shaders, which is will then read it from.
I'm finding it ...
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
2answers
111 views
Tutorial on integrating CG shader into GL and D3D9?
I've found many tutorials on writing CG shaders but none that show how to integrate it into a D3D or GL scene. Is there a tutorial that would show how CG would integrate into these?
0
votes
1answer
637 views
Linking Nvidia's Cg framework statically in Xcode
10 billion kudos for life to anyone who can figure this one out.
Nvidia only provides a standard framework for Cg, which I cannot figure how I can link statically. I need to link it statically ...