/usr/include/OGRE/OgreHardwarePixelBuffer.h is in libogre-1.8-dev 1.8.1+dfsg-0ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 | /*
-----------------------------------------------------------------------------
This source file is part of OGRE
(Object-oriented Graphics Rendering Engine)
For the latest info, see http://www.ogre3d.org/
Copyright (c) 2000-2012 Torus Knot Software Ltd
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-----------------------------------------------------------------------------
*/
#ifndef __HardwarePixelBuffer__
#define __HardwarePixelBuffer__
// Precompiler options
#include "OgrePrerequisites.h"
#include "OgreHardwareBuffer.h"
#include "OgreSharedPtr.h"
#include "OgrePixelFormat.h"
#include "OgreImage.h"
namespace Ogre {
/** \addtogroup Core
* @{
*/
/** \addtogroup RenderSystem
* @{
*/
/** Specialisation of HardwareBuffer for a pixel buffer. The
HardwarePixelbuffer abstracts an 1D, 2D or 3D quantity of pixels
stored by the rendering API. The buffer can be located on the card
or in main memory depending on its usage. One mipmap level of a
texture is an example of a HardwarePixelBuffer.
*/
class _OgreExport HardwarePixelBuffer : public HardwareBuffer
{
protected:
// Extents
size_t mWidth, mHeight, mDepth;
// Pitches (offsets between rows and slices)
size_t mRowPitch, mSlicePitch;
// Internal format
PixelFormat mFormat;
// Currently locked region (local coords)
PixelBox mCurrentLock;
// The current locked box of this surface (entire surface coords)
Image::Box mLockedBox;
/// Internal implementation of lock(), must be overridden in subclasses
virtual PixelBox lockImpl(const Image::Box lockBox, LockOptions options) = 0;
/// Internal implementation of lock(), do not OVERRIDE or CALL this
/// for HardwarePixelBuffer implementations, but override the previous method
virtual void* lockImpl(size_t offset, size_t length, LockOptions options);
/// Internal implementation of unlock(), must be overridden in subclasses
// virtual void unlockImpl(void) = 0;
/** Notify TextureBuffer of destruction of render target.
Called by RenderTexture when destroyed.
*/
virtual void _clearSliceRTT(size_t zoffset);
friend class RenderTexture;
public:
/// Should be called by HardwareBufferManager
HardwarePixelBuffer(size_t mWidth, size_t mHeight, size_t mDepth,
PixelFormat mFormat,
HardwareBuffer::Usage usage, bool useSystemMemory, bool useShadowBuffer);
~HardwarePixelBuffer();
/** make every lock method from HardwareBuffer available.
See http://www.research.att.com/~bs/bs_faq2.html#overloadderived
*/
using HardwareBuffer::lock;
/** Lock the buffer for (potentially) reading / writing.
@param lockBox Region of the buffer to lock
@param options Locking options
@return PixelBox containing the locked region, the pitches and
the pixel format
*/
virtual const PixelBox& lock(const Image::Box& lockBox, LockOptions options);
/// @copydoc HardwareBuffer::lock
virtual void* lock(size_t offset, size_t length, LockOptions options);
/** Get the current locked region. This is the same value as returned
by lock(const Image::Box, LockOptions)
@return PixelBox containing the locked region
*/
const PixelBox& getCurrentLock();
/// @copydoc HardwareBuffer::readData
virtual void readData(size_t offset, size_t length, void* pDest);
/// @copydoc HardwareBuffer::writeData
virtual void writeData(size_t offset, size_t length, const void* pSource,
bool discardWholeBuffer = false);
/** Copies a box from another PixelBuffer to a region of the
this PixelBuffer.
@param dst Source pixel buffer
@param srcBox Image::Box describing the source region in src
@param dstBox Image::Box describing the destination region in this buffer
@remarks The source and destination regions dimensions don't have to match, in which
case scaling is done. This scaling is generally done using a bilinear filter in hardware,
but it is faster to pass the source image in the right dimensions.
@note Only call this function when both buffers are unlocked.
*/
virtual void blit(const HardwarePixelBufferSharedPtr &src, const Image::Box &srcBox, const Image::Box &dstBox);
/** Convenience function that blits the entire source pixel buffer to this buffer.
If source and destination dimensions don't match, scaling is done.
@param src PixelBox containing the source pixels and format in memory
@note Only call this function when the buffer is unlocked.
*/
void blit(const HardwarePixelBufferSharedPtr &src);
/** Copies a region from normal memory to a region of this pixelbuffer. The source
image can be in any pixel format supported by OGRE, and in any size.
@param src PixelBox containing the source pixels and format in memory
@param dstBox Image::Box describing the destination region in this buffer
@remarks The source and destination regions dimensions don't have to match, in which
case scaling is done. This scaling is generally done using a bilinear filter in hardware,
but it is faster to pass the source image in the right dimensions.
@note Only call this function when the buffer is unlocked.
*/
virtual void blitFromMemory(const PixelBox &src, const Image::Box &dstBox) = 0;
/** Convenience function that blits a pixelbox from memory to the entire
buffer. The source image is scaled as needed.
@param src PixelBox containing the source pixels and format in memory
@note Only call this function when the buffer is unlocked.
*/
void blitFromMemory(const PixelBox &src)
{
blitFromMemory(src, Box(0,0,0,mWidth,mHeight,mDepth));
}
/** Copies a region of this pixelbuffer to normal memory.
@param srcBox Image::Box describing the source region of this buffer
@param dst PixelBox describing the destination pixels and format in memory
@remarks The source and destination regions don't have to match, in which
case scaling is done.
@note Only call this function when the buffer is unlocked.
*/
virtual void blitToMemory(const Image::Box &srcBox, const PixelBox &dst) = 0;
/** Convience function that blits this entire buffer to a pixelbox.
The image is scaled as needed.
@param src PixelBox containing the source pixels and format in memory
@note Only call this function when the buffer is unlocked.
*/
void blitToMemory(const PixelBox &dst)
{
blitToMemory(Box(0,0,0,mWidth,mHeight,mDepth), dst);
}
/** Get a render target for this PixelBuffer, or a slice of it. The texture this
was acquired from must have TU_RENDERTARGET set, otherwise it is possible to
render to it and this method will throw an ERR_RENDERSYSTEM exception.
@param slice Which slice
@return A pointer to the render target. This pointer has the lifespan of this
PixelBuffer.
*/
virtual RenderTexture *getRenderTarget(size_t slice=0);
/// Gets the width of this buffer
size_t getWidth() const { return mWidth; }
/// Gets the height of this buffer
size_t getHeight() const { return mHeight; }
/// Gets the depth of this buffer
size_t getDepth() const { return mDepth; }
/// Gets the native pixel format of this buffer
PixelFormat getFormat() const { return mFormat; }
};
/** Shared pointer implementation used to share pixel buffers. */
class _OgreExport HardwarePixelBufferSharedPtr : public SharedPtr<HardwarePixelBuffer>
{
public:
HardwarePixelBufferSharedPtr() : SharedPtr<HardwarePixelBuffer>() {}
explicit HardwarePixelBufferSharedPtr(HardwarePixelBuffer* buf);
};
/** @} */
/** @} */
}
#endif
|