Home
last modified time | relevance | path

Searched refs:TextureStorageInterfaceCube (Results 1 – 16 of 16) sorted by relevance

/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
DTextureStorage.cpp97 TextureStorageInterfaceCube::TextureStorageInterfaceCube(Renderer *renderer, GLenum internalformat,… in TextureStorageInterfaceCube() function in rx::TextureStorageInterfaceCube
103 TextureStorageInterfaceCube::~TextureStorageInterfaceCube() in ~TextureStorageInterfaceCube()
107 RenderTarget *TextureStorageInterfaceCube::getRenderTarget(GLenum faceTarget, GLint level) const in getRenderTarget()
112 void TextureStorageInterfaceCube::generateMipmap(int faceIndex, int level) in generateMipmap()
117 unsigned int TextureStorageInterfaceCube::getRenderTargetSerial(GLenum target, GLint level) const in getRenderTargetSerial()
DTextureStorage.h89 class TextureStorageInterfaceCube : public TextureStorageInterface
92TextureStorageInterfaceCube(Renderer *renderer, GLenum internalformat, bool renderTarget, int size…
93 virtual ~TextureStorageInterfaceCube();
101 DISALLOW_COPY_AND_ASSIGN(TextureStorageInterfaceCube);
DImage.h25 class TextureStorageInterfaceCube; variable
48 virtual void setManagedSurface(TextureStorageInterfaceCube *storage, int face, int level) {}; in setManagedSurface()
52 …virtual bool copyToStorage(TextureStorageInterfaceCube *storage, int face, int level, GLint xoffse…
DRenderer.h42 class TextureStorageInterfaceCube; variable
211 …virtual bool copyToRenderTarget(TextureStorageInterfaceCube *dest, TextureStorageInterfaceCube *so…
218 …GLint xoffset, GLint yoffset, TextureStorageInterfaceCube *storage, GLenum target, GLint level) = …
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d9/
DImage9.h26 class TextureStorageInterfaceCube; variable
48 virtual void setManagedSurface(TextureStorageInterfaceCube *storage, int face, int level);
50 …virtual bool copyToStorage(TextureStorageInterfaceCube *storage, int face, int level, GLint xoffse…
DBlit9.h23 class TextureStorageInterfaceCube; variable
34 … &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, TextureStorageInterfaceCube *storag…
DRenderer9.h175 …virtual bool copyToRenderTarget(TextureStorageInterfaceCube *dest, TextureStorageInterfaceCube *so…
182 … GLint xoffset, GLint yoffset, TextureStorageInterfaceCube *storage, GLenum target, GLint level);
DImage9.cpp277 void Image9::setManagedSurface(TextureStorageInterfaceCube *storage, int face, int level) in setManagedSurface()
309 bool Image9::copyToStorage(TextureStorageInterfaceCube *storage, int face, int level, GLint xoffset… in copyToStorage()
DBlit9.cpp248 … &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, TextureStorageInterfaceCube *storag… in copy()
DRenderer9.cpp2826 bool Renderer9::copyToRenderTarget(TextureStorageInterfaceCube *dest, TextureStorageInterfaceCube *… in copyToRenderTarget()
2902 … GLint xoffset, GLint yoffset, TextureStorageInterfaceCube *storage, GLenum target, GLint level) in copyImage()
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d11/
DImage11.h27 class TextureStorageInterfaceCube; variable
42 …virtual bool copyToStorage(TextureStorageInterfaceCube *storage, int face, int level, GLint xoffse…
DRenderer11.h171 …virtual bool copyToRenderTarget(TextureStorageInterfaceCube *dest, TextureStorageInterfaceCube *so…
178 … GLint xoffset, GLint yoffset, TextureStorageInterfaceCube *storage, GLenum target, GLint level);
DImage11.cpp95 bool Image11::copyToStorage(TextureStorageInterfaceCube *storage, int face, int level, GLint xoffse… in copyToStorage()
DRenderer11.cpp2582 bool Renderer11::copyToRenderTarget(TextureStorageInterfaceCube *dest, TextureStorageInterfaceCube in copyToRenderTarget()
2695 … GLint xoffset, GLint yoffset, TextureStorageInterfaceCube *storage, GLenum target, GLint level) in copyImage()
/external/chromium_org/third_party/angle/src/libGLESv2/
DTexture.h34 class TextureStorageInterfaceCube; variable
284 rx::TextureStorageInterfaceCube *createCompleteStorage(bool renderTarget) const;
285 void setCompleteTexStorage(rx::TextureStorageInterfaceCube *newCompleteTexStorage);
303 rx::TextureStorageInterfaceCube *mTexStorage;
DTexture.cpp1385 rx::TextureStorageInterfaceCube *TextureCubeMap::createCompleteStorage(bool renderTarget) const in createCompleteStorage()
1394 …return new rx::TextureStorageInterfaceCube(mRenderer, getBaseLevelInternalFormat(), renderTarget, … in createCompleteStorage()
1397 void TextureCubeMap::setCompleteTexStorage(rx::TextureStorageInterfaceCube *newCompleteTexStorage) in setCompleteTexStorage()
1452 rx::TextureStorageInterfaceCube *newRenderTargetStorage = createCompleteStorage(true); in ensureRenderTarget()
1613 …setCompleteTexStorage(new rx::TextureStorageInterfaceCube(mRenderer, internalformat, IsRenderTarge… in storage()