Tagged Questions

5
votes
4answers
1k views

Vertex shader vs Fragment Shader

I've read some tutorials regarding Cg, yet one thing is not quite clear to me. What exactly is the difference between vertex and fragment shaders? And for what situations is one better suited than the ...
3
votes
1answer
1k views

Accessing OpenGL state variables in Cg

I need to access the OpenGL state variables (such as the MVP matrices) in my Cg shader program. I'm passing these values to my Cg shader program manually using calls such as ...
2
votes
0answers
142 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
2answers
106 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
309 views

Cg and OpenGL 3

I'm currently learning the differences between OpenGL 2 and 3, and I noticed that many functions like glVertex, glVertexPointer, glColor, glColorPointer, etc. have disappeared. I'm used to using Cg ...
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
3answers
81 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
102 views

Is there a better way than writing several different versions of your GLSL shaders for compatibility sake?

I'm starting to play with OpenGL and I'd like to avoid the fixed functions as much as possible as the trend seems to be away from them. However, my graphics card is old and only supports up to OpenGL ...
1
vote
1answer
178 views

OpenGL: How do I get the coordinates of a specific point after transformation?

Suppose I have a point at (250,125,-20). After the following transformation, glMatrixMode(GL_MODELVIEW); glLoadIdentity(); glTranslatef(100.0, 50.0, 0.0); glRotatef(-25.0, 0.0, 1.0, 0.0); How ...
1
vote
1answer
172 views

Getting an error using a uniform 1D texture parameter with CG and openGL

I am trying to write a basic volume renderer which uses opengl, and cg for writing shaders. I'm putting my transfer function in a one dimensional texture, and using that in a dependent texture lookup ...
1
vote
1answer
111 views

Solution to “function 'floor' not support in this profile” in Ogre3D cg fragment shader

I am reading the book "Ogre3D 1.7 Beginngers guide".I writed a cg fragment shader but encountered the complier complain, "function 'floor' not support in this profile". The fragment shader definition ...
1
vote
1answer
400 views

Pixel scaling algorithm problems with GPU shader

So I'm working on some pixel shaders for good old emulators like Super Nintendo. You have the classic algorithms like HQnx, 2xSaI, etc, and they are definitely written to run on CPUs and be scaled ...
1
vote
1answer
310 views

OpenGL spotlight with Cg

I'm trying to accomplish a spotlight effect with Cg. I've already managed to do normal ambient and diffuse lighting. I understand the basic functionality of a spotlight (position, direction, cutoff ...
1
vote
1answer
121 views

OpenGL lighting with Cg

I'm already familiar with OpenGL's native lights. My question is how do I go about rendering lights with Cg? Do I still need to declare normal OpenGL lights and then use Cg to render the light?Or is ...
1
vote
1answer
305 views

Shader and opengl transformations

When i add shaders (in cg) to my opengl program all the local transformations (glRotatef, glTranslatef and glScalef between glPushMatrix and glPopMatrix) stop working. Transforms outside push/pop ...
1
vote
1answer
237 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
117 views

Is it correct to attach Frame Buffer Object to a 3D texture with 8-bit internal format

Basically, my program uses frame buffer object to render to a 3D texture. If the 3D texture which I attach to fbo is in GL_RGB8 format, which is 24 bits per texel, there is no problem. Only 8-bits of ...
0
votes
1answer
62 views

How to get an uniform location of a Cg shader with OpenGL?

I've dabbled with basic shader programming before, using the GLSL way. Now I've come back to it, using Cg shaders. Following the tutorial at Josh Beam's website I've achieved the desired ...
0
votes
2answers
74 views

How to create a CgFx like effect system?

Seriouse graphics engine like CryEngine3, Unreal Engine 3 have their customized shader language and effect system. While trying to find some effect system for my small graphics framework, it looks ...
0
votes
2answers
112 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
94 views

Program for debug and test .cg files

I have several Cg files which was hand-made. As I am a beginner in Cg, I would like to use some pre-existing tool which can load a .cg file as material for a shape. Which tool would be appropriate for ...
0
votes
0answers
187 views

MacOSX Screensaver and CG.framework

I'm developing openGL-based screensaver for Mac (10.6), and have an issue with linking to CG.framework. Once mentioned framework is linked to project, screensaver becomes to be invalid. No warning, ...
0
votes
1answer
169 views

Cg: Proper way to write/read from a floating point texture

I currently have a R8G8B8 floating point render target and want to use it as a R24 target. The code //cg out = float4(v, v, v, v); seems to clamp out between 0 and 1. What's the proper way to ...