Tagged Questions

1
vote
1answer
26 views

how to render multiple textures with GLSL

hello, i am about to port all my rendering from "old" opengl to glsl. now i have a mesh with different textures, so in "old" gl i just used bindTexture to change the texture. i g …
0
votes
1answer
28 views

Fragment shaders: output variables

Reading the GLSL 1.40 specification: Fragment outputs can only be float, floating-point vectors, signed or unsigned integers or integer vectors, or arrays of any these. M …
0
votes
1answer
102 views

AMD RenderMonkey GLSG Config for Alpha Transparency

I'm trying to use RenderMonkey to design a GLSL shader that uses Alpha transparency, and the RenderState editor doesn't use the same terms I'm used to from OpenGL. Can anyone advis …
0
votes
1answer
19 views

How do I pre preform bit operations in glsl.

How do I pre preform bit operations in glsl? Using the regular C style bitwise operators |, &, ^, or ! do not work.
0
votes
2answers
71 views

HTML 5 filter language or some analog of filter language?

Is there in HTML 5 filtering language or some analog of filter language? Something like GLSL / HYDRA / HLSL or just JS pixel filter/shader lib?
0
votes
1answer
86 views

How do you handle multiple textures in an OpenGL indexed buffer array for use with a data-shader?

I'm attempting to implement this paper. I've have most of it down, but the part about sending arbitrary, non-geometric data to the shader for use in determining and displaying geom …
1
vote
2answers
230 views

Calculating 3D tangent space

In order to use normal mapping in GLSL shaders, you need to know the normal, tangent and bitangent vectors of each vertex. RenderMonkey makes this easy by providing it's own predef …
0
votes
1answer
44 views

How does opengl decide which mip level to use?

The question is fairly self explanatory. I'm asking in terms of using texture coordinates that could have come from anywhere (a uniform, a varying, another texture fetch). Say for …
1
vote
2answers
251 views

How to calculate gl_FragCoord in glsl

Ok, in my glsl fragment shader I want to be able to calculate the distance of the fragment from a particular line in space. The result of this is that I am first trying to use a v …
0
votes
1answer
85 views

What are the error messages for breaking the GLSL shader instruction limits?

We're a small dev team working with some GLSL that may be too large for older graphics cards to compile. We want to display a sensible error message to the user (rather than just …
3
votes
2answers
219 views

What options are there for GLSL shader development on OS X?

Apple's Shader Builder is not terribly advanced. I was wondering if there are any better choices for OS X other than running something under bootcamp.
0
votes
1answer
152 views

GLSL extracting modelmatrix from modelviewmatrix and viewmatrix

hello, since in GLSL the modelmatrix is not available, i was wondering if it is possible to get it programatically from the gl_ModelViewMatrix and the "viewmatrix" which i would p …
0
votes
1answer
117 views

Drawing circles on a sphere

I'm trying to draw lots of circles on a sphere using shaders. The basic alogrith is like this: [1] - calculate the distance from the fragment (using it's texture coordinates) to t …
1
vote
4answers
156 views

Why can’t I know the state of OpenGL lights in GLSL?

Is there a way to find out if a light is enabled in GLSL that doesn't involve passing attributes or creating a ton of different shaders? What about using NVidia's C for Graphics ( …
0
votes
0answers
126 views

glUseProgram(0) takes 50ms?

Are there any reasons a call to disable a glsl program should take 50ms? I did a glFlush before, so it can't be the pipeline being flushed before a program change. Enabling the s …

1 2 next
15 30 50 per page