OgreD3D11HardwareIndexBuffer.h
Go to the documentation of this file.
1 /*
2 -----------------------------------------------------------------------------
3 This source file is part of OGRE
4 (Object-oriented Graphics Rendering Engine)
5 For the latest info, see http://www.ogre3d.org/
6 
7 Copyright (c) 2000-2013 Torus Knot Software Ltd
8 
9 Permission is hereby granted, free of charge, to any person obtaining a copy
10 of this software and associated documentation files (the "Software"), to deal
11 in the Software without restriction, including without limitation the rights
12 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 copies of the Software, and to permit persons to whom the Software is
14 furnished to do so, subject to the following conditions:
15 
16 The above copyright notice and this permission notice shall be included in
17 all copies or substantial portions of the Software.
18 
19 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 THE SOFTWARE.
26 -----------------------------------------------------------------------------
27 */
28 #ifndef __D3D11HARDWAREINDEXBUFFER_H__
29 #define __D3D11HARDWAREINDEXBUFFER_H__
30 
31 #include "OgreD3D11Prerequisites.h"
33 
34 
35 namespace Ogre {
36 
37 
39  {
40  protected:
42  // have to implement these, but do nothing as overridden lock/unlock
43  void* lockImpl(size_t offset, size_t length, LockOptions options) {return 0;}
44  void unlockImpl(void) {}
45 
46  public:
47  D3D11HardwareIndexBuffer(HardwareBufferManagerBase* mgr, IndexType idxType, size_t numIndexes,
48  HardwareBuffer::Usage usage, D3D11Device & device, bool useSystemMem, bool useShadowBuffer);
50 
51  // override all data-gathering methods
52  void* lock(size_t offset, size_t length, LockOptions options);
53  void unlock(void);
54  void readData(size_t offset, size_t length, void* pDest);
55  void writeData(size_t offset, size_t length, const void* pSource,
56  bool discardWholeBuffer = false);
57 
58  void copyData(HardwareBuffer& srcBuffer, size_t srcOffset,
59  size_t dstOffset, size_t length, bool discardWholeBuffer = false);
60  bool isLocked(void) const;
61 
63  bool releaseIfDefaultPool(void);
65  bool recreateIfDefaultPool(D3D11Device & device);
66 
68  ID3D11Buffer * getD3DIndexBuffer(void) const;
69 
70 
71 
72 
73 
74  };
75 
76 
77 }
78 
79 
80 
81 #endif
82 
Ogre
Definition: OgreAndroidLogListener.h:34
Ogre::HardwareBufferManagerBase
Base definition of a hardware buffer manager.
Definition: OgreHardwareBufferManager.h:113
Ogre::D3D11HardwareIndexBuffer::D3D11HardwareIndexBuffer
D3D11HardwareIndexBuffer(HardwareBufferManagerBase *mgr, IndexType idxType, size_t numIndexes, HardwareBuffer::Usage usage, D3D11Device &device, bool useSystemMem, bool useShadowBuffer)
Ogre::D3D11HardwareIndexBuffer::unlockImpl
void unlockImpl(void)
Internal implementation of unlock()
Definition: OgreD3D11HardwareIndexBuffer.h:44
Ogre::D3D11HardwareIndexBuffer::releaseIfDefaultPool
bool releaseIfDefaultPool(void)
For dealing with lost devices - release the resource if in the default pool.
Ogre::D3D11HardwareIndexBuffer::isLocked
bool isLocked(void) const
OgreHardwareIndexBuffer.h
Ogre::D3D11HardwareIndexBuffer::getD3DIndexBuffer
ID3D11Buffer * getD3DIndexBuffer(void) const
Get the D3D-specific index buffer.
Ogre::D3D11HardwareIndexBuffer::copyData
void copyData(HardwareBuffer &srcBuffer, size_t srcOffset, size_t dstOffset, size_t length, bool discardWholeBuffer=false)
Copy data from another buffer into this one.
Ogre::D3D11HardwareIndexBuffer::lock
void * lock(size_t offset, size_t length, LockOptions options)
Lock the buffer for (potentially) reading / writing.
Ogre::D3D11HardwareIndexBuffer::~D3D11HardwareIndexBuffer
~D3D11HardwareIndexBuffer()
Ogre::D3D11HardwareIndexBuffer::readData
void readData(size_t offset, size_t length, void *pDest)
Reads data from the buffer and places it in the memory pointed to by pDest.
Ogre::HardwareIndexBuffer
Specialisation of HardwareBuffer for vertex index buffers, still abstract.
Definition: OgreHardwareIndexBuffer.h:46
Ogre::D3D11Device
Definition: OgreD3D11Device.h:36
OgreD3D11Prerequisites.h
Ogre::D3D11HardwareIndexBuffer::mBufferImpl
D3D11HardwareBuffer * mBufferImpl
Definition: OgreD3D11HardwareIndexBuffer.h:41
Ogre::D3D11HardwareIndexBuffer
Definition: OgreD3D11HardwareIndexBuffer.h:38
Ogre::HardwareIndexBuffer::IndexType
IndexType
Definition: OgreHardwareIndexBuffer.h:49
Ogre::D3D11HardwareIndexBuffer::lockImpl
void * lockImpl(size_t offset, size_t length, LockOptions options)
Internal implementation of lock()
Definition: OgreD3D11HardwareIndexBuffer.h:43
Ogre::D3D11HardwareIndexBuffer::unlock
void unlock(void)
Releases the lock on this buffer.
Ogre::D3D11HardwareIndexBuffer::writeData
void writeData(size_t offset, size_t length, const void *pSource, bool discardWholeBuffer=false)
Writes data to the buffer from an area of system memory; note that you must ensure that your buffer i...
Ogre::HardwareBuffer
Abstract class defining common features of hardware buffers.
Definition: OgreHardwareBuffer.h:74
Ogre::D3D11HardwareBuffer
Base implementation of a D3D11 buffer, dealing with all the common aspects.
Definition: OgreD3D11HardwareBuffer.h:40
Ogre::HardwareBuffer::Usage
Usage
Enums describing buffer usage; not mutually exclusive.
Definition: OgreHardwareBuffer.h:79
Ogre::D3D11HardwareIndexBuffer::recreateIfDefaultPool
bool recreateIfDefaultPool(D3D11Device &device)
For dealing with lost devices - recreate the resource if in the default pool.
Ogre::HardwareBuffer::LockOptions
LockOptions
Locking options.
Definition: OgreHardwareBuffer.h:121

Copyright © 2012 Torus Knot Software Ltd
Creative Commons License
This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License.
Last modified Tue Apr 13 2021 08:53:15