Computer graphics are graphics created using computers and, more generally, the representation and manipulation of image data by a computer with help from specialized software and hardware.
0
votes
0answers
6 views
Going from world space depth to NDC depth
I was hoping someone could explain me how exactly I get the NDC depth for outputting proper Z buffer values to i.e. gl_FragCoord.
I seem lost and cannot find a good read about it.
Thanks for your ...
-1
votes
0answers
22 views
Y direction shearing matrix and its equivalence using rotation, scaling and transformation [duplicate]
1 0 0
shx 1 -shy.xref
0 0 1
Could someone please explain to me the steps for expressing the shear operation in terms of rotation, scaling and transformation?
0
votes
1answer
36 views
Add Opacity to CGPath
CGPathRef defines an opaque type that represents an immutable graphics path. CGMutablePathRef defines an opaque type that represents a mutable graphics path.
But how do we change the opacity in the ...
-3
votes
0answers
53 views
How to become an expert in grahics? [closed]
I am very interested in graphics programming ,but there exists so many graphic algorithms.When I want to dive into some field, it becomes more and more difficult to understand the theory or the ...
3
votes
1answer
165 views
Silhouette outline shader
I know this a very well documented subject, but I still have some problems. I made the outline for a silhouette but with doubling the mesh. I have a good fps but the outline is too harsh, I want it to ...
0
votes
1answer
26 views
Running Apache for C based CGI Program
I want to use C++ binary as CGI program which will do all the backend processing. My question from yuor expert people is what needs to be turn-off which is unnecssary in apache, I would like to remove ...
0
votes
0answers
34 views
Won't map texture correctly if I'm using only vertex program (NVIDIA Cg)
I'm using only a Cg vertex programs on my OpenGL engine. I don't need/want to use a fragment program, for that reason I'm binding the texture according to the fixed function steps.
But there's an ...
2
votes
0answers
91 views
How to correct error of floating point modulo operation
Some mobile GPU doesn't support integral modulo operation. So I have to implement modulo operation using floating-point precision.
Implementation of fmod in Cg standard library is as follows.
float2 ...
0
votes
0answers
42 views
NVIDIA Cg Compiler Error C1307
When I try to use Cg to compile the following shader (a valid webGL shader):
attribute vec3 position;
attribute vec3 normal;
uniform mat4 modelMatrix;
uniform mat4 viewMatrix;
uniform mat4 ...
0
votes
0answers
31 views
converting hybrid cg/hlsl shaders to glsl es
I am looking for a tool that can convert cg/hlsl hybrid shaders to glsl es shaders. I have tried hlsl2glsl which doesnt understand the keyword 'extern' although it is a viable hlsl keyword and have ...
0
votes
1answer
30 views
Define CGPoint having angle and diameter
I believe for some could be very simple to answer and help me.
I have a circle defined in drawRect and wrote a code to define arc of the circle.
CGFloat width = ...
0
votes
1answer
106 views
how to bind a OpenGL framebuffer object to a Cg texture?
I ran into problems trying to do a simple post-processing with OpenGL and Cg; the problem, it seems, is in connecting the OpenGL Framebuffer object to Cg texture parameter.
I'm creating a FBO like ...
1
vote
1answer
111 views
Camera Rotation using lookAt
Hey guys I am trying to do a Camera class that uses lookAt from glm library. I have 4 points, the first one is eye, that is the camera position in space, the second one is the look, that is the point ...
0
votes
1answer
143 views
Camera Translation in OpenGL
I am trying to do a class to walk through the world in OpenGL, but I am having problems with the mathematics. My idea here is to use the function lookAt from glm to set the observer in the position I ...
0
votes
1answer
86 views
Include Headers from added frameworks on Xcode
I want to work with some frameworks like glew and cg so i manually added
the needed frameworks to my project by right clicking the project -> Add files to ...
and choosing the correct framework. ...
0
votes
0answers
67 views
Rendering virtual objects within a real scene
This should be a typical augmented reality problem, but I have not found an answer yet. I have depth maps and color images (both of them are from a camera), and I create some virtual objects to ...
0
votes
1answer
173 views
Random value in nVidia CG language shader (Unity)
I'm diving into CG shaders. I'm baking a vertex shader that needs one random constant (computed just once at start time). I know that in Unity it's pretty easy to pass a value from a script to the ...
1
vote
1answer
144 views
CG: repeating a texture using fmod causes aliasing
I'm writing Cg shaders using Unity3D.
I'm trying to use fmod function to repeat a texture along an axis (basically the same effect I can achieve by setting the texture scale in Material with ...
0
votes
1answer
86 views
Encoding data in an 8-bit float (cg)
The language is cg.
I have an 8-bit float that must be between 0 and 1 (it's the 'a' component of a float4 rgba color value). I want to store a 6-bit unsigned integer and a 2-bit unsigned integer in ...
3
votes
1answer
135 views
Is it viable to replace GLSL with CG?
http://http.developer.nvidia.com/Cg/TessellationControlShader.html
I have some questions regarding CG.
What OpenGL version does CG support? On their site they state
Opengl Functionality ...
0
votes
0answers
40 views
CG compilation error when using ps_4_0 profile
I am trying to write a shader for DirectX 11 Render System for a compositor, Ogre3D. Because of this I need at least ps_4_0 profile for pixel shader. But I can't compile my code.
I only get some ...
0
votes
1answer
113 views
CG shader, control Z-Write per fragment?
Is it somehow possible to control for each fragment whether or not depth shall be written to the depth buffer?
I want my object to be depth tested properly (therefore I need to output accurate depth ...
0
votes
1answer
83 views
CG shader threshold function
Is there some builtin fragment function in CG that allows me to compute the following without conditionals?
y = x>bias?1.0f:0.0f;
0
votes
1answer
142 views
shader - CG/GLSL/HLSL how to implement jittering
In computer graphics it's a common technique to apply jittering to sampling positions in order to avoid visible sampling patterns.
What's the proper way to apply jittering to sampl-positions in a ...
0
votes
2answers
217 views
CG/GLSL how to calculate camera-distance per pixel?
I would like to output in my pixelshader the actual camera distance per pixel. This means, the result should (aside from some slight variations in precision and clamping) not depend upon the near/far ...
3
votes
3answers
689 views
CG: Specify a variable not to be interpolated between vertex and fragment shader
I'm using GC for writing shaders inside Unity3D.
I'm using vertex colors attributes for passing some parameters to the shader. They won't be used so for defining colors, and should be forwarded from ...
0
votes
1answer
165 views
CG runtime linker error with cmake project (g++)
I'm getting these linker errors:
/usr/bin/ld: cannot find -lCg
/usr/bin/ld: cannot find -lCgGL
I'm using the FindCg.cmake frome here: ...
0
votes
1answer
93 views
Ogre3d / Compositor related issue
I killed my whole day trying to figure out, why the code below is not working:
I have this .compositor script:
compositor BW
{
technique
{
texture rt0 target_width target_height ...
2
votes
1answer
239 views
Pre-Pass Lighting OpenGL implementation artifact
I am implementing Pre-Pass Lighting algorithm in OpenGL for my master dissertation project, after implementing a Deferred renderer as well. The Deferred renderer works perfectly and I based the ...
0
votes
0answers
70 views
Cg Shader doesn't display
I'm trying to run a simple cg (vertex) shader in an OpenGL app I wrote earlier but when I start the program nothing displays but if I disable shaders it runs perfectly.
Here's the shader:
struct ...
1
vote
0answers
83 views
saving/loading binary compiled effect files in CG
I'm working on NVidia CG. If I have created an effect from file using this line:
CGeffect basicEffect = cgCreateEffectFromFile( myContext,
...
0
votes
1answer
197 views
Non-constant index into uniform array CG Shader
According to this nVidia CG tutorial (and my own experience) accessing uniform arrays in CG shaders with a non-constant index is either inefficient or unsupported (more often than not, unsupported it ...
0
votes
0answers
31 views
cgGLLoadProgram segmentation fault on vertex programs only
I am porting a game to Linux, this problem is baffling me a little bit.
cgGLLoadProgram(fragmentshader);
cgGLLoadProgram(vertexshader);
The fragment shader works fine, the vertex shader segfaults ...
0
votes
2answers
95 views
CG to GLSL: f3texRECT equivalent?
I'm trying to convert a CG program to a GLSL program.
What I've done so far seems correct, but the GLSL shader outputs an incorrect output. The incorrect behavior is defined by a set of test images.
...
0
votes
0answers
628 views
Implementing Boundary-fill Algorithm in OpenGL [closed]
How can I implement the boundary-fill algorithm in OpenGL?
This is my code but it doesn't work.
#include <gl/glut.h>
void init()
{
glClearColor(1.0,1.0,1.0,0.0); // set white background color
...
3
votes
1answer
111 views
What is the correct way to structure a Cg program?
This tutorial uses explicit OUT structures, e.g:
struct C3E1v_Output {
float4 position : POSITION;
float4 color : COLOR;
};
C3E1v_Output C3E1v_anyColor(float2 position : POSITION,
...
0
votes
1answer
31 views
How do i get rid of a line drawn by drawRect to disappear .05 seconds after the user touches the screen?
I have the touchesBegan void before this which triggers this event,
but i need this line to show, wait for so many seconds, then disappear:
- (void)drawRect:(CGRect)rect {
// Drawing code
...
1
vote
1answer
131 views
3D model rendering and shaders [closed]
I have a 3D model and while rendering i am using shaders to calculate the vertex color(computationally intensive task), based on some parameters. These parameters change with time. So basically i need ...
1
vote
0answers
32 views
Small team of 3d animators looking for guidance [closed]
So a few of my friends and I are trying to get into making CG movies and we were looking for the best software for the job as well as any supplements we could possibly use.
Right now we're using ...
0
votes
1answer
581 views
UILabel Padding based on content
i've problems with uilable padding. i want to make my uilabel have padding event just one character display
http://i.stack.imgur.com/T4Aet.png
so i have padding from "Ask Question" words,
what i ...
0
votes
0answers
140 views
sized array of float as parameter to nvidia cg shader
I am trying to use Cg shaders to blend textures within the shaders. I want to set weights for each image that i would like to pass down to the shader as a uniform variable of float arrays. These ...
1
vote
1answer
121 views
How to find pair edge while building half-edge data structure
I cannot find out an efficient way to generate the opposite edges of a given edge. My idea is just to do the iterates:
//construct the opposite half edges
for(int j=0;j<edge_num;j++)
...
4
votes
1answer
214 views
Image resizing: what is a “filter”?
I'm trying to understand how image resizing works - please, can someone explain to me what is a "filter" good for?
does a filter calculates how much a source pixel contributes to a destination ...
0
votes
1answer
78 views
World space view direction in Cg geometry shader
How to to get view direction in world space inside the Cg geometry shader?
1
vote
1answer
215 views
CgFX geometry shader
How to use geometry shaders with CgFX? Actually how to specify geometry shader within the 'technique'?
The listing is below, vertex and fragment shaders are compiled well. But 'NVIDIA FX Composer ...
1
vote
1answer
213 views
Objective-c core graphics draw rotated image not working
i am trying to draw rotated image with following code
CGLayerRef layer=CGLayerCreateWithContext(context,CGSizeMake(brush.size.width*2,brush.size.height*2), NULL);
CGContextRef ...
0
votes
1answer
111 views
repeating tile from tile atlas texture
I need help with CG fragment shaders. I have one big texture which holds all the tiles. I really don't know where to start with this one.
Now when quad/sprite goes over certain size i would need to ...
1
vote
1answer
98 views
objective-c CG filling path not working
I have following problem:
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetLineCap(context,kCGLineCapRound);
CGContextSetLineJoin(context, kCGLineJoinRound);
...
0
votes
0answers
92 views
Open GL performance on QT
I am using the QT 4.8 with Open GL ES 2.0 (created my set of shaders etc...)
Running the entire application from within QGraphicsView that owns a QGraphicsScene, I get relatively low fps although I ...
0
votes
0answers
72 views
gDebugger uses onboard HD graphics card instead of the AMD Radeon card
Recently I started looking into the graphics performance of my application which I run on my laptop. Using the gDebugger version from AMD I get the warning gDebuggger 'You do not have an AMD GPU ...



