/usr/include/OGRE/RenderSystems/GL/OgreGLFBORenderTexture.h is in libogre-dev 1.7.4-3.
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 | /*
-----------------------------------------------------------------------------
This source file is part of OGRE
(Object-oriented Graphics Rendering Engine)
For the latest info, see http://www.ogre3d.org/
Copyright (c) 2000-2011 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 __OgreGLFBORTT_H__
#define __OgreGLFBORTT_H__
#include "OgreGLRenderTexture.h"
#include "OgreGLContext.h"
#include "OgreGLFrameBufferObject.h"
/// Extra GL constants
#define GL_DEPTH24_STENCIL8_EXT 0x88F0
namespace Ogre {
class GLFBOManager;
/** RenderTexture for GL FBO
*/
class _OgreGLExport GLFBORenderTexture: public GLRenderTexture
{
public:
GLFBORenderTexture(GLFBOManager *manager, const String &name, const GLSurfaceDesc &target, bool writeGamma, uint fsaa);
virtual void getCustomAttribute(const String& name, void* pData);
/// Override needed to deal with multisample buffers
virtual void swapBuffers(bool waitForVSync = true);
protected:
GLFrameBufferObject mFB;
};
/** Factory for GL Frame Buffer Objects, and related things.
*/
class _OgreGLExport GLFBOManager: public GLRTTManager
{
public:
GLFBOManager(bool atimode);
~GLFBOManager();
/** Bind a certain render target if it is a FBO. If it is not a FBO, bind the
main frame buffer.
*/
void bind(RenderTarget *target);
/** Unbind a certain render target. No-op for FBOs.
*/
void unbind(RenderTarget *target) {};
/** Get best depth and stencil supported for given internalFormat
*/
void getBestDepthStencil(GLenum internalFormat, GLenum *depthFormat, GLenum *stencilFormat);
/** Create a texture rendertarget object
*/
virtual GLFBORenderTexture *createRenderTexture(const String &name,
const GLSurfaceDesc &target, bool writeGamma, uint fsaa);
/** Create a multi render target
*/
virtual MultiRenderTarget* createMultiRenderTarget(const String & name);
/** Request a render buffer. If format is GL_NONE, return a zero buffer.
*/
GLSurfaceDesc requestRenderBuffer(GLenum format, size_t width, size_t height, uint fsaa);
/** Request the specify render buffer in case shared somewhere. Ignore
silently if surface.buffer is 0.
*/
void requestRenderBuffer(const GLSurfaceDesc &surface);
/** Release a render buffer. Ignore silently if surface.buffer is 0.
*/
void releaseRenderBuffer(const GLSurfaceDesc &surface);
/** Check if a certain format is usable as FBO rendertarget format
*/
bool checkFormat(PixelFormat format) { return mProps[format].valid; }
/** Get a FBO without depth/stencil for temporary use, like blitting between textures.
*/
GLuint getTemporaryFBO() { return mTempFBO; }
private:
/** Frame Buffer Object properties for a certain texture format.
*/
struct FormatProperties
{
bool valid; // This format can be used as RTT (FBO)
/** Allowed modes/properties for this pixel format
*/
struct Mode
{
size_t depth; // Depth format (0=no depth)
size_t stencil; // Stencil format (0=no stencil)
};
vector<Mode>::type modes;
};
/** Properties for all internal formats defined by OGRE
*/
FormatProperties mProps[PF_COUNT];
/** Stencil and depth renderbuffers of the same format are re-used between surfaces of the
same size and format. This can save a lot of memory when a large amount of rendertargets
are used.
*/
struct RBFormat
{
RBFormat(GLenum inFormat, size_t inWidth, size_t inHeight, uint fsaa):
format(inFormat), width(inWidth), height(inHeight), samples(fsaa)
{}
GLenum format;
size_t width;
size_t height;
uint samples;
// Overloaded comparison operator for usage in map
bool operator < (const RBFormat &other) const
{
if(format < other.format)
{
return true;
}
else if(format == other.format)
{
if(width < other.width)
{
return true;
}
else if(width == other.width)
{
if(height < other.height)
return true;
else if (height == other.height)
{
if (samples < other.samples)
return true;
}
}
}
return false;
}
};
struct RBRef
{
RBRef(){}
RBRef(GLRenderBuffer *inBuffer):
buffer(inBuffer), refcount(1)
{ }
GLRenderBuffer *buffer;
size_t refcount;
};
typedef map<RBFormat, RBRef>::type RenderBufferMap;
RenderBufferMap mRenderBufferMap;
// map(format, sizex, sizey) -> [GLSurface*,refcount]
/** Temporary FBO identifier
*/
GLuint mTempFBO;
/// Buggy ATI driver?
bool mATIMode;
/** Detect allowed FBO formats */
void detectFBOFormats();
GLuint _tryFormat(GLenum depthFormat, GLenum stencilFormat);
bool _tryPackedFormat(GLenum packedFormat);
};
}
#endif
|