Home
last modified time | relevance | path

Searched refs:parentTexture (Results 1 – 6 of 6) sorted by relevance

/external/swiftshader/src/OpenGL/common/
DImage.hpp53 Image(Texture *parentTexture, GLsizei width, GLsizei height, GLenum format, GLenum type) in Image() argument
54 …: sw::Surface(parentTexture->getResource(), width, height, 1, SelectInternalFormat(format, type), … in Image()
56 parentTexture(parentTexture) in Image()
60 parentTexture->addRef(); in Image()
64 …Image(Texture *parentTexture, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum … in Image() argument
65 …: sw::Surface(parentTexture->getResource(), width, height, depth, SelectInternalFormat(format, typ… in Image()
67 parentTexture(parentTexture) in Image()
71 parentTexture->addRef(); in Image()
78 parentTexture(nullptr) in Image()
88 parentTexture(nullptr) in Image()
[all …]
DImage.cpp1183 if(parentTexture) in ~Image()
1185 parentTexture->release(); in ~Image()
1197 if(parentTexture) in release()
1199 parentTexture->sweep(); in release()
1210 if(parentTexture == parent) in unbind()
1212 parentTexture = nullptr; in unbind()
1220 return parentTexture == parent; in isChildOf()
/external/swiftshader/src/OpenGL/libGL/
DImage.cpp39 Image::Image(Texture *parentTexture, GLsizei width, GLsizei height, GLenum format, GLenum type) in Image() argument
40 : parentTexture(parentTexture), width(width), height(height), format(format), type(type) in Image()
42 …, sw::Surface(getParentResource(parentTexture), width, height, 1, selectInternalFormat(format, typ… in Image()
47 …Image::Image(Texture *parentTexture, GLsizei width, GLsizei height, sw::Format internalFormat, int… in Image() argument
48 …: parentTexture(parentTexture), width(width), height(height), internalFormat(internalFormat), form… in Image()
49 …, sw::Surface(getParentResource(parentTexture), width, height, multiSampleDepth, internalFormat, l… in Image()
106 if(parentTexture) in addRef()
108 return parentTexture->addRef(); in addRef()
116 if(parentTexture) in release()
118 return parentTexture->release(); in release()
[all …]
DImage.hpp32 Image(Texture *parentTexture, GLsizei width, GLsizei height, GLenum format, GLenum type);
33 …Image(Texture *parentTexture, GLsizei width, GLsizei height, sw::Format internalFormat, int multiS…
81 Texture *parentTexture; member in gl::Image
/external/swiftshader/src/D3D9/
DDirect3DSurface9.cpp81 parentTexture = dynamic_cast<Direct3DBaseTexture9*>(container); in Direct3DSurface9()
113 if(parentTexture) in AddRef()
115 return parentTexture->AddRef(); in AddRef()
125 if(parentTexture) in Release()
127 return parentTexture->Release(); in Release()
DDirect3DSurface9.hpp76 Direct3DBaseTexture9 *parentTexture; member in D3D9::Direct3DSurface9