Home | History | Annotate | Download | only in libGLESv2

Lines Matching refs:Renderbuffer

7 // Renderbuffer.cpp: the gl::Renderbuffer class and its derived classes
8 // Colorbuffer, Depthbuffer and Stencilbuffer. Implements GL renderbuffer
11 #include "libGLESv2/Renderbuffer.h"
21 Renderbuffer::Renderbuffer(GLuint id, RenderbufferStorage *storage) : RefCountObject(id)
27 Renderbuffer::~Renderbuffer()
32 bool Renderbuffer::isColorbuffer() const
37 bool Renderbuffer::isDepthbuffer() const
42 bool Renderbuffer::isStencilbuffer() const
47 IDirect3DSurface9 *Renderbuffer::getRenderTarget()
52 IDirect3DSurface9 *Renderbuffer::getDepthStencil()
57 int Renderbuffer::getWidth() const
62 int Renderbuffer::getHeight() const
67 GLenum Renderbuffer::getFormat() const
72 D3DFORMAT Renderbuffer::getD3DFormat() const
77 unsigned int Renderbuffer::getSerial() const
82 void Renderbuffer::setStorage(RenderbufferStorage *newStorage)
411 mFormat = GL_DEPTH_COMPONENT16; // If the renderbuffer parameters are queried, the calling function
412 // will expect one of the valid renderbuffer formats for use in
421 mFormat = GL_DEPTH_COMPONENT16; // If the renderbuffer parameters are queried, the calling function
422 // will expect one of the valid renderbuffer formats for use in
445 mFormat = GL_STENCIL_INDEX8; // If the renderbuffer parameters are queried, the calling function
446 // will expect one of the valid renderbuffer formats for use in
459 mFormat = GL_STENCIL_INDEX8; // If the renderbuffer parameters are queried, the calling function
460 // will expect one of the valid renderbuffer formats for use in