/external/swiftshader/src/OpenGL/common/ |
D | Image.hpp | 98 Image(Texture *parentTexture, GLsizei width, GLsizei height, GLint internalformat) in Image() argument 99 …: sw::Surface(parentTexture->getResource(), width, height, 1, 0, 1, gl::SelectInternalFormat(inter… in Image() 100 …idth(width), height(height), depth(1), internalformat(internalformat), parentTexture(parentTexture) in Image() 104 parentTexture->addRef(); in Image() 108 …Image(Texture *parentTexture, GLsizei width, GLsizei height, GLsizei depth, int border, GLint inte… in Image() argument 109 …: sw::Surface(parentTexture->getResource(), width, height, depth, border, 1, gl::SelectInternalFor… in Image() 110 …(width), height(height), depth(depth), internalformat(internalformat), parentTexture(parentTexture) in Image() 114 parentTexture->addRef(); in Image() 120 width(width), height(height), depth(1), internalformat(internalformat), parentTexture(nullptr) in Image() 129 width(width), height(height), depth(1), internalformat(internalformat), parentTexture(nullptr) in Image() [all …]
|
D | Image.cpp | 1029 ImageImplementation(Texture *parentTexture, GLsizei width, GLsizei height, GLint internalformat) in ImageImplementation() argument 1030 : Image(parentTexture, width, height, internalformat) {} in ImageImplementation() 1031 …ImageImplementation(Texture *parentTexture, GLsizei width, GLsizei height, GLsizei depth, int bord… in ImageImplementation() argument 1032 : Image(parentTexture, width, height, depth, border, internalformat) {} in ImageImplementation() 1059 Image *Image::create(Texture *parentTexture, GLsizei width, GLsizei height, GLint internalformat) in create() argument 1066 return new ImageImplementation(parentTexture, width, height, internalformat); in create() 1069 …Image *Image::create(Texture *parentTexture, GLsizei width, GLsizei height, GLsizei depth, int bor… in create() argument 1076 return new ImageImplementation(parentTexture, width, height, depth, border, internalformat); in create() 1318 if(parentTexture) in ~Image() 1320 parentTexture->release(); in ~Image() [all …]
|
/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
|