Searched refs:getActualFormat (Results 1 - 18 of 18) sorted by relevance

/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 DFramebufferAttachment.h62 virtual GLenum getActualFormat() const = 0;
92 virtual GLenum getActualFormat() const;
119 virtual GLenum getActualFormat() const;
H A DRenderbuffer.h50 GLenum getActualFormat() const;
78 virtual GLenum getActualFormat() const;
H A DTexture.h68 GLenum getActualFormat(const ImageIndex &index) const;
115 GLenum getActualFormat(GLint level) const;
151 GLenum getActualFormat(GLenum target, GLint level) const;
194 GLenum getActualFormat(GLint level) const;
224 GLenum getActualFormat(GLint level) const;
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...]
H A DvalidationES.cpp528 GLenum readInternalFormat = readColorBuffer->getActualFormat();
535 GLenum drawInternalFormat = drawFramebuffer->getColorbuffer(i)->getActualFormat();
597 if (attachment->getActualFormat() != readColorBuffer->getActualFormat())
622 if (readDepthBuffer->getActualFormat() != drawDepthBuffer->getActualFormat())
660 if (readStencilBuffer->getActualFormat() != drawStencilBuffer->getActualFormat())
H A DFramebuffer.cpp640 GLenum depthStencilActualFormat = depthStencil->getActualFormat();
H A DState.cpp269 GLenum stencilActualFormat = framebufferObject->getStencilbuffer()->getActualFormat();
H A DContext.cpp1858 GLenum actualFormat = attachment->getActualFormat();
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A DRenderTarget.h37 GLenum getActualFormat() const { return mActualFormat; } function in class:rx::RenderTarget
H A DImage.h38 GLenum getActualFormat() const { return mActualFormat; } function in class:rx::Image
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
H A DClear11.cpp264 const gl::InternalFormat &actualFormatInfo = gl::GetInternalFormatInfo(attachment->getActualFormat());
293 const gl::InternalFormat &actualFormatInfo = gl::GetInternalFormatInfo(attachment->getActualFormat());
H A DImage11.cpp320 if (colorbuffer && colorbuffer->getActualFormat() == mActualFormat)
H A DRenderer11.cpp849 renderTargetFormat = colorbuffer->getActualFormat();
897 renderTargetFormat = depthStencil->getActualFormat();
2988 const gl::InternalFormat &actualFormatInfo = gl::GetInternalFormatInfo(drawRenderTarget->getActualFormat());
2991 if (readRenderTarget11->getActualFormat() == drawRenderTarget->getActualFormat() &&
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
H A DTextureD3D.h99 GLenum getActualFormat(GLint level) const;
H A DTextureD3D.cpp282 GLenum TextureD3D_2D::getActualFormat(GLint level) const
285 return mImageArray[level]->getActualFormat();
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
H A DRenderer9.cpp1256 mRenderTargetDesc.format = attachment->getActualFormat();
1831 unsigned int stencilSize = gl::GetInternalFormatInfo((frameBuffer->getStencilbuffer()->getActualFormat())).stencilBits;
1844 const gl::InternalFormat &actualFormatInfo = gl::GetInternalFormatInfo(attachment->getActualFormat());

Completed in 216 milliseconds