/external/swiftshader/src/OpenGL/common/ |
D | Image.hpp | 95 Image(Texture *parentTexture, GLsizei width, GLsizei height, GLint internalformat) in Image() argument 96 …: sw::Surface(parentTexture->getResource(), width, height, 1, 0, 1, gl::SelectInternalFormat(inter… in Image() 97 …idth(width), height(height), depth(1), internalformat(internalformat), parentTexture(parentTexture) in Image() 101 parentTexture->addRef(); in Image() 105 …Image(Texture *parentTexture, GLsizei width, GLsizei height, GLsizei depth, int border, GLint inte… in Image() argument 106 …: sw::Surface(parentTexture->getResource(), width, height, depth, border, 1, gl::SelectInternalFor… in Image() 107 …(width), height(height), depth(depth), internalformat(internalformat), parentTexture(parentTexture) in Image() 111 parentTexture->addRef(); in Image() 117 width(width), height(height), depth(1), internalformat(internalformat), parentTexture(nullptr) in Image() 126 width(width), height(height), depth(1), internalformat(internalformat), parentTexture(nullptr) in Image() [all …]
|
D | Image.cpp | 1163 ImageImplementation(Texture *parentTexture, GLsizei width, GLsizei height, GLint internalformat) in ImageImplementation() argument 1164 : Image(parentTexture, width, height, internalformat) {} in ImageImplementation() 1165 …ImageImplementation(Texture *parentTexture, GLsizei width, GLsizei height, GLsizei depth, int bord… in ImageImplementation() argument 1166 : Image(parentTexture, width, height, depth, border, internalformat) {} in ImageImplementation() 1193 Image *Image::create(Texture *parentTexture, GLsizei width, GLsizei height, GLint internalformat) in create() argument 1195 return new ImageImplementation(parentTexture, width, height, internalformat); in create() 1198 …Image *Image::create(Texture *parentTexture, GLsizei width, GLsizei height, GLsizei depth, int bor… in create() argument 1200 return new ImageImplementation(parentTexture, width, height, depth, border, internalformat); in create() 1413 if(parentTexture) in ~Image() 1415 parentTexture->release(); in ~Image() [all …]
|
/external/swiftshader/src/OpenGL/libGL/ |
D | Image.cpp | 39 Image::Image(Texture *parentTexture, GLsizei width, GLsizei height, GLenum format, GLenum type) in Image() argument 40 …: sw::Surface(getParentResource(parentTexture), width, height, 1, 0, 1, selectInternalFormat(forma… in Image() 41 , parentTexture(parentTexture), width(width), height(height), format(format), type(type) in Image() 47 …Image::Image(Texture *parentTexture, GLsizei width, GLsizei height, sw::Format internalFormat, int… in Image() argument 48 …: sw::Surface(getParentResource(parentTexture), width, height, 1, 0, multiSampleDepth, internalFor… in Image() 49 …, parentTexture(parentTexture), width(width), height(height), format(0 /*GL_NONE*/), type(0 /*GL_N… in Image() 116 if(parentTexture) in addRef() 118 return parentTexture->addRef(); in addRef() 126 if(parentTexture) in release() 128 return parentTexture->release(); in release() [all …]
|
D | Image.hpp | 32 Image(Texture *parentTexture, GLsizei width, GLsizei height, GLenum format, GLenum type); 33 …Image(Texture *parentTexture, GLsizei width, GLsizei height, sw::Format internalFormat, int multiS… 84 Texture *parentTexture; member in gl::Image
|
/external/swiftshader/src/D3D8/ |
D | Direct3DSurface8.cpp | 64 parentTexture = dynamic_cast<Direct3DBaseTexture8*>(container); in Direct3DSurface8() 106 if(parentTexture) in AddRef() 108 return parentTexture->AddRef(); in AddRef() 118 if(parentTexture) in Release() 120 return parentTexture->Release(); in Release()
|
D | Direct3DSurface8.hpp | 73 Direct3DBaseTexture8 *parentTexture; member in D3D8::Direct3DSurface8
|
/external/swiftshader/src/D3D9/ |
D | Direct3DSurface9.cpp | 82 parentTexture = dynamic_cast<Direct3DBaseTexture9*>(container); in Direct3DSurface9() 124 if(parentTexture) in AddRef() 126 return parentTexture->AddRef(); in AddRef() 136 if(parentTexture) in Release() 138 return parentTexture->Release(); in Release()
|
D | Direct3DSurface9.hpp | 80 Direct3DBaseTexture9 *parentTexture; member in D3D9::Direct3DSurface9
|