Searched defs:getActualFormat (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A DImage.h38 GLenum getActualFormat() const { return mActualFormat; } function in class:rx::Image
H A DRenderTarget.h37 GLenum getActualFormat() const { return mActualFormat; } function in class:rx::RenderTarget
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DFramebufferAttachment.cpp36 return (GetInternalFormatInfo(getInternalFormat()).redBits > 0) ? GetInternalFormatInfo(getActualFormat()).redBits : 0;
41 return (GetInternalFormatInfo(getInternalFormat()).greenBits > 0) ? GetInternalFormatInfo(getActualFormat()).greenBits : 0;
46 return (GetInternalFormatInfo(getInternalFormat()).blueBits > 0) ? GetInternalFormatInfo(getActualFormat()).blueBits : 0;
51 return (GetInternalFormatInfo(getInternalFormat()).alphaBits > 0) ? GetInternalFormatInfo(getActualFormat()).alphaBits : 0;
56 return (GetInternalFormatInfo(getInternalFormat()).depthBits > 0) ? GetInternalFormatInfo(getActualFormat()).depthBits : 0;
61 return (GetInternalFormatInfo(getInternalFormat()).stencilBits > 0) ? GetInternalFormatInfo(getActualFormat()).stencilBits : 0;
66 return GetInternalFormatInfo(getActualFormat()).componentType;
71 return GetInternalFormatInfo(getActualFormat()).colorEncoding;
118 GLenum TextureAttachment::getActualFormat() const function in class:gl::TextureAttachment
120 return mTexture->getActualFormat(mInde
183 GLenum RenderbufferAttachment::getActualFormat() const function in class:gl::RenderbufferAttachment
[all...]
H A DRenderbuffer.cpp68 GLenum Renderbuffer::getActualFormat() const function in class:gl::Renderbuffer
71 return mStorage->getActualFormat();
82 return GetInternalFormatInfo(getActualFormat()).redBits;
87 return GetInternalFormatInfo(getActualFormat()).greenBits;
92 return GetInternalFormatInfo(getActualFormat()).blueBits;
97 return GetInternalFormatInfo(getActualFormat()).alphaBits;
102 return GetInternalFormatInfo(getActualFormat()).depthBits;
107 return GetInternalFormatInfo(getActualFormat()).stencilBits;
143 GLenum RenderbufferStorage::getActualFormat() const function in class:gl::RenderbufferStorage
184 mActualFormat = mRenderTarget->getActualFormat();
[all...]
H A DTexture.cpp135 GLenum Texture::getActualFormat(const ImageIndex &index) const function in class:gl::Texture
138 return image->getActualFormat();
221 GLenum Texture2D::getActualFormat(GLint level) const function in class:gl::Texture2D
224 return mTexture->getImage(level, 0)->getActualFormat();
462 GLenum TextureCubeMap::getActualFormat(GLenum target, GLint level) const function in class:gl::TextureCubeMap
465 return mTexture->getImage(level, targetToLayerIndex(target))->getActualFormat();
722 GLenum Texture3D::getActualFormat(GLint level) const function in class:gl::Texture3D
724 return (level < IMPLEMENTATION_MAX_TEXTURE_LEVELS) ? mTexture->getImage(level, 0)->getActualFormat() : GL_NONE;
880 GLenum Texture2DArray::getActualFormat(GLint level) const function in class:gl::Texture2DArray
882 return (level < IMPLEMENTATION_MAX_TEXTURE_LEVELS && mTexture->getLayerCount(level) > 0) ? mTexture->getImage(level, 0)->getActualFormat()
[all...]

Completed in 87 milliseconds