Tagged Questions

Vertex shaders were introduced as an extension to OpenGL 1.3 and as a feature of Direct3D 8.0 around 2001. They were the first step in making part of the render pipeline on consumer hardware freely programmable as opposed to hardwired functionality like the TnL stage or register combiners which ...

learn more… | top users | synonyms

7
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
394 views

DirectX11: Pass data from ComputeShader to VertexShader?

Is it possible to apply a filter to the geometry data that is to be rendered using Compute Shader and then use the result as an input buffer in the Vertex Shader? That would save me the trouble ...
4
votes
2answers
581 views

Compute bounding quad of a sphere with vertex shader

I'm trying to implement an algorithm from a graphics paper and part of the algorithm is rendering spheres of known radius to a buffer. They say that they render the spheres by computing the location ...
3
votes
2answers
582 views

How can I find a list of all the uniforms in OpenGL es 2.0 vertex shader pro

I'm trying to learn how to program vertex shaders. In Apple's sample project they have a line to set a glUniform1f(uniforms[UNIFORM_TRANSLATE], (Glfloat)transY); Then this value is used in // ...
2
votes
1answer
101 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
1answer
78 views

Really simple custom shader in Three.js - how to make it work?

I'm trying to make the simplest custom shader for Three.js that I can, but I haven't figured out how to make it work. The object the I'm using the shader for doesn't appear at all. In my page html I ...
2
votes
2answers
127 views

OpenGL ES 2 (iOS) Morph / Animate between two set of vertexes

I have two sets of vertexes used as a line strip: Vertexes1 Vertexes2 It's important to know that these vertexes have previously unknown values, as they are dynamic. I want to make an animated ...
2
votes
1answer
127 views

Adding projection matrix to opengl es point sprites particle effect vertex shader

I have been learning opengl es from the opengl es 2.0 programming guide. They have a particle effect that looks like an explosion. I am trying to enhance their example code by adding a mat4 projection ...
2
votes
2answers
199 views

[GLSL]How to compare the z value of all the vertices in world coordinate?

This might be a simple question. As a newbie on GLSL, I would rather ask here. Now, in the vertex shader, I can get the position in world coordinate system in the following way: gl_Position = ...
2
votes
2answers
297 views

Why isn't this orthographic vertex shader producing the correct answer?

My issue is that I have a (working) orthographic vertex and fragment shader pair that allow me to specify center X and Y of a sprite via 'translateX' and 'translateY' uniforms being passed in. I ...
2
votes
1answer
307 views

Why won't this GLSL Vertex Shader compile?

I'm writing my own shader with OpenGL, and I am stumped why this shader won't compile. Could anyone else have a look at it? What I'm passing in as a vertex is 2 floats (separated as bytes) in this ...
2
votes
1answer
148 views

Is it possible to drop a triangle from being rendered using vertex shaders?

In a pixel shader you can discard a pixel but I would imagine even a fast-fail shader called for every pixel takes a non-trivial time? Is there any way a vertex shader can discard an entire ...
2
votes
1answer
2k views

GLSL 1.5 & OpenGL 3.3: Passing color to vertex shader seems to fail

I have a problem when passing vertex attributes to the running shader program. I'd like to pass two attributes, the position and a RGBA-color. Binding the attribute location works for the position. ...
1
vote
1answer
41 views

GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN always returns 0

