Vertex shaders are executable programs that execute as part of the programmable geometry pipeline in modern graphics APIs such as e.g. Direct3D or OpenGL. Vertex shaders are usually hardware accelerated on consumer hardware nowadays. The vertex shader processes one vertex at a time, followed by ...
1
vote
3answers
342 views
How to use a 4x4 matrix as a vertex attribute in GLSL?
I am trying to use a 4x4 matrix as a vertex attribute, using this code:
Mat4 matrices[numVerts];
int mtxBoneID = glGetAttribLocation(hProgram, "aMtxBone");
glEnableVertexAttribArray(mtxBoneID + 0);
...
3
votes
2answers
656 views
cylinder impostor in GLSL
I am developing a small tool for 3D visualization of molecules.
For my project i choose to make a thing in the way of what Mr "Brad Larson" did with his Apple software "Molecules". A link where you ...
0
votes
2answers
208 views
vertices not being drawn in opengl
I've been having trouble drawing a simple vertex-specified (box-like) teapot model using shaders with some input for translation and rotation. I've checked my gl code and matrices (object position on ...
0
votes
2answers
220 views
Mixing different Program3Ds results in some objects not rendering
I have encountered something unexpected working with Stage3D. I have made two different shader programs for my objects. One of the programs is for using textured bitmaps and uv data. The other ...
2
votes
1answer
22 views
Is the distinction between vertex and pixel shader necessary or even beneficial?
From what I've been able to get, both vertex and pixel shader operations boil down to passing data and doing a lot of the same with it for every available unit. Surely, vetex and pixel shaders are in ...
2
votes
1answer
188 views
Generic picking solution for 3D scenes with vertex-shader-based geometry deformation applied
I'm trying to implement a navigation technique for 3D scenes (in OpenSceneGraph with OpenGL). Among other things the user should be able to click on an scene object on the screen to move towards it.
...
2
votes
1answer
475 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 ...
1
vote
1answer
241 views
OpenGL ES 2.0: Is there a workaround for missing texture access in vertex shader?
I'm currently trying out some OpenGL ES 2.0 with Android for a game. My map is a 2d grid map with a heights value for every position. Now I wanted to store the heights of each coordinate in a texture ...
1
vote
1answer
280 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
0
votes
1answer
36 views
OpenGL Shaders Generate Colors
I have a sprite 10x10 pixels. How can i change colors with shaders-programm in real-time.
All the blue color on the sprite turned to green.
All the green color on the sprite turned to white.
ETC...
...
0
votes
1answer
25 views
error when creating program and trying to get attribute Location | Opengl ES 2.0 Android
I am trying to draw a textured square on the screen, but whenever I try to use glGetAttribLocation it gives me a runtimeException and glError 1280. I have no clue why when tested on a new end device, ...
0
votes
1answer
84 views
Drawing circle in OpenGL ES 2.0
I got a problem with OpenGL ES 2.0 for iPhone.
I'm trying to draw a simple circle textured with this code:
double qualite = 40.0f;
double rayon = 0.5;
double TWOPI=2*M_PI;
double step = ...
0
votes
1answer
68 views
Why this GLSL code don't work on old Intel card (openGL 2.1)?
As we know, almost all 3D software has an XYZ-axis in the view section. Suppose to draw a coordinate axis like that. Here is my method.
Firstly, there is a function named drawOneAxis() used to draw ...
0
votes
1answer
223 views
Unity Shader: Deform a 3D model using vertex shader then apply specular using surface shader
I need help in applying a specular shade in a 3D model after I deformed it in CG vertex shader. I don't know how to do it in Unity shader. I already searched in google and there are no hits of what I ...
0
votes
1answer
50 views
Stage3d shader weird behavior adding variable
I am using this shaders with this results:
<script id="per-fragment-lighting-vs2" type="x-shader/x-vertex">
attribute vec3 aVertexPosition;
attribute vec3 aVertexNormal;
attribute ...
0
votes
1answer
124 views
GLSL Vertex Shader causes either flashing colors or all red
I'm writing my first vertex shader for a (here it comes) homework assignment and can't get it to function properly.
I need to implement a vertex shader (and only a vertex shader) than completely ...
0
votes
1answer
194 views
Per Instance Textures, and Vertex And Pixel Shaders?
How do you implement per instance textures, vertex shaders, and pixel shaders, in the same Vertex Buffer and/or DeviceContext?
I am just trying to find the most efficient way to have different pixel ...
0
votes
1answer
94 views
glVertexAttribPointer() working only with the first stream
I am trying to use glVertexAttribPointer() to give some data to my vertex shader. The thing is that it's working only with the FIRST attribute...
Here is my OpenGL code:
struct Flag_vertex
{
...
0
votes
1answer
234 views
OpenGL ES 2.0 Shader Rotation Per Vertex
This Question is about Skinning actually.
Lets say we have a model with vertex groups(bones) as a float buffer and we pass it to the shader. is there any way to partial rotate a vertex group?
buffer ...
0
votes
1answer
67 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
1answer
399 views
Remove normals from vertex and fragment shader
I'm developing an Android 2.2 application with OpenGL ES 2.0 stuff in C++.
Here are my vertex and fragment shader:
static const char* cubeMeshVertexShader = "
attribute vec4 vertexPosition;
...
0
votes
1answer
632 views
WebGL/GLSL vertex shader collapses 9 points into single point when I set x coord of gl_Position to zero
I do not understand why the following two shaders produce different results when I render a vertex buffer with x coordinates equal to zero:
First:
attribute vec3 position;
void main() {
...
0
votes
1answer
280 views
How to run Cg vertex/fragment shader on CPU?
I'm playing about with some vertex and fragment shaders using Cg on my little netbook (running Linux). Clearly I'm going to frequently hit resource limits for my graphics controller, so was wondering ...
2
votes
0answers
141 views
Seems like my Pixel Shader is not being called
I ve been messing around with DirectX and I ve been working on this weird idea of mine for some time now. It seems as if my pixel shader is not being invoked for some odd reason. I dont know if thats ...
1
vote
0answers
64 views
Pixel culling with box
I am trying to do a system of wall and holes. Imagine I have a simple box mesh maybe like a wall and I want to add some holes without changing the wall's mesh.
For me the process should be like this :
...
1
vote
0answers
96 views
Light from vertex shader to fragment shader
Need to create a spotlight in the fragment shader to lit up a sphere. Currently i have a point light in the vertex shader and have completely no idea how to bite it.
#version 140
in vec4 vPosition;
...
1
vote
0answers
182 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 ...
0
votes
0answers
7 views
Getting .vsh file from Bundle that path return nil in ios?
I tried to get the .vsh file from bundle path that return nil.
VertexShader file cube.vsh in project bundle i retrieve using that code given below:
NSString *str = [[NSBundle mainBundle]
...
0
votes
0answers
4 views
How to go around computing mesh interaction in vertex shader?
I am planning an application where essentially there are 2 meshes in 3D that should interact with each other. Interaction is similar to a piece of cloth floating on a water surface. For example see ...
0
votes
0answers
38 views
How to create a wireframe shader for webgl/opengl? (I'm using gwt+vaadin)
I'm not very into 3d rendering but I would need some help/insights about how to implement a wireframe shader; I would need to know which files to change for this shader (should I change the vertex or ...
0
votes
0answers
22 views
Responsiveness issues with Android and OpenGL ES 2.0
I have been working on a simple finger-tracing program on Android with a display implementation on a GLSurface Renderer instead of a canvas. Right now, all I am drawing are simple line segments ...
0
votes
0answers
73 views
Particle System error
Im working in Particle System Class from this tutorial Particles - Anton's OpenGL 4 Wiki - Dr Anton Gerdelan
Code:
//Pixel Shader
// shader to update a particle system based on a simple ...
0
votes
0answers
17 views
converting ivec2 to vec2 in the vertex shader
In the vertex shader:
in highp ivec2 a;
...
void main(void)
{
...
highp vec2 coord = vec2(1.0, 1.0);
...
coord = vec2(a.xy);
...
Is coord = vec2(a.xy); a valid statement. Please ...
0
votes
0answers
41 views
glDrawElements() with VAO and multiple attribute pointers failing to finish
I'm having a problem with getting the glDrawElements(...) function. Everything in my program runs fine, but when it gets to glDrawElements(...) it never finishes. Everything in my code looks correct, ...
0
votes
0answers
82 views
Updating Attribute variables in Vertex Shader(glVertexAttrib3f) working as glVertex
I am having trouble using Attribute variables for getting a value into vertex shader. I want to provide the geometry shader with one of the points from the previous primitive(line) for some ...
0
votes
0answers
33 views
vertex shader doesn't create instances in three.js?
I have a vertex shader with a custom attribute and two different ShaderMaterials using the same vertex shader. Why when I change the attribute's value in one shaderMaterial also change the value of ...
0
votes
0answers
49 views
how to move the vertex transform to vertex shader
I need your help! I am trying to move the vertex transform part from the cpu code to the vertex shader, here's the cpp code of the vertex transform:
//calculate the transform matrix of a refelcting ...
0
votes
0answers
36 views
find single points or their 'x-position' on texture
So, I have a texture with some single "points" (1 pixel size) on it, the rest is black. I want to find these points for further processing. I try to implement some kind of pattern searching, and this ...
0
votes
0answers
41 views
Understanding implementation dependant limits
My question is close to this one What is the actual number of vertex uniform components for GLSL shader on ATI graphics card?
In his case,
he had a GL_MAX_VERTEX_UNIFORM_COMPONENTS of 4096
he was ...
0
votes
0answers
125 views
Stage3D porting GLSL to AGAL
I am trying to port this GLSL Shaders to Stage3D and AGAL, but I cannot make it work:
Vertex Shader (GLSL)
attribute vec3 aVertexPosition;
attribute vec4 aVertexColor;
uniform mat4 ...
0
votes
0answers
71 views
GLSLES Losing 5-6ms using uniform float instead of e.g. 0.5
I have this fragment shader. On some "sprites" i want a different "saturation" of the texture. At the moment i only set it once but later i would set it each draw depending on the sprite beeing drawn. ...
0
votes
0answers
91 views
Queries regarding Geometry Shaders
I am dealing with geometry shaders using GL_ARB_geometry_shader4 extension.
My code goes like :
GLfloat vertices[] =
{
0.5,0.25,1.0,
0.5,0.75,1.0,
-0.5,0.75,1.0,
...
0
votes
0answers
70 views
Vertex shader works in feature level 10_0 but not 9_3
people. I have tried searching for the answer both on MSDN and various keywords (HLSL, ASM, Shader Profile, etc) but since I don't know what the root cause is, I don't get the answer.
Here is a very ...
0
votes
0answers
339 views
Three.js and GLSL - Kaleidoscope shader
I'm starting and experimenting with GLSL and WebGL. Using Three.js r52.
I have a simple plane geom mesh with a Shader material.
I'm already passing a texture as uniform property, and I was able to ...
0
votes
0answers
91 views
Interpolate position from given matrix
I have a mesh composed by numerous vertices (more then 400, less than 1000).
The vertices are simply disposed on 2 parallel line, so that every vertices on a line have the y component equal to the ...
0
votes
0answers
192 views
WebGL frame by frame animation from multiple textures
I am currently working on a prototype which aims to create a short interactive film made from a sequence of fast interchanging images. On each frame we plan to apply a fish-eye post-processing effect ...
0
votes
0answers
175 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 ...