Tagged Questions

6
votes
4answers
1k views

Multiple meshes in one vertex buffer?

Do I need to use one vertex buffer per mesh, or can I store multiple meshes in one vertex buffer? If so, should I do it, and how would I do it?
4
votes
1answer
832 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 ...
3
votes
1answer
3k views

openGL glDrawElements with interleaved buffers

Thus far i have only used glDrawArrays and would like to move over to using an index buffer and indexed triangles. I am drawing a somewhat complicated object with texture coords, normals and vertex ...
2
votes
1answer
162 views

Memory management for vertex buffer data

Assume that I need to render static picture (100 stars). I generate star data (position, color, size) to std::vector stars; Then I create a class for D3D rendering, which consist a buffer: ...
2
votes
2answers
555 views

Code Assist, OpenGL VAO/VBO Classes not drawing

Edit II: Current Code works great! Thanks everyone. I went ahead and included my shader code for reference at the bottom though they do absolutely nothing at this point really. I am trying to ...
1
vote
1answer
333 views

How to call glDrawElements with static TexCoords and Dynamic Vertices

I'm using the glDrawElements call with VBOs to render my scene. The scene is a cloth with vertices and texture coordinates - in this example, I'm rendering a flag. With my scene, the vertices are ...
1
vote
2answers
571 views

OpenGL: problem with vertex indices buffer

I just started using VBOs, and everything seems to be fine except for the vertex indices buffer. If I call glDrawElements after enabling the indices buffer I get an access violation error (can't find ...
1
vote
1answer
212 views

Using Vertex Buffer Objects with C++ OpenGL

I am working on a 3d tile-based strategy game and have read that implementing VBO's will significantly increase the game's frame rate and reduce the cpu usage (sounds great right?). However, among ...
1
vote
1answer
364 views

Using OpenGL vertex buffers in C++

I've loaded a Wavefront .obj file and drawn it in immediate mode, and it works fine. I'm now trying to draw the same model with a vertex buffer, but I have a question. My model data is organized in ...
1
vote
2answers
142 views

How do I get the length of a VBO to render all vertices when using glDrawArrays()?

I create a VBO in a function and I only want to return the VBO id. I use glDrawArrays in another function and I want it to draw all the vertices in the VBO without needing to also pass the number of ...
0
votes
1answer
112 views

Direct3D C++ texture mapping

Hey guys can anybody help me with texture mapping in Direct3D C++. I have created a basic game and want to texture the enviroment. I have looked at numerous online tutorials but have had no luck so ...
0
votes
1answer
145 views

DirectX: Small distortion between 2 sprite polygons

Hello I use the same way to render sprites with directx from a long time but here I am rendering the screen in a texture and then render it with a big sprite on the screen. For the camera I use that: ...
0
votes
2answers
286 views

Vertex Buffer Objects Open GL

I am really new to Open GL and I am trying to build non deprecated code. Now what I can't grasp is VBO. This is all I got so far, can you please explain what I'm supposed to be doing. Also, I have the ...
0
votes
1answer
958 views

Rendering different triangle types and triangle fans using vertex buffer objects? (OpenGL)

About half of my meshes are using triangles, another half using triangle fans. I'd like to offload these into a vertex buffer object but I'm not quite sure how to do this. The triangle fans all have ...
-2
votes
1answer
62 views

the Direct3D VertexBuffer Lock() and Unlock() function implemented by different D3DPOOL

the IDirect3DVertexBuffer9 has that methods STDMETHOD(Lock)(THIS_ UINT OffsetToLock,UINT SizeToLock,void** ppbData,DWORD Flags) PURE STDMETHOD(Unlock)(THIS) PURE I don't know the internal ...