Tagged Questions
The geometry-shader tag has no wiki summary.
4
votes
1answer
720 views
Using the geometry shader for instancing
So I want to draw lots of quads (or even cubes), and stumbled across this lovely thing called the geometry shader.
I kinda get how it works now, and I could probably manipulte it into drawing a cube ...
3
votes
3answers
639 views
Do GLSL geometry shaders work on the GMA X3100 under OSX
I am trying to use a trivial geometry shader but when run in Shader Builder on a laptop with a GMA X3100 it falls back and uses the software render. According this document the GMA X3100 does support ...
2
votes
1answer
95 views
GLSL 1.5 Simple Geometry shader
I'm trying to write a simple geometry shader what just passes through vertices before attempting to modify stuff.
My vertex shader is
#version 150 core
in vec3 inPosition;
in vec4 inColor;
out vec4 ...
2
votes
1answer
105 views
GLSL geometry shader: iterate over entire mesh
My goal was to color the vertexes according to their order
EDIT: long time goal: access to preceding and following vertexes to simulate gravity behavior
i've used following code
#version 120
...
2
votes
2answers
637 views
GLSL Geometry shader and generic vertex attributes
So I've been trying for a while now, to pass a vertex attribute array into the geometry shader. It is an array of float (where the attribute per vertex is just a float value)
Now, when I put this in ...
2
votes
1answer
324 views
GLSL Geometry Shaders and projection matrices
So from playing around with it so far, I gather that GLSL geometry shaders work after the input vertices are transformed by the projection/modelview matrices. In other words, the geometry shaders ...
2
votes
1answer
448 views
Pass-through geometry shader for points
I'm having some problems writing a simple pass-through geometry shader for points. I figured it should be something like this:
#version 330
precision highp float;
layout (points) in;
layout (points) ...
2
votes
1answer
388 views
Passing variables from a geometry shader to a fragment shader
I have an GLSL geometry shader that looks like the following:
#version 150
uniform mat4 p;
uniform mat4 mv;
uniform mat3 nm;
layout(points) in;
layout(triangle_strip, max_vertices = 200) out;
out ...
1
vote
1answer
119 views
Variable output primitives count in geometry shader GLSL
I want to do something like this in my geometry shader:
uniform int maxOutputVert;
layout(points) in;
layout(points, max_vertices=maxOutputVert) out;
However I get error while compiling it:
...
1
vote
1answer
214 views
Geometry Shader won't compile in DirectX10 HLSL
I've been trying to code a geometry shader in order to generate billboard systems as explained in Frank Luna's book Introduction to 3D Game Programming with DirectX. I insert the shader into my ...
1
vote
1answer
98 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
2answers
456 views
OpenGL Geometry Shader Mac OS X
I'm trying to get a simple pass through geometry shader to work under Mac OS X 10.6. The code compiles and links without problem, but for some reason no geometry is being drawn to the screen. Here's ...
1
vote
2answers
634 views
Geometry shader doesn't do anything when fed GL_POINTS
I'm trying to use geometry shaders to turn points into line segments (GL_POINTS to GL_LINE_STRIP), but no line segments appear. If I change the input to GL_LINES, and just repeat the vertex, then I ...
1
vote
1answer
756 views
Reading output from geometry shader on CPU
I'm trying to read the output from a geometry shader which is using stream-output to output to a buffer.
The output buffer used by the geometry shader is described like this:
D3D10_BUFFER_DESC ...
0
votes
1answer
80 views
Multiple subdivision of an icosahedron using HLSL Geometry Shader
Currently I'm subdividing an icosahedron once by using the following Geometry Shader:
[maxvertexcount(8)]
void gs(triangle VS_OUT gin[3], inout TriangleStream<GS_OUT> s)
{
// p1
...
0
votes
2answers
229 views
Why doesn't OpenGL clip primitives from my geometry shader that lie partially outside the viewing volume?
http://www.opengl.org/wiki/Rendering_Pipeline_Overview says that "primitives that lie on the boundary between the inside of the viewing volume and the outside are split into several primitives" after ...
0
votes
1answer
188 views
Using gl_ClipDistance in a geometry-shader
I'm trying to make use of gl_ClipDistance within a geometry-shader but I cannot get it to work.
My shader runs within a transform-feedback recording and I want to cut triangles against 4 clipping ...
0
votes
2answers
165 views
What color does a fragment get if there are two vertices at the very same position with two different colors?
I have a question concerning the OpenGL rendering pipeline.
I have recently been reading theory about the GLSL's Geometry Shader. I think I do understand the basics of how to emit new geometry and ...