Lines Matching refs:parentTexture
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()
1342 if(parentTexture) in release()
1344 parentTexture->sweep(); in release()
1355 if(parentTexture == parent) in unbind()
1357 parentTexture = nullptr; in unbind()
1365 return parentTexture == parent; in isChildOf()