ID3DXSkinMesh::LockIndexBuffer
Locks an index buffer and obtains a pointer to the index buffer memory.
HRESULT LockIndexBuffer(
DWORD Flags,
BYTE** ppData
);
Parameters
- Flags
- [in] A combination of one or more locking flags, describing how the index buffer memory should be locked.
- D3DLOCK_DISCARD
- The application overwrites, with a write-only operation, every location within the region being locked. This enables resources stored in non-native formats to save the decompression step.
- D3DLOCK_NOOVERWRITE
- Indicates that no indices that were referred to in drawing calls since the start of the frame or the last lock without this flag will be modified during the lock. This can enable optimizations when the application is only appending data to the index buffer.
- D3DLOCK_NOSYSLOCK
- The default behavior of a video memory lock is to reserve a system-wide critical section, guaranteeing that no display mode changes will occur for the duration of the lock. This flag causes the system-wide critical section not to be held for the duration of the lock.
The lock operation is slightly more expensive, but can enable the system to perform other duties, such as moving the mouse cursor. This flag is useful for long duration locks, such as the lock of the back buffer for software rendering that would otherwise adversely affect system responsiveness.
- D3DLOCK_READONLY
- The application will not write to the buffer. This enables resources stored in non-native formats to save the recompression step when unlocking.
- ppData
- [out, retval] Address of a pointer to an array of BYTE values, filled with the returned index data.
Return Values
If the method succeeds, the return value is D3D_OK.
If the method fails, the return value can be D3DERR_INVALIDCALL.
Remarks
When working with index buffers, you are allowed to make multiple lock calls; however, you must ensure that the number of lock calls match the number of unlock calls. DrawPrimitive calls will not succeed with any outstanding lock count on any currently set index buffer.
Requirements
Header: Declared in D3dx8mesh.h.
Import Library: Use D3dx8.lib.
See Also
ID3DXSkinMesh::UnlockIndexBuffer