Home | History | Annotate | Download | only in libGLESv2

Lines Matching defs:FramebufferAttachment

8 // FramebufferAttachment.cpp: the gl::FramebufferAttachment class and its derived classes
11 #include "libGLESv2/FramebufferAttachment.h"
29 // need to do anything upon the reference count to the parent FramebufferAttachment incrementing
31 void FramebufferAttachmentInterface::addProxyRef(const FramebufferAttachment *proxy)
35 void FramebufferAttachmentInterface::releaseProxy(const FramebufferAttachment *proxy)
53 void Texture2DAttachment::addProxyRef(const FramebufferAttachment *proxy)
58 void Texture2DAttachment::releaseProxy(const FramebufferAttachment *proxy)
133 void TextureCubeMapAttachment::addProxyRef(const FramebufferAttachment *proxy)
138 void TextureCubeMapAttachment::releaseProxy(const FramebufferAttachment *proxy)
213 void Texture3DAttachment::addProxyRef(const FramebufferAttachment *proxy)
218 void Texture3DAttachment::releaseProxy(const FramebufferAttachment *proxy)
291 void Texture2DArrayAttachment::addProxyRef(const FramebufferAttachment *proxy)
296 void Texture2DArrayAttachment::releaseProxy(const FramebufferAttachment *proxy)
356 ////// FramebufferAttachment Implementation //////
358 FramebufferAttachment::FramebufferAttachment(rx::Renderer *renderer, GLuint id, FramebufferAttachmentInterface *instance) : RefCountObject(id)
367 FramebufferAttachment::~FramebufferAttachment()
372 // The FramebufferAttachmentInterface contained in this FramebufferAttachment may need to maintain
374 void FramebufferAttachment::addRef() const
381 void FramebufferAttachment::release() const
388 rx::RenderTarget *FramebufferAttachment::getRenderTarget()
393 rx::RenderTarget *FramebufferAttachment::getDepthStencil()
398 rx::TextureStorage *FramebufferAttachment::getTextureStorage()
403 GLsizei FramebufferAttachment::getWidth() const
408 GLsizei FramebufferAttachment::getHeight() const
413 GLenum FramebufferAttachment::getInternalFormat() const
418 GLenum FramebufferAttachment::getActualFormat() const
423 GLuint FramebufferAttachment::getRedSize() const
428 GLuint FramebufferAttachment::getGreenSize() const
433 GLuint FramebufferAttachment::getBlueSize() const
438 GLuint FramebufferAttachment::getAlphaSize() const
443 GLuint FramebufferAttachment::getDepthSize() const
448 GLuint FramebufferAttachment::getStencilSize() const
453 GLenum FramebufferAttachment::getComponentType() const
458 GLenum FramebufferAttachment::getColorEncoding() const
463 GLsizei FramebufferAttachment::getSamples() const
468 unsigned int FramebufferAttachment::getSerial() const
473 bool FramebufferAttachment::isTexture() const
478 unsigned int FramebufferAttachment::getTextureSerial() const
483 void FramebufferAttachment::setStorage(RenderbufferStorage *newStorage)