3
votes
1answer
51 views

GLSL(330) modulo returns unexpected value

I am currently working with GLSL 330 and came across some odd behavior of the mod() function. Im working under windows 8 with a Radeon HD 6470M. I can not recreate this behavior on my desktop PC which ...
1
vote
1answer
78 views

The luminosity does not work using GLSL shaders

The goal of my program is to render a simple cube illuminated by a light point using GLSL shaders. The problem is that my cube stays in black as if lighting properties are disabled. I've been ...
2
votes
1answer
89 views

Alternative to glMultiDrawArrays when using uniform stride?

Background: I am developing an application that essentially draws a huge 3D graph of nodes and edges. The nodes are drawn as instanced cubes while the edges are drawn with GL_LINE and expanded with a ...
1
vote
2answers
112 views

Fragment shader for unsigned integer textures

I am using following shader for unsigned integer textures to read a data: Fragment shader: Code : #version 150 out uvec4 fragColor; uniform uint factor; void main() { uint temp=factor; temp=temp/2; ...
1
vote
3answers
129 views

How to get flat normals on a cube

I am using OpenGL without the deprecated features and my light calculation is done on fragment shader. So, I am doing smooth shading. My problem, is that when I am drawing a cube, I need flat ...
2
votes
1answer
105 views

GLSL 1.50: “in int” not legal in OS X?

This fragment shader code compiles in Windows, but throws an error in OS X (Mountain Lion, using a 3.2 core context). #version 150 core in int vinstance_id; uniform uint object_id[16]; out uint ...
2
votes
1answer
306 views

Why does this GLSL shader work fine with a GeForce but flickers strangely on an Intel HD 4000?

Using OpenGL 3.3 core profile, I'm rendering a full-screen "quad" (as a single oversized triangle) via gl.DrawArrays(gl.TRIANGLES, 0, 3) with the following shaders. Vertex shader: #version 330 core ...
1
vote
0answers
78 views

glTexImage2DMultisample with un-normalized texture-formats

I am having difficulty with rendering multisampled textures with un-normalized internal formats such as GL_RGBA32UI, GL_RGBA32I. Here is my code: width1=height1=32; ...
0
votes
1answer
137 views

Coloring with geometry shaders

Here are my shaders: Vertex Shader: in vec4 v_color; flat out vec4 out_color; in vec2 Position; void main() { gl_Position = vec4(Position,0.0,1.0); out_color = v_color; } Geom shader: ...
0
votes
2answers
112 views

glsl dot function indirectly causing a segmentation fault in program

Heres my vertex shader code: #version 330 layout(location = 0) in vec3 vertex_position; layout(location = 0) in vec3 vertex_normal; //model space uniform vec3 toLight; uniform mat4 model; uniform ...
0
votes
1answer
49 views

Sampler variable for SNORM textures

What will be the fragment shader for SNORM textures? If i want to use GL_TEXTURE_2D_ARRAY as a target then which type of sampler variable should be used (i,u) ? I am getting enuexpected behaviour ...
0
votes
1answer
225 views

Where are my GLSL implicit cast errors located?

In what appears to be my fragment shader, I have these two errors: 0(47) : error C7011: implicit cast from "int" to "vec3" 0(55) : error C7011: implicit cast from "int" to "vec3" Yet, after ...
4
votes
1answer
219 views

Issue with glBindBufferRange() OpenGL 3.1