I'm trying to use the transform feedback functionality of OpenGL. I've written a minimalistic vertex shader and created a program with it (there's no fragment shader). I've also made a call to ...
1
vote
2answers
43 views

How to access to other vertex in a vertex shader program in opengl es 2?

I a android application , I want to calcul the normal of a surface depanding on other vertex of this surface. I don't want to do it in "master" programm because it take to much time. Actually for each ...
1
vote
2answers
59 views

GLSL per vertex fixed size array

Is it possible in desktop GLSL to pass a fixed size array of floats to the vertex shader as an attribute? If yes, how? I want to have per vertex weights for character animation so I would like to ...
1
vote
1answer
36 views

When using Context3DVertexBufferFormat.BYTES_4, what is the value range of one field?

If I populate a vertex-buffer by using the byte-array method: //Example: var ba:ByteArray = new ByteArray(); //Write vertex #0: ba.writeFloat(-.5); ba.writeFloat(-.5); ba.writeUnsignedInt(0); ...
1
vote
1answer
59 views

In an AGAL Vertex Shader, what is the 'w' component used for in the output shader?

I understand the 'xyz' components of a vertex's position, but what does 'w' do? Could it be left as the same constant value all the time? Example: mov op.xyz, va0.xyz mov op.w vc0.w
1
vote
1answer
82 views

Use one vertex/fragment shader in multiple programs

In OpenGL ES 2.0, is it possible to use a compiled vertex/fragment shader in multiple linked programs? For example, let's say I have 1 compiled vertex shader and 5 compiled fragment shaders. Can I ...
1
vote
2answers
83 views

Unwarping a texture in OpenGL

Say I've got a texture mapped to a grid screen-aligned mesh. It looks something like: The vertex positions are: (-1, -1), (1, -1), (-1, 1), (1, 1) The UVs: (0, 0), (1, 0), (0, 1), (1,1) I ...
1
vote
1answer
371 views

GLSL passing texture coordinates from vertex shader

What I'm trying to accomplish: Drawing the depth map of my scene on top of my scene (so that objects closer are darker, and further away are lighter) Problem: I don't seem to understand how to pass ...
1
vote
2answers
141 views

What is this vertex shader doing?

I recently took over a project that was left stagnate a team member quit a few months ago. While trying to get myself up to speed I came across this vertex shader and I'm having a hard time ...
1
vote
1answer
129 views

Using multiple vertex shaders on the same program

I'm trying to implements projection, using a vertex shader. Is there a way to have a separate vertex shader to handle set the gl_Position, and having another vertex shader to set the values required ...
1
vote
1answer
98 views

How do I use a vertex shader to multiply my vertex data by a uniform?

This is a question that came from an earlier problem I had. Basically, I was trying to implement orthographic scaling in my shader by modifying the scale components of my projection matrix, but it ...
1
vote
0answers
103 views

Vertex shader is correct, but won't run on my hardware?

I can't figure out what's wrong with this shader. It's correct, compiles, and links, but simply won't run on my hardware (MacBook pro w/NVidia GeForce 9400, nothing special). It seems totally GLSL 1.2 ...
1
vote
1answer
108 views

Number of Geometry Shader Executions?

So a vertex shader is executed for each vertex and a fragment shader for each fragment (right?). How many times is a geometry shader executed?
1
vote
1answer
510 views

Why does this OpenGL Shader segmentation fault on calls to glCreateShader?

I'm trying to learn how to write OpenGL Shaders. Why does this code segmentation fault when run on my machine? (I'm using Ubuntu 10.04 and I called it shader.cpp.) #include <GL/glut.h> #include ...
1
vote
1answer
66 views

A function of equal length

I am planning to build in a bending technique into the GPU. Like bending a stick. It doesn't have to do real physics, but I do want the bending function (to displace the vertices) to have an equal ...
1
vote
1answer
272 views

How do I multiply a vector with the “ModelViewProjectionMatrix” in openGL?

I have a line in a vertex shader gl_Position = gl_ModelViewProjectionMatrix * vertex; I need to do the same computation without a shader, like: float vertex[4]; float modelviewProjection[16]; ...
1
vote
2answers
266 views

Optimising the model-view transformation in GLSL for 2D

