1
vote
2answers
71 views
Java OpenGL draw a star
Hi, I'm working on an OpenGL project in which I want to draw a star. It doesn't necessarily have to be a 3d looking star (2d looking is fine). I have the xyz coordinates for the center of the star and …
0
votes
3answers
31 views
How to make a circular UIView
I want to make a UIView or UIImageView that is a circle. Or a circle that i can change the size of using a slider, and the color of with a pickerview.
0
votes
2answers
38 views
How can I draw a cylinder that connects two points in OpenGL
i have two point each point has its own X and Y value and they have the same Z value.
i want a function to draw Cylinder between these two points.
2
votes
2answers
35 views
negative color with glBlendFunc() ?
i want my lines to be drawn with negative color (taken from the screen under the line), i just didnt understand how the blending works, looked at docs etc, tested 50 combinations and so on. started to …
0
votes
3answers
76 views
glDrawElements allocating memory and not releasing it
Using OpenGLES 1.1 on the iPhone 3G (device, not simulator), I do normal drawing fun. But at points during the run of the application I get giant memory spikes, after a lot of digging with instruments …
1
vote
1answer
33 views
How to rotate about the center of screen using quaternions in opengl?
I am trying implement arcball/trackball rotation but I have a problem with the center of
rotation. I want the center to be the center of my screen no matter what.
Let me explain what I have done so …
0
votes
1answer
21 views
Help with Open GL iPhone
I am trying to put an OpenGL View into my application but I want to make sure that before I do this that the view is transparent because I want to see and interact with the view behind it as well as …
0
votes
1answer
20 views
iPhone: how to prioritize items in a CFRunLoop (OpenGL related)
I have an OpenGL application which is rendering intensive and also fetches stuff over HTTP.
Following Apple's samples for OpenGL, I originally used NSTimer for my main painting loop, before finding …
1
vote
1answer
41 views
How to setup OpenGL camera for a racing game
I need the view to show the road polygon (a rectangle 3.f * 100.f) with a vanishing point for a road being at 3/4 height of the viewport and the nearest road edge as a viewport's bottom side. See …
0
votes
2answers
37 views
The procedure entry point _ftol2 could not be located in the dynamic link library msvcrt.dll
I've recently been tinkering with a little gameproject using VC++ 2008. I'm using SDL, OpenGL, Boost and Box2D as included libraries. It works fine on my windows 7 machine, aswell as a friend's w7 …
0
votes
3answers
48 views
Open GL ES - Z order when rendering 2D sprites
Hi,
I was wondering if there was a way to make OpenGL ES render a batch of quads (rendered with texture page changes) and render them in z order (or reverse).
Note I don't want a ZBuffer, I just …
0
votes
2answers
35 views
opengl glutmainloop()
hey guys,
i just started off using opengl and it seems it is not easy to understand the working of the
glutmainloop()
what really happens there?
does it stay there doing nothing till any of the …
1
vote
5answers
101 views
Using Blender/SketchUp Models in OpenGL
I'm making a renderer using OpenGL. I have textured models in Blender / Sketchup (I can exchange between the two easily), and I'd like to be able to export those files into my renderer. My initial …
0
votes
2answers
48 views
Draw to offscreen renderbuffer in OpenGL ES (iPhone)
I'm trying to create an offscreen render buffer in OpenGL ES on the iPhone. I've created the buffer like this:
glGenFramebuffersOES(1, &offscreenFramebuffer);
…
0
votes
2answers
23 views
glDrawElements flicker and crash
I'm getting a fishy error when using glDrawElements(). I'm trying to render simple primitives (mainly rectangles) to speed up drawing of text and so forth, but when I call glDrawElements() the WHOLE …
