Tagged Questions
The vertex tag has no wiki summary.
9
votes
1answer
2k views
When should I use indexed arrays of OpenGL vertices?
I'm trying to get a clear idea of when I should be using indexed arrays of OpenGL vertices, drawn with gl[Multi]DrawElements and the like, versus when I should simply use contiguous arrays of ...
7
votes
2answers
159 views
Best technique to handle vertices in OpenGL? C++
I am implementing a map renderer for Quake. I am currently running through the arrays of vertices and sending them one at a time. I was told that by using vertex arrays, I can greatly speed up the ...
6
votes
3answers
262 views
OpenGL Shading Language Different Types of Variable (Qualifiers)
I've been writing programs using OpenGL. Recently, I started learning OpenGL Shading Language. I'm a newbie; so please be detailed in your answers.
My questions are:
1. What are different types ...
5
votes
1answer
649 views
How can I animate an object in WebGL (modify specific vertices NOT full transforms)
Okay,
I am new to 3D graphics and I want to animate individual specific vertices in a model (NOT whole model transforms). My script is largely based off the NEHE webgl tutorial. In this tutorial all ...
4
votes
2answers
137 views
OpenGL - Associate Texture Coordinates Array With Index Array Rather Than Vertex Array?
Whenever we use an index array to render textured polygons with glDraw*Elements*, we can provide an array of vertices and an array of texture coordinates. Then each index in the index array refers to ...
4
votes
4answers
826 views
Implementing Depth First Search into C# using List and Stack
I want to create a depth first search which I have been somewhat successful in.
Here is my code so far (Except my constructor, note the Vertex and Edge classes only contain properties, nothing ...
4
votes
1answer
830 views
How to properly update vertex buffers in DirectX 10
For a little background: I am working on a project in C++ in which I am trying to draw 3D representations of objects based on real time profile data. The profiling data is gathered from external ...
4
votes
4answers
2k views
Getting basic 3D models into an OpenGL app
Ok... I'm doing simple OpenGL ES programming and when I say simple, the most complicated things I do aren't much more than glorified beveled cubes and L-shapes. (Think very Tetris but in 3D.) ...
3
votes
3answers
119 views
OpenGLES 2.0 separate buffers for vertices, colors and texture coordinates
I've been learning OpenGL for a few days now by following some tutorials and coding some experiments of my own. But there is one thing I really don't understand which blocks me from continuing. I've ...
3
votes
1answer
44 views
Separate indices for UVs and vertexes
When creating your buffers for OpenGL on Android, is there any way to use different indexes for your UVs than for your vertexes?
For instance, if you have 5000 vertexes but 12000 UVs and don't want ...
3
votes
1answer
85 views
Spiked vertexes on generated Icosphere
I've been working on a program to generate an icosphere. (A sphere with evenly distributed vertexes across the face, to be used for terrain deformation)
I have pretty much everything done, the sphere ...
3
votes
2answers
538 views
How can I find a list of all the uniforms in OpenGL es 2.0 vertex shader pro
I'm trying to learn how to program vertex shaders. In Apple's sample project they have a line to set a
glUniform1f(uniforms[UNIFORM_TRANSLATE], (Glfloat)transY);
Then this value is used in
// ...
3
votes
1answer
263 views
Identify visible vertices in OpenGL
What is the most efficient way to identify the vertices that are visible from a particular viewpoint?
I have a scene composed of several 3D models. I want to attach an identifier to each vertex ...
3
votes
1answer
5k views
Xna 4.0 3D Vertex example
I'm currently trying to make a simple square by combining two triangles, like in the tutorials by Riemer (Link to tutorial), but since a lot has changed from 3.x to 4.0, I find it difficult.
I would ...
3
votes
2answers
750 views
Minimum vs Minimal vertex covers
I am studying for an exam and one of the sample questions is as follows:
Vertex cover: a vertex cover in a graph is a set of vertices such that each edge has at least one of its two end points in ...
3
votes
2answers
674 views
I'm having an issue to use GLshort for representing Vertex, and Normal
As my project gets close to optimization stage, I notice that reducing Vertex Metadata could vastly improve the performance of 3D rendering.
Eventually, I've dearly searched around and have found ...
2
votes
1answer
148 views
Calculating vertex normals OpenGL
I'm trying to calculate the vertex normals for a wave, but I'm getting a chequered effect instead of the desired smooth shading.
I'm not sure if I'm passing the correct vector into the calcNormal() ...
2
votes
1answer
159 views
Flipped computed face normals after iOS OpenGl ES .obj loading a unit cube
I'm trying to export and load a model from Maya into a very simple iOS OpenGL ES setup. For that I wrote a ruby obj parser that basically takes the vertices and normals and computes them into a C ...
2
votes
4answers
259 views
Validity of algorithm for creation of a non self-intersecting polygon
As an extension and partial answer to my thread I wrote a simple algorithm that given a set of points(with xy coordinates) can form a non self-intersecting polygon.
Claim: Given an arbitrary set of ...
2
votes
1answer
381 views
Android opengl modify vertex array after draw call
In opengl, is it bad practice or not recommended to modify the vertex array after I have drawn it?
2
votes
1answer
427 views
BGL: How do I store edge_descriptors and vertex_descriptors efficiently?
So after my circular dependency problem with the BGL was solved I've come to another obstacle.
I'm currently using an adjacency-list to model my graph. Bundled properties for both nodes and edges are ...
2
votes
2answers
1k views
Opengl ES - drawing a plane of multiple vertices
Using Opengl ES for Anroid we’re facing a problem when drawing a square with a texture. They look fine from a distance, but when getting close to the model the texture screws up. We believe this is ...
2
votes
1answer
293 views
Java OpenGL Vertex Buffer Objects not working
I tried to implement Open GLs Vertex Buffer Objects the first time, and all i get is a black screen.
I tried it with glOrtho instead of glPerspective, but it didnt work as well.
thanks for helping
...
2
votes
1answer
988 views
Cocoa and OpenGL, How do I set a GLSL vertex attribute using an array?
I'm fairly new to OpenGL, and I seem to be experiencing some difficulties. I've written a simple shader in GLSL, that is supposed to transform vertices by given joint matrices, allowing simple ...
1
vote
1answer
34 views
Leaf and self loop
Can a node with a self-loop be a leaf node? Or maybe leaf is defined only for simple graphs (no self-loop, no multiple edges)? I can't find the answer. I found various definitions, but nowhere an ...
1
vote
2answers
29 views
Exporting a application from my application?
The title doesn't really explain what i want but basically.
I have my application that people enter a bunch of vertex points in a polygon. Then it gives them a list of Vertex's that fit inside the ...
1
vote
2answers
118 views
Disable/skip vertex in shader
I am rendering a huge point cloud (1.5 Mio. points) as GLPoints with WebGL and naturally encounter performance issues.
So my first idea is limit the amount of points be drawn on the screen. ...
1
vote
1answer
49 views
how provide a vertex_index property for my graph
Since my graph use setS for vertex, I have to either provide a vertex_index property map for my graph, or give an explicit vertex_id argument to write_graphviz, to be able to use write_graphviz.
My ...
1
vote
1answer
77 views
Creating arrays using for loops in OpenGL
What I have to do is create a square that is made up of 8 triangles, all the same size, using arrays. The coordinates of the four corners of the square are, (-10, -10, 10), (-10, -10, -10), (10, -10, ...
1
vote
1answer
39 views
Can a ARB program(shader pair) use non ARB buffer objects and vertex arrays?
Can a ARB program(shader pair) use non ARB buffer objects and vertex arrays? Non ARB means with no extension, like NV, ATI, ARB, EXT or other.
1
vote
1answer
250 views
glVertexAttribPointer on built-in vertex attributes like gl_Vertex, gl_Normal
I have to send vertex attributes using glVertexAttribPointer to shaders expecting them as built-in (gl_Vertex, gl_Color, etc.).
The glVertexAttribPointer function needs to specify the index (or ...
1
vote
2answers
311 views
Max size for Vertex Buffer Objects (OpenGL ES 2.0)
Is there a max size for vertex buffer objects binded to GL_ARRAY_BUFFER or GL_ELEMENT_ARRAY_BUFFER???
Here's my issue. Originally, I was drawing a mesh composed of 16 submeshes. For each submesh, I ...
1
vote
1answer
280 views
OpenGL ES 2.0 with iPhone: GL_POINT_SMOOTH draws squares with ES 2.0 but works in ES 1.0
I'm trying to draw circles by using a Vertex Buffer Object to draw points with GL_POINT_SMOOTH enabled in OpenGL ES 2.0 on iPhone.
I've used the following ES 1.0 rendering code to draw circles ...
1
vote
1answer
41 views
What kind of Vertex should I create for sprites?
I am using OpenGL and C to create a 2D rendering engine. I am learning about VBOs and how to use them for non-immediate mode rendering. I have been reading from: ...
1
vote
2answers
80 views
Mesh downloaded from Google's 3D Warehouse is rendered weirdly
I downloaded this model from 3D Warehouse: http://sketchup.google.com/3dwarehouse/details?mid=a4295f6b93a3e11488961f28097fe890&prevstart=0
Now when it's imported through Open Asset Import library ...
1
vote
1answer
205 views
OpenGL Vertex buffer object, can I access the vertex data for other uses such as collision detection?
I'm currently using the GLTools classes that come along with the Superbible 5th edition. I'm looking in the GLTriangleBatch class and it has the following code:
// Create the master vertex array ...
1
vote
2answers
122 views
Why My Flatten Shader (from Lighthouse3d Tutorial) Is Not Working?
I am new to GLSL. So, I am going through a tutorial on the Web.
The tutorial has an example called the Flatten Shader, which displays the GLUT teapot as a flatten teapot. Here is the link to the ...
1
vote
1answer
149 views
multi parameter class templates and my 'vertices' class
I have defined a 'vertex' class which, when combined, form a graph.
these vertices receive input on one end and produce output on the other (both of these sides can have 0, 1, or more 'subscriptions' ...
1
vote
1answer
157 views
Queue Problem while modeling a shortest path algorithm
I have a queue problem. Modeling a graph, I'm doing a shortest path algorithm in C++.
In my while (!q.empty()) the front vertex* gets changed when I return to this statement.
Can you figure out ...
1
vote
1answer
136 views
Changing OpenGL vertex attributes in a sample
I am using this tutorial / sample to do some basic object tracking on the iPhone. Everything works fine, I even tweaked the performance a whole lot, but I am still stuck with one problem.
The basic ...
1
vote
1answer
121 views
Shaders' Performance (Vertex VS Fragment)
Simple question:
Is ALWAYS better make the hard calculations inside the Vertex Shader rather than in Fragment Shader? Even to high mesh models, with more than 100.000 polygons (assuming there are a ...
1
vote
1answer
384 views
opengl vbo texture
I am still a beginner in vbo and I want to render a collada model. After taking all the needed info from the cae file about the vertices, normals and textures and indices for the vertices, normals and ...
1
vote
1answer
284 views
Calculating face normals with 4 vertices
I can't seem to find what the equation is for calculating the normal of a 4 vertex plane in 3D. Given 4 vertices, (x1, y1, z1), (x2, y2, z2), etc. How do I calculate the normal of the surface they ...
1
vote
4answers
179 views
Flip Vertices Array
I have an array of position vertices that make up a 2D polygon.
Vector2[] _chassisConcaveVertices =
{
new Vector2(5.122f, 0.572f),
new Vector2(3.518f, 0.572f),
...
1
vote
2answers
326 views
Correct way to create objects in opengl?
I am really really new to opengl, and I am learning basics now. I have a high level question.
If I want to create an object, say a column which are all the options?
Import a 3D mesh from any ...
1
vote
2answers
137 views
Directx vertex rendering: unable to get texture to display correctly for trapetzoids
I'm trying to create 3d effect using vertex and index buffers in 2d (z-coord is 0) using DirectX7.
It's easier to explain with a picture:
The problem is that the lines are broken. They should be ...
1
vote
2answers
219 views
Struggling With Vertex And Index Buffers In Direct3D
I've tried for many months to learn how IDirect3DVertexBuffer9 and IDirect3DIndexBuffer9 work. I've read multiple books, e-books and forums and I still can't get the hang of how they work. Can ...
1
vote
1answer
421 views
Difference between using VertexPositionNormalTexture and VertexPositionTexture
What are the differences between using VertexPositionNormalTexture and VertexPositionTexture in XNA? Does the GPU apply culling if the normal points away from the camera, or does it do that ...
1
vote
1answer
234 views
Managed Direct3DX Mesh Vertex / Index limit?
I have some code that generates a landscape, transforms it into a mesh and then renders it.
The landscape is based on a three-dimensional table and generates 4 vertices per positive table entry. I ...
1
vote
2answers
413 views
Render arbitrary polygon with XNA
Looking for a simple way to render a list of arbitrary vertices (on a 2d plane) ... I'm guessing that I'll have to do some sort of tessellation, and will have to deal with concave/convex polygons. Not ...