/usr/include/OGRE/OgreCompositionTechnique.h is in libogre-1.8-dev 1.8.0+dfsg1-7+b1.
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 | /*
-----------------------------------------------------------------------------
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 __CompositionTechnique_H__
#define __CompositionTechnique_H__
#include "OgrePrerequisites.h"
#include "OgrePixelFormat.h"
#include "OgreIteratorWrappers.h"
namespace Ogre {
/** \addtogroup Core
* @{
*/
/** \addtogroup Effects
* @{
*/
/** Base composition technique, can be subclassed in plugins.
*/
class _OgreExport CompositionTechnique : public CompositorInstAlloc
{
public:
CompositionTechnique(Compositor *parent);
virtual ~CompositionTechnique();
//The scope of a texture defined by the compositor
enum TextureScope {
//Local texture - only available to the compositor passes in this technique
TS_LOCAL,
//Chain texture - available to the other compositors in the chain
TS_CHAIN,
//Global texture - available to everyone in every scope
TS_GLOBAL
};
/// Local texture definition
class TextureDefinition : public CompositorInstAlloc
{
public:
String name;
//Texture definition being a reference is determined by these two fields not being empty.
String refCompName; //If a reference, the name of the compositor being referenced
String refTexName; //If a reference, the name of the texture in the compositor being referenced
size_t width; // 0 means adapt to target width
size_t height; // 0 means adapt to target height
float widthFactor; // multiple of target width to use (if width = 0)
float heightFactor; // multiple of target height to use (if height = 0)
PixelFormatList formatList; // more than one means MRT
bool fsaa; // FSAA enabled; true = determine from main target (if render_scene), false = disable
bool hwGammaWrite; // Do sRGB gamma correction on write (only 8-bit per channel formats)
uint16 depthBufferId;//Depth Buffer's pool ID. (unrelated to "pool" variable below)
bool pooled; // whether to use pooled textures for this one
TextureScope scope; // Which scope has access to this texture
TextureDefinition() :width(0), height(0), widthFactor(1.0f), heightFactor(1.0f),
fsaa(true), hwGammaWrite(false), depthBufferId(1), pooled(false), scope(TS_LOCAL) {}
};
/// Typedefs for several iterators
typedef vector<CompositionTargetPass *>::type TargetPasses;
typedef VectorIterator<TargetPasses> TargetPassIterator;
typedef vector<TextureDefinition*>::type TextureDefinitions;
typedef VectorIterator<TextureDefinitions> TextureDefinitionIterator;
/** Create a new local texture definition, and return a pointer to it.
@param name Name of the local texture
*/
TextureDefinition *createTextureDefinition(const String &name);
/** Remove and destroy a local texture definition.
*/
void removeTextureDefinition(size_t idx);
/** Get a local texture definition.
*/
TextureDefinition *getTextureDefinition(size_t idx);
/** Get a local texture definition with a specific name.
*/
TextureDefinition *getTextureDefinition(const String& name);
/** Get the number of local texture definitions.
*/
size_t getNumTextureDefinitions();
/** Remove all Texture Definitions
*/
void removeAllTextureDefinitions();
/** Get an iterator over the TextureDefinitions in this Technique. */
TextureDefinitionIterator getTextureDefinitionIterator(void);
/** Create a new target pass, and return a pointer to it.
*/
CompositionTargetPass *createTargetPass();
/** Remove a target pass. It will also be destroyed.
*/
void removeTargetPass(size_t idx);
/** Get a target pass.
*/
CompositionTargetPass *getTargetPass(size_t idx);
/** Get the number of target passes.
*/
size_t getNumTargetPasses();
/** Remove all target passes.
*/
void removeAllTargetPasses();
/** Get an iterator over the TargetPasses in this Technique. */
TargetPassIterator getTargetPassIterator(void);
/** Get output (final) target pass
*/
CompositionTargetPass *getOutputTargetPass();
/** Determine if this technique is supported on the current rendering device.
@param allowTextureDegradation True to accept a reduction in texture depth
*/
virtual bool isSupported(bool allowTextureDegradation);
/** Assign a scheme name to this technique, used to switch between
multiple techniques by choice rather than for hardware compatibility.
*/
virtual void setSchemeName(const String& schemeName);
/** Get the scheme name assigned to this technique. */
const String& getSchemeName() const { return mSchemeName; }
/** Set the name of the compositor logic assigned to this technique.
Instances of this technique will be auto-coupled with the matching logic.
*/
void setCompositorLogicName(const String& compositorLogicName)
{ mCompositorLogicName = compositorLogicName; }
/** Get the compositor logic name assigned to this technique */
const String& getCompositorLogicName() const { return mCompositorLogicName; }
/** Get parent object */
Compositor *getParent();
private:
/// Parent compositor
Compositor *mParent;
/// Local texture definitions
TextureDefinitions mTextureDefinitions;
/// Intermediate target passes
TargetPasses mTargetPasses;
/// Output target pass (can be only one)
CompositionTargetPass *mOutputTarget;
/// Optional scheme name
String mSchemeName;
/// Optional compositor logic name
String mCompositorLogicName;
};
/** @} */
/** @} */
}
#endif
|