The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
47 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
30 views

How to draw vertices in a vertex buffer in another color

I'm using Direct3D 9 to draw lines. The vertices I am using now have the format D3DFVF_XYZ|D3DFVF_DIFFUSE and are stored in a vertex buffer. They are drawn with DrawPrimitive as D3DPT_LINELIST. How ...
0
votes
2answers
41 views

Dynamic or Static vertex buffer?

I'm writing a directx app and want to overlay a grid on the front of the scene. The grid will possibly update every frame but will be something like 20 horizontal lines and 20 vertical lines ...
0
votes
1answer
25 views

VertexBuffer3d or ExternalInterface is too slow, how can I optimize?

I'm finding some problems uploading a VertexBuffer to the context. This buffer is ~200000 items long and it takes about +15 seconds, apparently the player has some difficulties uploading it to the ...
1
vote
2answers
71 views

Optimization using VBO in OpenGL ES 2.0

My system is composed of several objects that represent quads. Each quad is represented by the same vertices and therefore, each object only stores matrices that represent the object's transformation ...
1
vote
0answers
46 views

XNA 4 VertexPositionTexture triangleStrip sporadically disappearing

I am drawing a traingleStrip using VertexPositionTexture and BasicEffect that extends from the first person perspective of the screen out a certain distance on the Z axis. In a loop I pass start and ...
0
votes
1answer
49 views

VertexBufferObject with interleaved normals

I have a working Vertex-Buffer-Object but I need to add the normals. The normales are stored in the same array as the vertex positons. They are interleaved Vx Vy Vz Nx Ny Nz This is my code so ...
0
votes
1answer
75 views

OpenGL Vertex Buffer Object does not work

I have a bunny.h which contains the following data: bunny[] | vertex coordinates xyz NUM_TRIANGLES | the amount of triangles for the bunny normals[] | the normals for each triangle triangles[] | ...
0
votes
1answer
54 views

opengl es, ios and triangle fans

