OpenGL is a graphics standard and API which is platform independent and available for desktop, workstation and mobile devices. It is designed to be easy to accelerate with dedicated computer hardware, and hence most implementations give greatly improved performance over traditional software ...
-1
votes
0answers
54 views
Problems With Phong Illumination Model OpenGL
I'm trying to implement my own phong illumination model for an assignment. We have been provided an array of all the normals and vertices. I am getting a black model when I disable GL_LIGHTING, and ...
1
vote
1answer
39 views
Using Two Textures: Output Window Doesn't Retain On Screen
This code initially uses one texture. I duplicated some functions to use two textures. There doesn't seem to be any errors but when I run I only see the black command window for a bit then it closes. ...
0
votes
0answers
33 views
Using glut with code blocks in Windows 7
i'm a total novice with OpenGL, and I have to compile a file (my first file using opengl), the headers of the file are :
#include <GL/glut.h>
#include <GL/gl.h>
#include <iostream>
...
0
votes
0answers
45 views
OpenGL vertex buffer object not drawing on Linux
I'm trying to run some LWJGL code to display a single square on the screen. Here's the code I'm using:
import java.nio.FloatBuffer;
import org.lwjgl.BufferUtils;
import org.lwjgl.LWJGLException;
...
0
votes
1answer
51 views
How to draw a moving function graph with OpenGl?
I'm using OpenGl to animate a graph that looks something like this:
Here's the code I've got so far:
void GLWidget::paintGL()
{
glClear(GL_COLOR_BUFFER_BIT);
glColor3f(0,1,0); ...
0
votes
2answers
25 views
Only one axis rotation
Is it possible to rotate object like below using fixed pipeline OpenGL? If yes - how can I do this? The 0,0 point is in the corner of 3d object, parallel point must be higher or lower than the 0,0 ...
1
vote
1answer
62 views
glDrawElements without using shader?
My question is can I use glDrawElements without using shader?
I generate my vbo like the following:
glGenBuffers(1, &vertexId_);
glBindBuffer(GL_ARRAY_BUFFER, vertexId_);
...
0
votes
0answers
32 views
NSOpenglContext flushBuffer not working in 3.2 application
I'm trying to write an OSX OpenGL app, but I'm running into trouble trying to swap buffers when using 3.2 profile.
I "change" to the 3.2 profile with the following code in initWithFrame:
self = ...
0
votes
0answers
34 views
Java2D OpenGL pipeline causing Swing issues
I have a simple app in which a user can draw with colours on a grid canvas. I noticed a large speed increase when I set the sun.java2d.opengl system property to true, yet this had unwanted side ...
0
votes
1answer
27 views
OpenGL - Cube is translating with with local location, not globally
In the LWJGL binding of OpenGL I am trying to make a cube that will be able to location, rotate and scale based on user input. The rotation of the cube is meant to be based on an offset value, which ...
-2
votes
0answers
42 views
OpenGL (3.x+) advanced tutorials [closed]
I have studied a long list of tutorials about "modern" OpenGL.
Now I know how to use shaders, and I understand how Framebuffer, Renderbuffers, Vertex array objects work. The "problem" of these ...
0
votes
2answers
69 views
Using Qt's QTimer function to make animations in OpenGl
How exactly do you use a QTimer to set off an animation in OpenGl?
I want to draw a simple circle and change the radius every 30 milliseconds, so it appears to grow and shrink smoothly.
Here's what ...
1
vote
1answer
42 views
Keeping aspect ratio when resizing in OpenGL
I implemented the following code:
void TestGlPlot::resizeGL(int width, int height)
{
setupViewport(width, height);
}
void TestGlPlot::setupViewport(int width, int height)
{
/* Prevent divide ...
0
votes
2answers
44 views
unresolved inclusion <GL/glut.h>
I am trying to get opengl to work with eclipse and I keep getting the following error
unresolved inclusion
however when i run some sample code it still works, it's just an issue of loads of errors ...
2
votes
1answer
59 views
Sending two textures to GLSL shader
When sending two textures to my GLSL shader only one actually arrives. What is strange is the first texture I bind is used for both textures slots in my shader. This leads me to believe the way I am ...
0
votes
0answers
24 views
JOGL Two GLJPanels in one JFrame
I'm currently developing one module into one project for visualisation of molecules.
One of the tasks I'm currently dealing with is stereoscopic projection. Due to my stereo setup - I want to render ...
-5
votes
0answers
52 views
What should we do to protect our game models files? [closed]
When you finish and sell a game...Somebody who buys the game can't steal your *.obj files,or any model data files?What should we do to protect them?
0
votes
0answers
28 views
How to plot point cloud in QT5.0.2 + Visual Studio using Buffer and perform Translation and Rotation for each frame
I am in a project to Plot point cloud on QT5.0.2 using QOpengl...Input would be points from PCL, i would have the vertex and color, Translation and rotation values of each frame...I dont know how to ...
0
votes
0answers
55 views
Best CLOD Method for Planet Rendering
I'm currently working on my thesis, it is an engine to render terrains of planetary size.
I'm still finishing my researh and I have encountered a lot of stuff about this subject, the problem is that ...
0
votes
0answers
41 views
Multiple framebuffers and textures not working on intel drivers
I'm writing an application using PyOpengl and PySide. My main machine is installed with ubuntu and an nvidia card (proprietary drivers), the premise is just to tell that the application is working ...
1
vote
2answers
54 views
can't use SOIL in linux mint
I am doing an assignment that requires me to use SOIL. I installed it using the command sudo apt-get install libsoil-dev, but when I try to compile my program, I get the following error:
...
1
vote
0answers
39 views
Strange Vertical Bars appear when using LWJGL on Windows
I'm writing a game in java that uses LWJGL's native OpenGL bindings to render the game graphics in OpenGL. When I run the game on Linux (tested on 2 different computers with different graphics cards), ...
1
vote
0answers
34 views
OpenGl glut textures doesnt draw
I am developing a project using GLUT, and when i want to use GlTexture, to add a texture, it only works if the height and width are base 2(2^n, ex: 128-64,256-256...). Someone here experienced the ...
1
vote
1answer
50 views
Lighting not working on OpenGL - Solid color
The lighting doesn't work, the object appears with solid color. The color itself changes with the material or lighting parameters but no shadow or anything just solid grey.
Here's part of the code:
...
0
votes
1answer
75 views
Best way of using textures/sprites in OpenGL (including PBO)
I have a little game in C# which uses mainly fixed sprites (bitmaps loaded from disk) and some videos.
Now our current approach is
Loading:
texture.ID = GL.GenTexture();
...
1
vote
0answers
50 views
Logarithmic depth buffer
I use a logarithmic depth buffer : in my shader I wrote the code describes here :
In the vertex shader :
void main()
{
vec4 vertexPosClip = gl_ModelViewProjectionMatrix * gl_Vertex;
gl_Position ...
0
votes
2answers
57 views
Render QWidget in OpenGL
I have an OpenGL application and I would like to add a GUI to it.
My problem is that I want to keep my way of creating the window and my mainloop. In fact, I want to keep my application and just add ...
0
votes
1answer
52 views
Draw in non-normalised coordinates - glFrustum
On using glFrustum,
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glFrustum(-1, 1, -1, 1, 0.1, 1000.0);
glLoadMatrxi(GL_MODELVIEW);
glBegin(GL_QUADS); //A room's left wall
glVertex3f(-1.0, 1.0, ...
0
votes
1answer
22 views
Objective C glutDisplayFunc with method
How can you use a Objective C method as an argument for glutDisplayFunc (and functions like it)? I'm quite new to ObjC, so I don't completely know how this works
In C++, you can just pass in a void, ...
1
vote
0answers
60 views
error creating shader type 35663
i want to learn OpenGl and i follow the tutorial in http://ogldev.atspace.co.uk/
nicely tutorial 1,2 have been passed.
but on the tutorial 3,that is make a triangle i got error. the code is compile ...
2
votes
1answer
56 views
Does NBOpenGL really worth the effort?
Ok so I tried to learn Opengl ES 2 (and opengl 4) during my eastern vacation because I realised that I dont really need Athens or vector graphics for my GUI, since I will be dealing mostly with 3d ...
1
vote
2answers
59 views
Opengl glLoadIdentity() faster than glPushMatrix()/glPopMatrix()?
I make a particle emitter. I do not need to manage a parent / child hierachy in my transformations.
What is the fastest?
glPushMatrix()
..apply tranformations
...draw object
glPopMatrix()
...
2
votes
1answer
65 views
Separating Axis Theorem in Python/Pyglet
I'm trying to make a (sort-of) clone of Asteroids in Python using Pyglet. I figured I'd try to get a little fancy and implement the separating axis theorem to do collision. I got it to work, but the ...
0
votes
0answers
39 views
OpenGL Polygon Rendering inconsistency
I am using opengl simple commands for demonstration purpose in my project. Well, my project is similar to mesh a rectangle region into a set of small convex polygons. First, I tried to render the ...
1
vote
1answer
61 views
Drawing outline of 2D shapes in OpenGL while changing the line thickness
So I'm trying to (what I think would be simply) draw the outline of a number of 2D shapes using OpenGL. It all seems to work until I try to change the line thickness of the outline using ...
0
votes
1answer
26 views
glCompressedTexImage2D for rectangular texture
it seems glCompressedTexImage2D does not handle GL_TEXTURE_RECTANGLE..
I am trying to load Valve's VTF texture file, and most of them seems to be rectangular with DXT1 compression.
how do I work ...
2
votes
1answer
38 views
My cube in lwjgl doesn't render correctly
I followed the tutorial for OpenGL found here as provided by the top answer to this question but my cube refuses to render the front and back faces, all other faces render, same problem with a ...
1
vote
1answer
35 views
GLSL geometry value changing when it shouldnt
I'm working with a VERY simple program that is passing an array of points into the programable pipline to draw a cube. I'm trying to set it up so I can change the geometry every frame (based on some ...
0
votes
4answers
43 views
Entire object rotates
The idea from this code is to let a windmill like structure to rotate, the problem is that the entire object rotates instead of the windmill fan itself (not the red triangles only). here is the code ...
0
votes
2answers
45 views
Alter color during OpenGL rendering without lighting or shaders
I need to render an object using an existing texture, and I need to alter the color during the rendering. (Such as multiplying red channel by 0.5.) The existing texture is not monochromatic. I need to ...
0
votes
3answers
69 views
OpenGL vector graphics rendering performance on mobile devices
It is generally advised not to use vector graphics in mobile games, or pre-rasterize them - for performance. Why is that? I though that OpenGL is at least as good at drawing lines / triangles as ...
0
votes
2answers
42 views
Drawing with transparent texture, then opaque color
I initialize OpenGL like so to make transparent textures transparent:
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
I draw my texture like this:
glPushMatrix();
...
0
votes
1answer
45 views
Correctly use stencil_texturing in OpenGL
I am trying to implement the stencil_texturing extension of OpenGL as a proof of concept. My video card supports up to GL 4.3 so stencil_texturing is available to me. If more clarification is ...
-2
votes
0answers
48 views
adding shadows to the balls inside my cube [closed]
how can i add shadows to my objects,i have 3 balls bouncing inside a cube but i have been trying to add shadows even one shadow at least,i read somewhere where you can use a shadow matrix but honestly ...
0
votes
0answers
44 views
how glBlitFramebuffer works
GLuint32 fbo[2];
GLuint32 rbo[2];
GLuint32 texture[2];
glGenFramebuffers (2, fbo);
glGenTextures (2, texture);
...
2
votes
1answer
36 views
glClearBufferData - Usage Example?
void glClearBufferData(GLenum target, GLenum internalformat, GLenum format,
GLenum type, const void* data);
I'm not quite sure how to use this method properly. More specifically the ...
0
votes
1answer
61 views
Saving a specific Camera View in OpenGL as Image
I have a 3D scene with an object and I would like to save a view of that object that is different from the one of the current screen I look at.
So I thought I'd just have to do something like this ...
0
votes
1answer
40 views
OpenGL 3.0 shaders version 150 [closed]
1 I do not know why these two cubes are spinning at different rotation rate.
2 Is there anyway that I can rotate all objects without adding RotX, RotY, RotZ in each mesh. You know like..umm... have a ...
1
vote
2answers
287 views
1
vote
2answers
49 views
Cross-compiling OpenGL / glew on linux for windows
I'm trying to cross-compile a small test opengl/glew program and I get linker errors from undefined references.
$ /usr/bin/i486-mingw32-g++ -I/usr/i486-mingw32/include -L/usr/i486-mingw32/lib/ ...



