Lines Matching refs:parentTexture
39 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()
134 parentTexture = 0; in unbind()