Tagged Questions
3
votes
1answer
30 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 ...
0
votes
2answers
16 views
Access violation at glDrawArray
i have been trying to use glVertexAttribP with GL_UNSIGNED_INT_2_10_10_10_REV but stuck up at some point.
here is my code
GLuint red=0,green=511,blue=511,alpha=3;
GLuint val = 0;
val = val | (alpha ...
0
votes
1answer
26 views
Understanding VAO's with IBO's
GLuint vao;
glGenVertexArrays( 1,&vao );
glBindVertexArray( vao );
glEnableVertexAttribArray( 0 );
vbo.bind( GL_ARRAY_BUFFER );
glVertexAttribPointer( 0, 3, GL_FLOAT, GL_FALSE, ...
1
vote
1answer
64 views
animation points in OpenGL with C++?
I try in 3D but i am a beginner, so i try do with 2D first and value of z = 0. I have an array of points with values random in array points[] using std::vector. I have functions Distance(...) and ...
0
votes
2answers
48 views
Generating a Sphere
I'am trying to draw a icosahedron using OpenGL 3.3+ so i may subdivided later on to make it a sphere, but I keep getting this error in VS2010 Express:
Stack around the variable '_vertices' was ...
0
votes
1answer
65 views
The cvQueryFrame function call slows the main loop execution using OpenCV and OpenGL
I coded a simple program below which get the video stream from a webcam and diplays it on the screen. Until here all is ok (when I move the camera all is synchronized). But I want also display in the ...
1
vote
1answer
61 views
Efficient downsampling for post-processing effects in opengl 3.3
I understand the idea behind the bloom/glow effect: we downsample the texture to keep our convolution kernels small. Now that I am trying to implement it, I am not quite sure which road I should ...
1
vote
1answer
52 views
Can I have a default Framebuffer without alpha and depth?
I am looking to save some video card memory by not allocating what I do not use. I am far from running out of memory, but it would feel 'cleaner' to me.
I can't really think of a reason to have an ...
0
votes
1answer
58 views
glXMakeCurrent give me Bad Match
I'm having some trouble to have a rendering system working on both Windows and Linux platforms.
On Windows platform it works like a sharm, while on Linux my application terminates with the following ...
2
votes
0answers
116 views
Why does SFML with an Opengl 3.0 context draw twice?
I've been working on a 3D application using SFML for context creation and OpenGL 3.0. For some reason when I attempt to create the context using OpenGL 3.0 it seems to draw the image slightly narrowed ...
2
votes
2answers
93 views
Creating shapes with OpenGL 4.3
I wrote a simple program using OpenGL 4.3 which displays a triangle, quadrilateral, and pentagon. I defined my vertices in the following array:
vec2 vertices[NumPoints] = {
vec2(-1, -0.75), ...
0
votes
1answer
59 views
What is the maximum number of Uniform Buffer Objects I can make?
What is the maximum number of Uniform Buffer Objects I can make in OpenGL 3.2+?
I'm using code similar to the following to generate UBO's (and lets assume size and data_pointer have valid data in ...
0
votes
2answers
69 views
How to compute normals for a segment line in 3D
I have exported some hair particules from Blender (a hairstyle). These are composed of several lines (GL_LINES). My openGL program displays these particules without any problem. Now I just want to ...
1
vote
1answer
76 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 ...
0
votes
1answer
89 views
Incorrect rotations using openGL GLM and shaders
The goal of my program is to display a simple colored triangle rotating on the Y axis without any translation. I'm using the GLM library. The problem is that the transformations of my triangle are not ...
2
votes
1answer
88 views
How to create OpenGL 3.0 context using Pyglet
I'd like to make use of OpenGL 3.0 features (framebuffer objects, 2D texture array), but the default OpenGL context created by Pyglet does not support these.
In the Pyglet source there is the ...
1
vote
1answer
57 views
Using GL_SRC1_COLOR in glBlendFunc()
I am using glBindFragDataLocationIndexed() and writing two colors in fragment shader. Following is my code :
glBindFragDataLocationIndexed(shader_data.psId, 0, 0, "Frag_Out_Color0");
...
2
votes
1answer
88 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 ...
0
votes
2answers
71 views
Attribute divisor without instancing?
I know that glVertexAttribDivisor can be used to modify the rate at which generic vertex attributes advance during instanced rendering, but I was wondering if there was any way to advance attributes ...
0
votes
0answers
81 views
VBO Cubes not rendering — Testing for unsupported features
I am trying to render a large cube composed of other cubes (`10x10x10 for a total of 1000 cubes). It works fine my computer and one of my friends' computer, but another one is just getting a blank ...
1
vote
1answer
59 views
OpenGL shader getting incorrect data even though it seems correct
I just started learning how to use OpenGL 3.2, and right now I am trying to put together a utility for loading geometry data. When I look at the code for loading in the vertices, everything looks ...
3
votes
1answer
122 views
How to determine the width and height of a GL framebuffer object given only the corresponding id
I want to determine the size (width, height) of a framebuffer object.
I created a framebuffer object via
// create the FBO.
glGenFramebuffers(1, &fboId);
How can I get the size of the first ...
0
votes
1answer
122 views
Using fence sync objects in OpenGL
I am trying to look for scenarios where Sync Objects can be used in OpenGL. My understanding is that a sync object once put in GL command stream ( using glFenceSync() ) will be signaled after all the ...
0
votes
1answer
39 views
Regarding channels in Depth textures
I have implemented depth texture and getting different outputs on 2 different drivers.
I am reading all channels in texture() in fragment shader :
“vec4 color = texelFetch(tk_diffuseMap, ivec3(tmp), ...
0
votes
1answer
115 views
QTimer for QGLWidget, incorrect drawing and timing on other machines
I have two timers to repaint a QGLWidget and determine the FPS
QObject::connect(&fpsTimer, SIGNAL(timeout()), this, SLOT(updateFps()));
fpsTimer.start(1000);
QObject::connect(&updateTimer, ...
1
vote
2answers
111 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;
...
0
votes
1answer
20 views
Retrieve number of samples allocated by driver
I am working on application in which i am using multisampled textures. Now, i want to retrieve number of actual samples allocated by driver. for e.g. when my application asks for a 1X multisampled ...
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 ...
3
votes
1answer
44 views
Unexpected behavior of glGetActiveUniformName
glGetActiveUniformName is a function that can be used to query a GLSL uniform's name length according to the documentation. This can be done by setting uniformName to NULL (0) and supplying an GLsizei ...
0
votes
1answer
116 views
How to use glDrawElementsBaseVertex to draw just select individual triangles out of an VBO mesh?
So I have a simple cube "mesh":
the 6 cube faces are 12 triangles, hence 36 "vertices" organized as 36 indices reusing 8 unique vertex positions, 6 unique vertex normals and 4 unique ...
0
votes
0answers
47 views
Regarding drawBuffer in glClearBufferiv
I am rendering geometry on non default FBO and applying it as integer texture to the geometry rendered on default FBO. To clear a color on non default FBO, i am using glClearBufferiv() call. I am not ...
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 ...
0
votes
0answers
53 views
Corruption in Stencil textures with glTexImage2DMultisample
I am using depth multisampled textures. I have 2 attachments to FBO: 1. Depth-stencil attachment of a texture 2. Color attachment of render buffer.
I am rendering a cube on non default FBO with ...
2
votes
1answer
302 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
136 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
1answer
36 views
Using glDrawRangeElementsBaseVertex()
I am facing some doubt while using glDrawRangeElementsBaseVertex().
Following is the source code :
GLfloat vertices[]=
{
-0.9,-0.9,1.0,1.0,
-0.1,-0.9,1.0,1.0,
...
0
votes
0answers
79 views
Regarding geometric shaders
I am trying to draw GL_TRIANGLE_STRIP with geometric shader.
My vertex array:
const GLfloat data[] =
{
-0.9f, -0.2f,
-0.9f, -0.9f,
-0.2f, -0.9f,
-0.2f, -0.2f,
-0.1f,-0.2f,
-0.1f,-0.9f,
...
3
votes
0answers
132 views
OpenGL fbo blitting inconsistent between Intel and Nvidia
I am rendering a scene in OpenGL in a low resolution into a framebuffer. Then I intend to draw this version onto the whole screen (upscaled with GL_NEAREST). I do this using texture blitting ...
1
vote
0answers
90 views
GLFW - glfwSetMousePos Bug on Mac OS X 10.7 with OpenGL camera
I have been following the tutorials at http://opengl-tutorials.org and they are brilliant so far (I'm on a Mac so I am having to use OpenGL 3.2 and GLSL 1.50 rather than OpenGL 3.3 and GLSL 3.30). The ...
-1
votes
1answer
88 views
Regarding glMapBufferRange
GLfloat vertices4[]={-0.9,0.6, -0.9,0.2, -0.6,0.2, -0.6,0.6,
-0.4,0.6, -0.4,0.2, 0.1,0.2, 0.1,0.6,
0.3,0.6, 0.3,0.2, 0.6,0.2, 0.6,0.6 };
...
1
vote
0answers
120 views
Dynamic branching in geometry shader messes up textures
So this is a really really weird "bug"(?!) I'm facing right now, it's a bit hard to explain (and one huge wtf), so please bear with me. I also can't tell you how to reproduce the problem, it reliably ...
-1
votes
2answers
133 views
Good place to learn modern OpenGL?
I want to be able to use the newer versions specifically 3.2, I currently am using 1.1. Everywhere I look online I cant seem to find any tutorial that teaches you this stuff without showing some ...
0
votes
1answer
120 views
Render a 3D image from a different Viewpoint
I want to render an already available 3D point cloud from a different viewpoint using OpenGL. Can anybody tell me how to do that,or atleast point me to some useful tutorial of openGL that refers to ...
0
votes
1answer
44 views
Order of execution of depth_clamp and depth_test
does depth clamp occurs before depth test or after depth test?
I am rendering a primitive with coordinates > 1.0 and <-1.0 and using depth clamping with depth test. But when i enable depth test it ...
1
vote
0answers
42 views
glTexImage2DMultisample gives error with SNORM internal formats
glTexImage2DMultisample gives GL_INVALID_ENUM error when called with snorm internal formats. when i checked http://www.opengl.org/sdk/docs/man3/xhtml/glTexImage2DMultisample.xml , and it does not ...
0
votes
1answer
73 views
Regarding seamless cub map textures
I am not sure how seamless cubmap works. What i know is that with this feature, at the edges there is smooth color changes between two edges.
So, i am rendering a cube with 8*8 texture on each face ...
0
votes
0answers
136 views
glFramebufferTexture2D gives corruption with cube map textures
I am using glFramebufferTexture2D with cube map textures but it gives corruption in texture.
draw_cube() function works perfectly when i draw that on default framebuffer.
GLfloat vertices[]=
...
0
votes
1answer
305 views
how does glTexImage2DMultisample work?
i want to use multisampled textures.
What will be the fragment shader and how to pass multiple samplers to shader?
Also, which API can be used to load texel data ?
I want to use default FBO for ...
2
votes
1answer
108 views
Is it reasonable to use modern OpenGL context?
Recently I've used some features that require modern OpenGL context (specifically ARB_debug_output requires to create context with WGL_CONTEXT_DEBUG_BIT_ARB via wglCreateContextAttribs) and ...