Tagged Questions

4
votes
1answer
837 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 ...
2
votes
2answers
354 views

PIX Call that Previously Succeeded Failed During Playback error on IASetVertexBuffers()

I'm trying to debug the shaders in a SlimDX DirectX11 game I've been coding for a while. The code runs fine and executes without a hitch (albeit seemingly ignoring my textures) and when I run an ...
1
vote
1answer
105 views

using setvertexdeclaration with fixed-function pipeline in directx 9

I am trying to use my own vertex structure, upload the vertices into a vertex buffer (indices into index buffer, without FVF code), set up the vertex declaration and stream source and use, and draw ...
1
vote
2answers
686 views

How to compute bounding box/sphere across multiple meshes (C#)

I load multiple meshs from .x files in different mesh variables. Now I would like to calculate the bounding sphere across all the meshes I have loaded (and which are being displayed) Please guide me ...
0
votes
1answer
114 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
146 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
581 views

XNA/DirectX: Should you always use indices?

I'm implementing billboards for vegetation where a billboard is of course a single quad consisting of two triangles. The vertex data is stored in a vertex buffer, but should I bother with indices? I ...
-2
votes
1answer
64 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 ...