Tagged Questions
The cg tag has no wiki summary.
6
votes
1answer
1k views
CoreGraphics for retina display
I am using the following code to perform some manipulations on the image that I loaded, but I find that the display becomes blurry when it is on the retina display
- ...
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 ...
4
votes
1answer
67 views
How to blur the outcome of a fragment shader?
I'm working on a shader that generates little clouds based on some mask images. Right now it works well, but i feel the result is missing something, and i thought a blur would be nice. I remember a ...
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
1answer
40 views
Is it possible to access all vertices in a polygon in a vertex shader?
I'm trying to create a wireframe vertex/fragment shader in Unity. It seems possible according to this paper. The general ideas seems to be that you pass a distance vector calculated in the vertex ...
2
votes
0answers
141 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
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
2answers
88 views
Iphone working with images stops all processes
Hello I am new to iPhone development so I could be doing this all wrong. I want to convert an image 3 times in a row but when I do it locks up the iphone until it finishes all 3 conversions. I have ...
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
308 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
1answer
46 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
51 views
How do you implement an efficient parallel SIMD compare and select in Cg?
How do you do parallel selection efficiently ?
For example, given this scalar code, is there a way to write it so the Cg compiler will make the code execute in parallel / SIMD (and potential using a ...
1
vote
1answer
289 views
CG Shader Semantics with OpenGL 3.x?
I used to have CG shaders working with vertex arrays in OpenGL 2.x, but I've updated to use VBOs and VAOs in OpenGL 3.x and now the semantics don't seem to be working, except for POSITION. CG doesn't ...
1
vote
1answer
184 views
OpenGL-ES and Cg
Can I use Cg shader language with OpenGL ES 2.0?
I know that I can use GLSL with OpenGL ES 2.0 and Cg with OpenGL, but I wonder if there is Cg support for OpenGL ES.
1
vote
1answer
48 views
Retrieving a struct parameter from a Cg shader
I find this annoying but is there a better way to retrieve a struct parameter from a Cg shader?
In the 11_two_light_with_structs example (OpenGL), there's a struct Material in the shader:
Cg shader:
...
1
vote
1answer
105 views
Why is the later version of Cg compiler producing shader using more instructions?
I have a shader that looks like this:
void main( in float2 pos : TEXCOORD0,
in uniform sampler2D data : TEXUNIT0,
in uniform sampler2D ...
1
vote
1answer
82 views
Issue with getting vertex colors from application to CGFX
Problem: I would like to work with vertex colors delivered by Maya in my cgfx shader. It should be a trivial problem but I have no luck so far.
Attempt: Below I have written up a super simple shader ...
1
vote
2answers
141 views
Downsampling an image without “dancing” pixels
Say I wanted to downsample an image in realtime (1280x720) to a very small scale (16x16) and not suffer from "dancing" pixels when the image moves, which technique would I use?
This would be using ...
1
vote
1answer
119 views
How do I get a Compile error from NVIDIA CG?
How do I get detailed errors from a cg compile?
At the moment my code is something like:
prog = cgCreateProgramFromFile(
context,
CG_SOURCE,
filename,
proifile,
null,null);
...
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
397 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
309 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
304 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
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
426 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
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 ...
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
0answers
182 views
Packing attributes in a texture, deferred rendering
I'm rolling a deferred shader pipe, and due to the need to keep the G-buffers in a unified format a need to compress attributes is needed. I've sadly been unable to find some good information on how ...
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 ...
0
votes
0answers
54 views
Closing Bezier Path
I am adding many small pieces of lines and curves to a UIBezierPath. But it is impossible to determine which element is added next. In the end the Path is a closed path with no interrupts.
Now I ...
0
votes
0answers
184 views
Conversion shader code from GLSL to Cg shader in Unity 3D
I'm writing shader code for view-dependent texture mapping. As a 1st step, I'm writing shader for projective texturing. We calibrated 8 cameras and will map camera images by using projection matrix.
...
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
73 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
1answer
63 views
Running CG graphics on BProlog?
i recently installed B-prolog and tried CG graphics examples from here http://www.probp.com/
According to their manual, i've installed B prolog in C:/ drive and its compiling propoerly but not ...
0
votes
1answer
58 views
Where can I find a reference of the CG shader language?
I am new to shaders and I would like to find a list of all (or most/common) functions, variables, availeble to write CG shaders.
0
votes
0answers
76 views
Photoshop psd file loses alpha channel in Maya Cg shader
For one of our 3D artists I've ported and extended a shader from Unity3D to Maya. The shader in Unity3D uses PSD files as input for textures and makes use of the alpha channel of one of the textures ...
0
votes
0answers
51 views
How do I make a CGRectIntersectsRect on Xcode 4.2 with iOS 5 beta?
I just upgraded to Xcode 4.2 and now the normal intersection code isn't working, or is it a setting? I was In the middle of a live tutorial when it error-ed. It was so embarrassing sense I couldn't ...
0
votes
2answers
93 views
Does CG 3.0 leak?
I'm finding CG appears to have a memory leak. I submitted a report via nvidia.com, but if you try this here:
If you remove the line that says
cgD3D11SetTextureParameter( g.theTexture, g.sharedTex ) ...
0
votes
2answers
47 views
How to construct a mesh from given edge points?
I have some points on the edge(left image), and I want to construct a mesh(right), Is there any good algorithm to achieve it? many thanks!
image can see here ...
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?