Tagged Questions
7
votes
3answers
685 views
Building an interleaved buffer for pyopengl and numpy
I'm trying to batch up a bunch of vertices and texture coords in an interleaved array before sending it to pyOpengl's glInterleavedArrays/glDrawArrays. The only problem is that I'm unable to find a ...
6
votes
3answers
1k views
Where can I find a good online OpenGL 3.0 tutorial that doesn't use any deprecated functionality?
I just purchased the fifth edition of the OpenGL SuperBible. I'm very pleased that they've avoided using deprecated functionality but their examples make use of GLTools. GLTools provides a slew of ...
4
votes
2answers
2k views
Why does my OpenGL Phong shader behave like a flat shader?
I've been learning OpenGL for the past couple of weeks and I've run into some trouble implementing a Phong shader. It appears to do no interpolation between vertexes despite my use of the smooth ...
4
votes
2answers
1k views
OpenGL Shadow Mapping using GLSL
I am trying to get shadow mapping working using GLSL. Unfortunately my depth render results are unusable even I have a pretty decent depth buffer precision. It is rendering like wireframe, following ...
4
votes
1answer
7k views
How do I use gluLookAt properly?
I don't want to get into complex trigonometry to calculate rotations and things like that for my 3D world so gluLookAt seems like a nice alternative. According to the documentation all I need to do is ...
4
votes
2answers
4k views
Python - No handlers could be found for logger “OpenGL.error”
Okay, what is it, and why does it occur on Win2003 server, but not on WinXP.
It doesn't seem to affect my application at all, but I get this error message when I close the application. And it's ...
3
votes
2answers
1k views
HDR, adaptive tone mapping and MSAA in GLSL
In an effort to teach myself OpenGL, I am working my way trough the 5th edition of the Superbible.
I am currently trying to figure out how to combine HDR and MSAA (as described in chapter 9).
For ...
3
votes
2answers
1k views
Pyglet OpenGL drawing anti-aliasing
I've been looking around for a way to anti-alias lines in OpenGL, but none of them seem to work... here's some example code:
import pyglet ...
3
votes
3answers
721 views
New to OpenGL and deprecation
I've begun playing around with OpenGL in Python using PyOpenGL 3.0.1b.
I looked at some sample code and started running it and modifying it etc. All was well until I became a little less ignorant.
...
2
votes
1answer
41 views
pyOpenGL color picking on windows
I have wxPython + pyOpenGL application that needs to be cross platform. Now for selection I implemented a color picking scheme, basically as follows:
if len(self.pick_color_array) == 0:
...
2
votes
1answer
203 views
How to PyOpengl or pyglet to draw on top of desktop?
I'm writing an application that is looking to draw basic polygons and ellipses on the Windows 7 desktop using OpenGL. According to this previous question, this is possibly by getting the window handle ...
2
votes
2answers
125 views
Calling OpenGL Extensions from Python
I am using PyOpenGL 3 on Ubuntu Natty.
I want to use the glDrawElementsBaseVertex function.
I can see it listed in my glxinfo output, so I know my card has it.
However, I cannot find how to ...
2
votes
1answer
238 views
OpenGL - How does texturing affect shadows/lightning?
So the question is: when I switch from ColorPointers to Textures, it seems that the lightning/shadows effects are greatly reduced. Some solution that I have found but doesnt do that much is setting ...
2
votes
1answer
254 views
Implementing render-to-vertex-array, glReadPixels fails (invalid operation)
I'm trying to copy vertex data from a texture to a vertex buffer, and then draw the vertex buffer. As far as I know the best way to do this is to bind the texture to a fbo, and use glReadPixels to ...
2
votes
2answers
1k views
Transparent FrameBuffer background in OpenGL
I want to use glClear and glClearColor to fill a frame buffer with a colour including alpha transparency. However the framebuffer always renders as opaque when binded to a texture which is rendered to ...
2
votes
1answer
601 views
Just installed QtOpenGL but cannot import it (from Python)
I just installed it with apt-get on debian linux with
apt-get install libqt4-opengl
the rest of PyQt4 is available, but I cant get to this new module.
from PyQt4 import QtOpenGL
raises ...
2
votes
1answer
613 views
Using ctypes.c_void_p as an input to glTexImage2D?
I'm using a 3rd party DLL to load in some raw image data, and I want to use this raw image data as a texture in openGL. However, the c function returns a void*, and I need to somehow convert this so ...
2
votes
1answer
894 views
Count image similarity on GPU [OpenGL/OcclusionQuery]
OpenGL. Let's say I've drawn one image and then the second one using XOR. Now I've got black buffer with non-black pixels somewhere, I've read that I can use shaders to count black [ rgb(0,0,0) ] ...
1
vote
1answer
55 views
uv mapping python OpenGL triangles
Im trying to display a simple immediate mode sets of textured polygons with pyOpenGL with no luck. I have lashed together some code that loads a some geometry data and that all works fine and as far ...
1
vote
1answer
143 views
OpenGL VBO shader
I have a 2D VBO object that represent points in 2D space. What is the best way to draw an arbitrary shape at that point? Lets say I wanted to draw a red 'X' at each.
Can I use a shader to do this?
1
vote
2answers
155 views
Trying to Graph a Simple Square in pyOpenGL
I'm trying to teach myself OpenGL using pyopengl and I'm struck on trying to render a simple 2D square centered at the origin. Whenever I set an array value greater than or equal to 1, the shape takes ...
1
vote
1answer
236 views
OpenGL shaders questions
Ok,
This is my first attempt at using shaders so bare with me. I have a running program that uses glVertexPointer, glNormalPointer etc to draw a large number of elements. This works around 30 FPS. ...
1
vote
1answer
293 views
glTexCoordPointer seems to have no effect
I'm still trying to get a grasp of using textures and now I'm trying to use glTexCoordPointer in order to give each vertex a color specific to it's class. I've made some checks and here is the ...
1
vote
1answer
245 views
openGL textures beginner question - 1D Texture creation?
EDIT
Ok I added some changes to my texture rendering, and I'm now at a point that it doesn't look how I want it but before I try to change anything I just want to be sure I'm on the right path. The ...
1
vote
2answers
2k views
glDrawArrays vs glDrawElements
Ok so I'm still struggling to get this to work. The important parts of my code are:
def __init__(self, vertices, normals, triangles):
self.bufferVertices = glGenBuffersARB(1)
...
1
vote
1answer
175 views
PyOpenGL FPS improvement
I'm trying to improve my FPS rate for an python OpenGL program. So far my approach is:
self.bufferVertices = glGenBuffers(1)
glBindBuffer(GL_ARRAY_BUFFER_ARB, self.bufferVertices)
...
1
vote
1answer
376 views
PyOpenGL: Rendering… Well… Anything really
I've been working on a project using python with OpenGL for a while now. I previously posted a similar problem, but I have since done some more research and switched to non-deprecated functions. ...
1
vote
1answer
591 views
OpenGL out of memory error, large FBO
I'm getting out of memory errors when creating a large (2^13) framebuffer object in PyOpenGL/PyQt:
width = 8192
height = 8192
self.textureFbo = ...
1
vote
2answers
657 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
3answers
518 views
Merging multiple line segments
My program uses PyOpenGL (so it's Python) with psyco.
I have around 21,000 line segments which I need to render in each frame of my render (unless the user zooms in, in which case line segments are ...
0
votes
0answers
14 views
pyopengl set multipass texture blending mode
im trying to get multi texturing working and have so far got miltiple textures to load using this function
def loadTexture(name):
img = PIL.Image.open(name) # .jpg, .bmp, etc. also work
...
0
votes
1answer
21 views
why wont this code display my texture in pyopenGL
I'm trying to get multipass texturing work for me but right now i can get simple texturing to work, can anybody spor whats going wring with the following code. This examples just shows the poly as ...
0
votes
1answer
44 views
Do OpenGL GLSL samplers always return floats from 0.0 to 1.0?
I've created a couple of floating point RGBA texture...
glBindTexture( GL_TEXTURE_2D, texid[k] );
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
glTexParameteri(GL_TEXTURE_2D, ...
0
votes
0answers
26 views
Enabling Multisampling in wxPython OpenGL Context
I'm trying to enable multisampling in an OpenGL program I'm writing. The application will require a substantial amount of GUI, so I am using wxPython (with which I am less familiar) instead of PyGame ...
0
votes
1answer
39 views
pyopengl change brightness of textures
I have a program where I render two textures that are bound to some polys and add the results using this:
glTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_ADD)
This works well and fast but I would ...
0
votes
0answers
39 views
pyopengl average two+ textures at runtime
I have a pyopengl program that blends a few images at runtime then applies them to some simple geometry, it works but is extremely slow, slower than i know it can be. The following code is what im ...
0
votes
1answer
56 views
opengl select sphere with mouse
I have a number of spheres in 3d space which the user should be able to select with a mouse click. Now I've seen some examples around using gluUnProject so I gave it a shot. So I have (please correct ...
0
votes
1answer
70 views
pyOpenGL VBOs with index
I want to draw a Rectangle in pyOpenGL using VBOs with indices. I am using the glDrawRangeElements() function for that but I always get the same mistake in the line glDrawRangeElements:
WindowsError: ...
0
votes
1answer
55 views
Efficiency of display lists in OpenGL with Python?
I have been teaching myself OpenGL programming using the Python wrapper PyOpenGL, and am now working on my first project with it. This project is a music visualizer (not dissimilar to whitecap) using ...
0
votes
1answer
46 views
rendering textures with integer internal format
I wish to create and operate textures with integer internal format (for further interop with opencl). However it seems I've missed something important in question of mapping this texture. Here is a ...
0
votes
2answers
109 views
rotating model while color updating
In OpenGL, I draw tree(composed of lines) like structure(neurons), and based on activity, i apply a color on each of the branches of the tree. Each branch portion may have a different color at an ...
0
votes
1answer
82 views
glInterleavedArray formats
I have an interleaved array format and I want to render it in open GL. It is an array of triangles. The vertices are 2D floating points and the colors are RGBA floating points. That is, a single ...
0
votes
1answer
104 views
A problem with using pyglet and pyopengl together
I have the following code:
import pyglet
from OpenGL.GL import *
from OpenGL.GLU import *
class Window(pyglet.window.Window):
def __init__(self,width,height):
...
0
votes
1answer
71 views
PyOpenGL windows OS problem
So I've developed an application on Mac OS and now I'm trying to test it on a machine having windows XP. Now this doesn't work here first issue being that glGenBuffer and glGenBuffer are giving a ...
0
votes
0answers
81 views
Using offsets into the buffer in PyOpenGL calls
In OpenGL the indices parameter for glDrawElements has two different meanings, depending on if you are using GL_ELEMENT_ARRAY_BUFFER or not.
If you have a VBO bound, then it is the offset to start in ...
0
votes
2answers
159 views
glColorPointer trying to improve fps
I've finnaly reached the point that I can add some color to my vertices. But now I want to improve my FPS rate. Here is the current situation. I have a large number of vertices (~200000) , and each of ...
0
votes
1answer
139 views
wxPython, OpenGL.GLU import ordering matters?
I'm in the following situation. I have a module with a GLCanvas, a wx.Panel that contains the canvas and some buttons and a frame that displays them. Now my imports are as follow:
from OpenGL.GLU ...
0
votes
0answers
217 views
Python OpenGL strange situation
I've reached a weird point in my program and I don't even know what to look for anymore. So I have on module name MyGLModule. This contains a class that extends wx.GLCanvas a custom panel in which to ...
0
votes
1answer
200 views
openGL picking after glTranslate / glRotated
I wrote a pick function, to pick scene objects from the opengl canvas.
glRenderMode(GL_SELECT)
glMatrixMode(GL_PROJECTION)
glPushMatrix()
glLoadIdentity()
...
0
votes
1answer
54 views
pyopengl display blocked when acting as a socket server at the same time
I am actually using a pyopengl program to act as a socket server. At the same time
the server receives commands from clients and interprets these commands and does corresponding drawing at the same ...