OgreGLES2HardwarePixelBuffer.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 
29 #ifndef __GLES2HardwarePixelBuffer_H__
30 #define __GLES2HardwarePixelBuffer_H__
31 
32 #include "OgreGLES2Prerequisites.h"
34 
35 namespace Ogre {
37  {
38  protected:
40  PixelBox lockImpl(const Image::Box lockBox, LockOptions options);
41 
43  void unlockImpl(void);
44 
45  // Internal buffer; either on-card or in system memory, freed/allocated on demand
46  // depending on buffer usage
48  GLenum mGLInternalFormat; // GL internal format
49  LockOptions mCurrentLockOptions;
50 
51  // Buffer allocation/freeage
52  void allocateBuffer();
53 
54  void freeBuffer();
55 
56  // Upload a box of pixels to this buffer on the card
57  virtual void upload(const PixelBox &data, const Image::Box &dest);
58 
59  // Download a box of pixels from the card
60  virtual void download(const PixelBox &data);
61 
62  public:
64  GLES2HardwarePixelBuffer(uint32 mWidth, uint32 mHeight, uint32 mDepth,
65  PixelFormat mFormat,
66  HardwareBuffer::Usage usage);
67 
69  void blitFromMemory(const PixelBox &src, const Image::Box &dstBox);
70 
72  void blitToMemory(const Image::Box &srcBox, const PixelBox &dst);
73 
74  virtual ~GLES2HardwarePixelBuffer();
75 
78  virtual void bindToFramebuffer(GLenum attachment, size_t zoffset);
79  GLenum getGLFormat() { return mGLInternalFormat; }
80  };
81 
85  {
86  public:
88  GLES2TextureBuffer(const String &baseName, GLenum target, GLuint id, GLint width, GLint height, GLint depth, GLint internalFormat,
89  GLint format, GLint face, GLint level, Usage usage, bool softwareMipmap, bool writeGamma, uint fsaa);
90  virtual ~GLES2TextureBuffer();
91 
93  virtual void bindToFramebuffer(GLenum attachment, size_t zoffset);
94 
96  RenderTexture* getRenderTarget(size_t slice);
97 
99  virtual void upload(const PixelBox &data, const Image::Box &dest);
100 
102  virtual void download(const PixelBox &data);
103 
105  virtual void blitFromMemory(const PixelBox &src_orig, const Image::Box &dstBox);
106 
108  void _clearSliceRTT(size_t zoffset)
109  {
110  mSliceTRT[zoffset] = 0;
111  }
112 
113  // Copy from framebuffer
114  void copyFromFramebuffer(size_t zoffset);
115 
117  void blit(const HardwarePixelBufferSharedPtr &src, const Image::Box &srcBox, const Image::Box &dstBox);
118  // Blitting implementation
119  void blitFromTexture(GLES2TextureBuffer *src, const Image::Box &srcBox, const Image::Box &dstBox);
120 
121 #if OGRE_PLATFORM == OGRE_PLATFORM_ANDROID
122  // Friends.
123  protected:
124  friend class GLES2Texture;
125 
126  void updateTextureId(GLuint textureID);
127 #endif
128 
129  protected:
130  // In case this is a texture level
131  GLenum mTarget;
132  GLenum mFaceTarget; // same as mTarget in case of GL_TEXTURE_xD, but cubemap face for cubemaps
133  GLuint mTextureID;
134  GLuint mBufferId;
135  GLint mFace;
136  GLint mLevel;
138 
141 
142  void buildMipmaps(const PixelBox &data);
143  };
144 
148  {
149  public:
150  GLES2RenderBuffer(GLenum format, size_t width, size_t height, GLsizei numSamples);
151  virtual ~GLES2RenderBuffer();
152 
154  virtual void bindToFramebuffer(GLenum attachment, size_t zoffset);
155 
156  protected:
157  // In case this is a render buffer
159  GLsizei mNumSamples;
160  };
161 }
162 
163 #endif
Ogre::GLES2HardwarePixelBuffer::getGLFormat
GLenum getGLFormat()
Definition: OgreGLES2HardwarePixelBuffer.h:79
Ogre::GLES2TextureBuffer::mTextureID
GLuint mTextureID
Definition: OgreGLES2HardwarePixelBuffer.h:133
Ogre::GLES2TextureBuffer::_clearSliceRTT
void _clearSliceRTT(size_t zoffset)
Notify TextureBuffer of destruction of render target.
Definition: OgreGLES2HardwarePixelBuffer.h:108
Ogre::GLES2RenderBuffer::mRenderbufferID
GLuint mRenderbufferID
Definition: OgreGLES2HardwarePixelBuffer.h:158
Ogre
Definition: OgreAndroidLogListener.h:34
Ogre::GLES2TextureBuffer::mFace
GLint mFace
Definition: OgreGLES2HardwarePixelBuffer.h:135
Ogre::GLES2TextureBuffer
Texture surface.
Definition: OgreGLES2HardwarePixelBuffer.h:84
Ogre::GLES2Texture
Definition: OgreGLES2Texture.h:41
Ogre::HardwarePixelBuffer
Specialisation of HardwareBuffer for a pixel buffer.
Definition: OgreHardwarePixelBuffer.h:53
Ogre::GLES2TextureBuffer::mFaceTarget
GLenum mFaceTarget
Definition: OgreGLES2HardwarePixelBuffer.h:132
Ogre::uint32
unsigned int uint32
Definition: OgrePlatform.h:359
Ogre::String
_StringBase String
Definition: OgrePrerequisites.h:439
OgreHardwarePixelBuffer.h
Ogre::GLES2TextureBuffer::SliceTRT
vector< RenderTexture * >::type SliceTRT
Definition: OgreGLES2HardwarePixelBuffer.h:139
Ogre::GLES2HardwarePixelBuffer
Definition: OgreGLES2HardwarePixelBuffer.h:36
Ogre::GLES2TextureBuffer::mSoftwareMipmap
bool mSoftwareMipmap
Definition: OgreGLES2HardwarePixelBuffer.h:137
Ogre::PixelFormat
PixelFormat
The pixel format used for images, textures, and render surfaces.
Definition: OgrePixelFormat.h:43
Ogre::GLES2TextureBuffer::mBufferId
GLuint mBufferId
Definition: OgreGLES2HardwarePixelBuffer.h:134
Ogre::GLES2RenderBuffer::mNumSamples
GLsizei mNumSamples
Definition: OgreGLES2HardwarePixelBuffer.h:159
Ogre::Box
Structure used to define a box in a 3-D integer space.
Definition: OgreCommon.h:659
Ogre::GLES2TextureBuffer::mTarget
GLenum mTarget
Definition: OgreGLES2HardwarePixelBuffer.h:131
Ogre::GLES2TextureBuffer::mLevel
GLint mLevel
Definition: OgreGLES2HardwarePixelBuffer.h:136
Ogre::GLES2TextureBuffer::mSliceTRT
SliceTRT mSliceTRT
Definition: OgreGLES2HardwarePixelBuffer.h:140
Ogre::GLES2RenderBuffer
Renderbuffer surface.
Definition: OgreGLES2HardwarePixelBuffer.h:147
Ogre::GLES2HardwarePixelBuffer::mBuffer
PixelBox mBuffer
Definition: OgreGLES2HardwarePixelBuffer.h:47
Ogre::uint
unsigned int uint
Definition: OgrePrerequisites.h:114
Ogre::PixelBox
A primitive describing a volume (3D), image (2D) or line (1D) of pixels in memory.
Definition: OgrePixelFormat.h:304
Ogre::HardwarePixelBufferSharedPtr
Shared pointer implementation used to share pixel buffers.
Definition: OgreHardwarePixelBuffer.h:193
_OgreGLES2Export
#define _OgreGLES2Export
Definition: OgreGLES2Prerequisites.h:260
Ogre::RenderTexture
This class represents a RenderTarget that renders to a Texture.
Definition: OgreRenderTexture.h:48
Ogre::HardwareBuffer::Usage
Usage
Enums describing buffer usage; not mutually exclusive.
Definition: OgreHardwareBuffer.h:79
Ogre::vector
Definition: OgrePrerequisites.h:491
OgreGLES2Prerequisites.h
Ogre::GLES2HardwarePixelBuffer::mGLInternalFormat
GLenum mGLInternalFormat
Definition: OgreGLES2HardwarePixelBuffer.h:48
Ogre::GLES2HardwarePixelBuffer::mCurrentLockOptions
LockOptions mCurrentLockOptions
Definition: OgreGLES2HardwarePixelBuffer.h:49

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