I am currently rendering a scene using triangles with the following code: glBindVertexArrayOES(_mVertexArrayObjectTriangles); glBindBuffer(GL_ARRAY_BUFFER, ...
0
votes
0answers
96 views

pyopengl - dynamically updating values in a vertex buffer object

I'd like to create polygons with draggable vertices in PyOpenGL. Having read around a bit, VBOs seemed like a sensible way to achieve this. Having never used VBOs before, I'm having trouble figuring ...
0
votes
0answers
58 views

iOS - OpenGL ES - glDrawArrays() throws EXC_BAD_ACCESS when used with 3rd Party Rendering SDK

I have a working iOS project which renders a camera texture background and a cube on an AR marker without issue. When I introduce a 3rd party 3D graphics lib which I know works fine (it renders ...
1
vote
0answers
83 views

Vertex buffers and rendering problems

I am trying to approximate a curved surface using quadrilateral patches. I did it using straight forward rendering using GL_QUADS and specifying the four vertices of the quad patch. Now I am trying ...
1
vote
2answers
168 views

Merging a Sphere and Cylinder

I want to render a spring using spheres and cylinders. Each Cylinder has two Spheres at each end and all the cylinders are placed along the spring centre line. I could achieve this .. and rendering is ...
0
votes
1answer
78 views

CPU bound rendering on iPad 3

I'm getting some surprising results rendering large model (around 130K verts) on iO6/iPad3. Here is the background information: 130k verts, non interleaved (bad I know), in 5 batches drawn with ...
0
votes
2answers
68 views

VBO: Array not drawn

I'm following this guide and I'm trying to draw a quad to the screen. I also saw the source code, it's the same and it should work, but in my case nothing is displayed on the screen. I'm using OpenGL ...
0
votes
1answer
634 views

OpenGL binding textures to vertex buffer objects (with CG Shaders)

I'll get straight to the point: I have created a structure for my vertices: struct Vertex3D { Vector3D position; Vector2D textureCoordinate; Vector3D normal; } I then import a ...
1
vote
1answer
120 views

Proper way to create an untextured, colored cube in XNA?

I'm currently trying to convert this code to C# XNA, however I'm having an issue with converting the CreateCube method - the resources on creating vertex lists in XNA seem to be outdated, dead, or ...
3
votes
1answer
191 views

Drawing a large number of identical models using vertex buffers?

I am facing a problem that many developers as have probably found a solution. I have a small project with a floor designed with small cubes (100X100). If I exceed this limit, my game suffered major ...
-2
votes
1answer
107 views

OpenGl crashes when adding vertices

Whenever I add vertices to my vertex array, my application crashes. Here is the code: const GLKVector3 Vertices[] = { //8,9,0 LASH_BOTTOM_LEFT, LASH_BOTTOM_RIGHT, RECT_BOTTOM_L, //9,1,0 ...
6
votes
2answers
803 views

OpenGL. Updating vertex buffer with glBufferData

I'm using OpenGL to implement some kind of batched drawing. For this I create a vertex buffer to store data. Note: this buffer generally will update on each frame, but will never decrease size (but ...
0
votes
0answers
103 views

Drawing using Dynamic Array and Buffer Object

I have a problem when creating the vertex array and the indices array. I don't know what really is the problem with the code, but I guess is something with the type of the arrays, can someone please ...
1
vote
2answers
106 views

OpenGL - How to transform a subset of a vertex in a vertex buffer?

float linePos[6]={0.0f,5.0f,0.0f,0.0f,30.0f,0.0f}; ... glGenBuffers(1, &buffer); glBindBuffer(GL_ARRAY_BUFFER, buffer); glBufferData(GL_ARRAY_BUFFER, sizeof(float)*3*2, linePos, ...
2
votes
1answer
70 views

My XNA app doesn't render correctly

I'm trying to render a triangle using custom vertex data in XNA, but the output is totally messed up: My GPU (Radeon HD7610M) supports DX11. Either I am doing something wrong or it's my GPU ...
1
vote
2answers
394 views

Can't create vertex buffer

I have a Windows Phone 8 C#/XAML project with DirectX component. I'm trying to rendering some particles. I create a vertex buffer, which I saw it go into the function to create, but when it gets to an ...
3
votes
2answers
225 views

C++: OpenGL, glm and struct padding

can I safely use the glm::* types (e.g. vec4, mat4) to fill a vertex buffer object ? std::vector<glm::vec3> vertices; glBufferData(GL_ARRAY_BUFFER, sizeof(glm::vec3) * vertices.size(), ...
1
vote
0answers
369 views

OpenGL glTexCoordPointer seemingly not applying texture

I have the code: glBindTexture( GL_TEXTURE_2D, texture ); glBindBuffer(GL_ARRAY_BUFFER, triangleVBO); glBufferData(GL_ARRAY_BUFFER, sizeof( vertices ), vertices , GL_STATIC_DRAW); ...
2
votes
2answers
256 views

glMapBuffer Returns 0x00000000 constantly

I have initialized glewInit( ) and any other openGL stuff. all before i do any of these calls. glGenBuffers( 1, &m_uiVertBufferHandle ); glBindBuffer( GL_ARRAY_BUFFER, m_uiVertBufferHandle ); ...
3
votes
1answer
302 views

How to get VBOs to work with Python and PyOpenGL

The following Python program should draw a white triangle in the upper right quadrant of the window. import pygame from OpenGL.GL import * from ctypes import * pygame.init () screen = ...
1
vote
2answers
113 views

VBO on OpenGL ES 2.0 Not Showing Anything

I am learning OpenGL ES . I have successfully drawn some cubes, understanding basic matrices logic behind for camera location, etc. Right now I am trying to build an example for VBO but It is not ...
0
votes
0answers
350 views

How do OpenGL 3D engines typically organize meshes / models in VBOs and VAOs? [closed]

So I'm wondering what's the best way to store 3D models in GPU memory. Consider a simple scenario: our world has only one car model, say Honda Civic. We load an .obj file for this and store its data ...
2
votes
2answers
516 views

Why does OpenGL's glDrawArrays() fail with GL_INVALID_OPERATION under Core Profile 3.2, but not 3.3 or 4.2?

I have OpenGL rendering code calling glDrawArrays that works flawlessly when the OpenGL context is (automatically / implicitly obtained) 4.2 but fails consistently (GL_INVALID_OPERATION) with an ...
1
vote
2answers
183 views

Z-fighting Direct3D9, only with dynamic buffer

I lock and fill a vertex buffer every frame in Direct3d9 with data from my blendshape code. My shading uses two steps, so I render once with one shader, then draw an additive blend with my other ...
1
vote
1answer
202 views

OpenGL GL_POLYGON Not Functioning Properly

I have an OpenGL-related issue. Whenever I attempt to draw a simple polygon using four vertices from a vertex buffer... nothing happens. However, it will draw the shape in GL_TRIANGLES or ...
0
votes
2answers
257 views

Memory usage keeps increasing over time (GLKit - iOS)

I've almost finished my app. One of the views uses GLKit. I just have a problem with memory. Basically what happens is that when GLKView is displayed, the memory consumption constantly rises (seen ...
2
votes
1answer
220 views

How does VAO keep buffer bindings?

I am struggling to understand how exactly VAO is handling buffer mapping. What I'm doing could be described in this pseudocode: SetUp: BindVAO BindArrayBuffer glBufferData(GL_ARRAY_BUFFER, ...
2
votes
1answer
700 views

How do I properly update a vertex array in OpenGL Es 2.0?

When I update my vertex array on iOS in OpenGL 2.0, the original vertex data is staying on the screen -- ie the 1st flush is persistent (the initial set of points I sent down to the GPU gets rendered ...
1
vote
1answer
171 views

In the stock OpenGL ES app on iOS 5.1, are they really using the vertex arrays they declare?

In the stock OpenGL ES app you get (when you create a new "OpenGL game" in XCode), in the setupGL function, there is: glEnable(GL_DEPTH_TEST); //glGenVertexArraysOES( 1, &_vertexArray ) ; // ...
0
votes
1answer
260 views

Binding a second vertex buffer seems to spoil my first vertex buffer, OpenGL OES ios 5.1

I'm creating two different vertex buffers, that use two different shaders to render them. As soon as I bind the second vertex buffer, the data I parked in the first vertex buffer seems to be ...
1
vote
1answer
183 views

How do you use glVerttexAttribPointer in conjunction with glBufferData?

In the stock "rotating cube" OpenGL example for iOS 5, they have this code: glBufferData(GL_ARRAY_BUFFER, sizeof(gCubeVertexData), gCubeVertexData, GL_STATIC_DRAW); ...
3
votes
1answer
920 views

Updating vertex data in a VBO (glBufferSubData vs glMapBuffer)

I want to update an object's list of vertices after a VBO has been created. I've seen both glBufferSubData and glMapBuffer and they both appear to do similar things, which means I'm now unsure which ...
1
vote
2answers
162 views

How does OpenGL know what type each vertex buffer object is?

I've just read through a tutorial about Vertex Array Objects and Vertex Buffer Objects, and I can't work out from the following code how OpenGL knows the first VBO (vertexBufferObjID[0]) represents ...
0
votes
0answers
219 views

Rendering a triangle using VBO in android and using EGL

I could use vertex and fragment shader to draw a triangle. I need to try out VBO now. I am building upon the existing code present in $Mydroid/frameworks/base/opengl/tests/gl2_basic/ I modified my ...
0
votes
0answers
21 views

modifying a meshbuffer per-frame

I have a mesh created using ID3DX10MeshBuffer. I can easily read the the vertices in this buffer at any frame by calling 'Map' on the buffer. But if I make any changes to the buffer, the changes ...
0
votes
1answer
601 views

Dynamic Vertexbuffer in SharpDX

I have massive Problems figuring out how to set up a dynamic VertexBuffer and IndexBuffer using SharpDX. I have to generate Triangles where ever the User presses on the Screen. I think i have to set ...
0
votes
0answers
55 views

opengl vbo and glsolidsphere both in render loop

In my drawing loop, I'm drawing one model with vbo and another model is just a sphere so I'm drawing this with just glSolidSphere call. The problem is, It seems depth checking is not enabled. I tried ...
0
votes
0answers
239 views

opengl vertex buffer

What is the efficient way of using VertexBuffers? I'm drawing a simple cube (link to code). Ideally it should be such that I load the vertices onto the gpu once and then I don't have to copy them to ...
0
votes
1answer
276 views

NEWBIE: Drawing an OpenGL ES shape using an ordered vertex array

I'm new to OpenGL ES, but quite experienced with Objective-C and iOS development. I've so far had no problem drawing and coloring shapes using vertex buffer objects, by defining an array of vertices ...
1
vote
2answers
79 views

Can't get D3DPT_TRIANGLELIST to work

I have a problem when I try to use D3DPT_TRIANGLELIST. The following sample is from a book, so I don't see what the problem can be. VertexData: ColorVertex *v; ...
0
votes
1answer
198 views

glMultiDrawElements: Values to pass to “indices” parameter (GLvoid**)

I had to convert some code (which deals with building a VBO of data for the outlines of 2D shapes, i.e. they are not just triangle meshes, they can be an arbitrary length polygon outline) from using ...
0
votes
1answer
597 views

OpenGL Batching: Why does my draw call exceed array buffer bounds?

I trying to implement some relatively simple 2D sprite batching in OpenGL ES 2.0 using vertex buffer objects. However, my geometry is not drawing correctly and some error I can't seem to locate is ...

1 2 3