OpenGL 3.0 is, after OpenGL 2.0, the second major release of OpenGL which, apart from some convenience updates, supports and requires a significantly advanced hardware generation (geometry shaders and instancing). Further, OpenGL 3.0 introduced a deprecation model which was meant to gradually ...
0
votes
1answer
14 views
OpenGL object distortion
I'm trying to display a triangle on the screen and move around with keyboard+mouse, but the closer the object is to the edge of the screen, the more it stretches.
Here's the relevant code:
...
0
votes
0answers
6 views
glDrawArray Invalid Operation 0x0502 on Point Cloud
I am completely new to OpenGL and Shaders but trying to learn.
I am using the TDOGL class for helping with the camera and shader reading and compiling.
I am generating a point cloud of random X,Y ...
3
votes
3answers
86 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
0answers
26 views
Opengl 3.0 Moving objects in relation to mouse click on the windows screen
Well, so I am working on a project, school related one. The project is already done. All I have to do is create different meshes using shaders. This is one of the extra stuffs I am adding so I am ...
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
69 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
1answer
23 views
Any attempt to access uniform variables in shaders causes an access violation on Intel chips
Here's a really strange question.
I have a very simple shader with a single uniform vec4, running in a program using GLEW and GLFW. The program works perfectly fine on several machines with nVidia ...
0
votes
2answers
49 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
69 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 ...
0
votes
1answer
101 views
.obj : fatal error LNK1107: invalid or corrupt file: cannot read at 0x6592
I am trying to load an .obj model into my c++ opengl 3 code but for some reason it gives me this error :
1>Linking...
1>.\bunny.obj : fatal error LNK1107: invalid or corrupt file: cannot read at ...
1
vote
1answer
65 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
69 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 ...
0
votes
0answers
33 views
Access Violation fbxsdk dynamic link library
Im trying render a 3D scene, but ran into an error I can't seem to resolve. I'm using glew and gl to render the scene and loading an FBX. This is the error I received while compiling:
First-chance ...
2
votes
0answers
120 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 ...
0
votes
0answers
31 views
OpenGL enumerating graphic cards
OpenGL 3.3 is not supported by all graphic video cards. On my pc i have 2 graphic cards, one basic Intel video card, and one ATI Radeon. Only Radeon supports OGL 3 or higher, but my default card is ...
2
votes
2answers
95 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
60 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
70 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
80 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
93 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
0answers
42 views
How to set AntTweakBar to be on top of OpenGL 3 content (using GLFW)
I am using GLFW to display some OpenGL content in MSVS 2010. I want to use AntTweakBar to modify some directive variables (speed rotation, object size, ...) and I want this bar to be above the OpenGL ...
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
90 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
74 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
1answer
48 views
Translation and Rotation in OpenGL?
I'm working through the OpenGL Superbible ( 4th Edition ). Chapter 4 has an example of rotating electrons about a nucleus. ( basically small spheres about a single larger sphere).
Here is an extract ...
0
votes
0answers
82 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 ...
-2
votes
1answer
129 views
Changing background color of a Texture in android
I have an image that I use as a texture. The image has a person with a green background. I want to clear the green background and make it transparent. I searched a lot but didn't get anything ...
1
vote
1answer
60 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
125 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
40 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
117 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
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;
...
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
131 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
45 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
125 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
48 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
58 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
310 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
79 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
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
84 views
Tips on storing and sending vertex data to shaders using OpenGL 3.3 (core profile)
I'm quite new to 3d graphics programming. I'm reading the OpenGL SuperBible (5th edition) and everything was going smooth, untill I tried to implement a ray picking algorithm, which required access to ...
0
votes
0answers
80 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 ...