My vertex shader is , uniform Block1{ vec4 offset_x1; vec4 offset_x2;}block1; out float value; in vec4 position; void main() { value = block1.offset_x1.x + block1.offset_x2.x; ...
3
votes
1answer
706 views

Atmospheric scattering OpenGL 3.3

Im currently trying to convert a shader by Sean O'Neil to version 330 so i can try it out in a application im writing. Im having some issues with deprecated functions, so i replaced them, but im ...
2
votes
1answer
118 views

OpenGL issue: cannot render geometry on screen

My program was meant to draw a simple textured cube on screen, however, I cannot get it to render anything other than the clear color. This is my draw function: void testRender() { ...
0
votes
1answer
383 views

Rotate point sprite

I can already rotate point sprite on 0, 90, 180, 270 degrees Fragment shader precision lowp float; uniform sampler2D us_tex; uniform mat3 um_tex; void main () { vec2 tex_coords = (um_tex * ...
0
votes
2answers
409 views

OpenGL 3.2 Texturing Issue

I'm working on a 2D engine in C++ at the moment. I've run into a problem which I seem to believe I've come up against once before, but have since forgotten how I fixed it. The engine is cross ...
1
vote
1answer
613 views

GLSL sampler2DRect and single channel (GL_RED) data

I have pixel map data 1 channel, 8 bit. I have pixel map width and height. I'm trying to submit pixmap data to fragment shader. I'm using ogl3 with VAO and VBO. My setup: glGenTextures(1, ...
3
votes
2answers
657 views

eye-space pixel width in GLSL vertex shader

I want to compute the eye-space width of a pixel's projected pyramid at the current vertex location in a glsl vertex shader, but I can't seem to get the math right. Here is an obviously incorrect ...
-1
votes
1answer
426 views

Incorrect values getting to GLSL Frag Shader

I'm working on what should be a simple OpenGl 4 project. All I am looking to do is change the alpha value around the mouse pointer and blend. After some work, I managed to get a circle to change ...
1
vote
2answers
540 views

(OpenGL 3.1 - 4.2) Dynamic Uniform Arrays?

Lets say I have 2 species such as humans and ponies. They have different skeletal systems so the uniform bone array will have to be different for each species. Do I have to implement two separate ...
1
vote
2answers
682 views

GL_CULL_FACE makes all objects disappear

I am trying to create some simple polygons in openGL3.3. I have 2 types of objects with the following properties : Object 1 - 10 vertices (listed below, in order) stored in GL_ARRAY_BUFFER and use ...
0
votes
1answer
737 views

Why is my OpenGL 3.3 Application not drawing anything?

I'm trying to get a handle on OpenGL VAOs/VBOs, and conceptually I'm there, but for whatever reason, this application isn't drawing anything to the screen. I'm working in a 4.2 context, but I'm ...
1
vote
1answer
502 views

GLSL OpenGL 3.x how to specify the mapping between generic vertex attribute indices and semantics?

I'm switching from HLSL to GLSL When defining vertex attributes in of a vertexbuffer, one has to call glVertexAttribPointer( GLuint index, GLint size, GLenum type, ...
0
votes
1answer
562 views

Problems outputting gl_PrimitiveID to custom frame buffer object (FBO)

I have a very basic fragment shader which I want to output 'gl_PrimitiveID' to a fragment buffer object (FBO) which I have defined. Below is my fragment shader: #version 150 uniform vec4 colorConst; ...
4
votes
3answers
1k views

Picking triangles in OpenGL core profile when using glDrawElements

I am drawing a mesh of triangles using glDrawElements and would like to be able to pick/select a triangle using the mouse click. The mesh of triangles can be very big. In fixed-function OpenGL there ...
4
votes
4answers
2k views

Resizing point sprites based on distance from the camera

I'm writing a clone of Wolfenstein 3D using only core OpenGL 3.3 for university and I've run into a bit of a problem with the sprites, namely getting them to scale correctly based on distance. From ...
2
votes
2answers
749 views

Cannot compile GLSL 3.30 shader with group array in Qt 4.7 application using QGLShaderProgram

I'm developing an application that uses Qt 4.7 with the goal of creating a simple 3D OpenGL viewer. I want to use GLSL 3.30 shaders. I use Linux Ubutu 11.10, my CG is a NVIDIA with a NVS 3100M GPU, ...
3
votes
2answers
3k views

Why is glGetUniformLocation failing me?

I found Gwen a few days ago and thought it looked like the perfect GUI toolkit for my project. But oh, dear, look at all that OpenGL 2 code in the renderer. So I thought I'd write an OpenGL 3 ...
1
vote
1answer
639 views

Matrix components and dot product

I have the following GLSL code: uniform mat3x3 rgb2xyz = mat3x3( vec3(DEFAULT_RGB2XYZ_XR, DEFAULT_RGB2XYZ_XG, DEFAULT_RGB2XYZ_XB), vec3(DEFAULT_RGB2XYZ_YR, DEFAULT_RGB2XYZ_YG, ...
2
votes
1answer
896 views

opengl - point sprites rendering problem

I'm trying to render point sprites but I get points. Where is the problem ? (changing a color via glUniform3f works) Vertex shader: private static String vertexShader = "#version 330" + "\n" + ...
9
votes
2answers
940 views

Known bugs in OpenGL 3, OpenGL 4 implementations

As we all get to know eventually, the specification is one thing and the implementation is another. Most of bugs we cause ourselves, but sometimes that's not the case. I believe it'd be useful to ...
4
votes
3answers
749 views

Does GLSL utilize SLI? Does OpenCL? What is better, GLSL or OpenCL for multiple GPUs?

To what extend does OpenGL's GLSL utilize SLI setups? Is it utilized at all at the point of execution or only for end rendering? Similarly, I know that OpenCL is alien to SLI but assuming one has ...