So, the standard way to transform vertices and then pass to the fragment shader in GLSL is something like this: uniform mat4 u_modelview; attribute vec4 a_position; void main() { gl_Position = ...
1
vote
1answer
137 views

Shader multiply matrices

I have an issue I don't understand. I have a shader String[] vsSource = new String[] { "attribute vec3 aVertex;", "attribute vec3 aColor;", "uniform mat4 uMVMatrix;", ...
1
vote
2answers
1k views

WebGL: Texture access in a vertex shader?

Is it possible to read from a texture in a vertex shader with WebGL? I wrote a WebGL page (just to try it out) and used Chrome 7 to test it. As soon as I upgraded to Chrome 8, it stopped working. I ...
1
vote
3answers
231 views

Tool for pixel and vertex shader

Is there any tool for testing pixel and vertex shaders?
1
vote
1answer
484 views

Why does texture1d() in GLSL return a vec4?

I'm trying to use a 1D array as a lookup table in my vertex shader.. so why when I call texture1D(tex,gl_TexCoord[0].s); does it return a vec4? I mean I know that's what it does, but what do the 4 ...
1
vote
1answer
220 views

HLSL: Index to unaligned/packed floats

I have a vertex shader (2.0) doing some instancing - each vertex specifies an index into an array. If I have an array like this: float instanceData[100]; The compiler allocates it 100 constant ...
1
vote
1answer
546 views

HLSL: Enforce Constant Register Limit at Compile Time

In HLSL, is there any way to limit the number of constant registers that the compiler uses? Specifically, if I have something like: float4 foobar[300]; In a vs_2_0 vertex shader, the compiler will ...
1
vote
2answers
3k views

change the color of a vertex in a vertex shader

Is it possible to set the color of a single vertex using a GLSL vertex shader program, in the same way that gl_Position changes the position of a vertex ?
0
votes
2answers
31 views

Can you tell if a vertex attribute is enabled from within a vertex shader?

I was wondering if there was a way of being able to tell if a vertex attribute is enabled from within a vertex shader? I know that if the vertex attribute is disabled all the values will be treated as ...
0
votes
1answer
29 views

Vertex Shader trouble

I'm having trouble getting my vertex shader (1.20) to work. I'm rendering a simple white triangle, but when I load the vertex shader the triangle disappears. void main() { gl_Position = ...
0
votes
2answers
24 views

Can Matrices exist on vertex registers other than vertex constants in AGAL?

I've mostly seen examples where a Matrix3D object is passed as a vertex constant register in AS3 to the Context3D object. But never seen a matrix in any other types of registers (temporary or ...
0
votes
1answer
24 views

Can constants (vertex or fragment) be reset / nullified in Context3D?

If I make multiple draw calls for various Program3D instances, is there a way that I can reset or nullify the constants if I'm no longer using them in the next following Program3D assignment? Is it ...
0
votes
2answers
63 views

What exactly does Adobe mean by VertexShader have a limit of 8 inputs?

Does it mean only a total of 8 float values can be passed per vertices's set of data? Does this mean you can only have one of the following? 2 inputs of FLOAT_4. 4 inputs of FLOAT_2. 8 inputs of ...
0
votes
1answer
29 views

Any Idea How to Implement the Sigma lens with vertex shader

I am trying to implement the Sigma Lens in OpenGL using shaders, but having some problems. I pass the texture coordinates to the vertex shader and i tried to do the spatial transformation for the ...
0
votes
2answers
52 views

Is a vertex shader called before or after clipping?

I thought the answer should be before. But I have a shader which seems to contradict this: float4 vp( // Vertex Inputs in float4 position : POSITION, uniform float4x4 ...
0
votes
1answer
157 views

GLSL Orthographic projection matrix not working like it's supposed to

When I try to use my orthographic projection, I'm not getting the result I'm looking for. I have a VBO containing the following 2D vertices and texcoords (every other line): 0, 0, 0.0, 0.0, 512, 0, ...
0
votes
2answers
69 views

vertex and fragment shader values in webgl

I'm new to webgl.I was wondering how the vertex and fragment shader values are generated. I was seeing some samples and could see a huge array of these values.Couldnt figure out how these values are ...
0
votes
2answers
331 views

DrawUserPrimitives<VertexPositionTexture> complains about Color0 missing for vertex shader

First of all, I am new to XNA and the way GPU works and how it cooperates with the XNA (or DirectX) API. I have a polygon to draw using the SpriteBatch. I'm triangulating the polygon, and creating a ...
0
votes
2answers
159 views

While coding in low-level AGAL, do you need to create a new Program3D per Textures?

For example... If I'm developing an application that requires more than one texture in it (unique sprites, basically), do I need to call context3D.createProgram(); and assemble a new Program3D (with ...
0
votes
0answers
64 views

OpenGL Transform Feedback got reverse-order result

I tried to use the transform feedback function, and I made 2 vertex shaders which only affects vertex position. The 1st one is a pass through shader, where position out= position in; The 2nd one is ...
0
votes
1answer
232 views

Moving object in shader via glUniform OpenGL ES 2.0

How to move object in world via glUniform**? I tried glUniform3f(_positionSlot, 6.0f, 6.0f, -2.0f); But my object not moving. shader.vs: attribute vec4 Position; // 1 attribute vec4 ...

1 2