0
votes
0answers
18 views
How can I control my L-System pattern with my code?
I am working on a project to display and animate a tree growing. I am using C++ and OpenGL on this project. The tree grows to a certain number of branches, stops, and then the tree's leaves fall to …
0
votes
2answers
28 views
Optimum ordering for packed vertex arrays on iPhone
Is there an optimum packing format for vertex arrays on the iPhone hardware? My textured (triangle) arrays are ordered:
Vertex (x, y, z)
Vertex Normal (x, y, z)
Texture Coordinates (u, v)
This is …
0
votes
1answer
13 views
How to transform directional light to camera space in GLSL
I have the following GLSL code for lighting:
uniform vec3 lightDir; // Parallel light
uniform float ambient;
uniform vec3 lightColour;
void main()
{
gl_Position = ftransform();
vec3 …
1
vote
3answers
125 views
Cool applications for WebGL?
The recent SIGGRAPH 2009 saw the announcement of WebGL - a port of OpenGL ES to javascript.
The application that immediately came to my mind is web-based 3D first person shooters with AJAX as basis …
0
votes
0answers
12 views
Problem using FBO: Only first pass renders. A possible problem at setting render target back?
Hi, I have a huge problem with using FBO.
I have a multi-pass display using FBOs and multitexturing. Everything seems to work fine until the end of first execution of display.
I set the render …
1
vote
6answers
109 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
0answers
7 views
Compiling OpenGL SOIL on Mac OS X
How would I link in or compile SOIL (http://lonesock.net/soil.html) into my C++ OpenGL project on Mac OS X?
0
votes
1answer
14 views
opengl texture lod bias adjusting via opengl function call?
how is it possible to change the lod bias via an opengl function call? i dont like the default settings, changes the miplevels too early and makes the nearby ground look ugly.
i couldnt find any …
0
votes
3answers
52 views
Setting up OpenGL on Linux
I have a specific problem.
I am starting learning OpenGL and I am not sure, how to set it up on (Ubuntu) Linux.
I think that this could be a way:
…
1
vote
2answers
74 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 …
2
votes
2answers
42 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
35 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
46 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.
0
votes
3answers
79 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 …
0
votes
3answers
52 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 …
