HomeSort by relevance Sort by last modified time
    Searched defs:parentTexture (Results 1 - 4 of 4) sorted by null

  /external/swiftshader/src/D3D8/
Direct3DSurface8.hpp 73 Direct3DBaseTexture8 *parentTexture;
  /external/swiftshader/src/D3D9/
Direct3DSurface9.hpp 80 Direct3DBaseTexture9 *parentTexture;
  /external/swiftshader/src/OpenGL/libGL/
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 multiSampleDepth, bool lockable, bool renderTarget);
84 Texture *parentTexture;
  /external/swiftshader/src/OpenGL/common/
Image.hpp 95 Image(Texture *parentTexture, GLsizei width, GLsizei height, GLint internalformat)
96 : sw::Surface(parentTexture->getResource(), width, height, 1, 0, 1, gl::SelectInternalFormat(internalformat), true, true),
97 width(width), height(height), depth(1), internalformat(internalformat), parentTexture(parentTexture)
101 parentTexture->addRef();
105 Image(Texture *parentTexture, GLsizei width, GLsizei height, GLsizei depth, int border, GLint internalformat)
106 : sw::Surface(parentTexture->getResource(), width, height, depth, border, 1, gl::SelectInternalFormat(internalformat), true, true),
107 width(width), height(height), depth(depth), internalformat(internalformat), parentTexture(parentTexture)
111 parentTexture->addRef()
    [all...]

Completed in 113 milliseconds