Home
last modified time | relevance | path

Searched refs:pitchP (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/src/Renderer/
DSurface.hpp244 int pitchP; member
255 …int width, int height, int depth, Format format, bool lockable, bool renderTarget, int pitchP = 0);
322 static int pitchP(int width, Format format, bool target);
538 return external.pitchP; in getExternalPitchP()
563 return internal.pitchP; in getInternalPitchP()
DSampler.cpp126 int pitchP = surface->getInternalPitchP(); in setTextureLevel() local
218 mipmap.onePitchP[1] = pitchP; in setTextureLevel()
220 mipmap.onePitchP[3] = pitchP; in setTextureLevel()
229 unsigned int YStride = pitchP; in setTextureLevel()
DSurface.cpp1182 external.pitchP = external.bytes ? pitch / external.bytes : 0; in Surface()
1195 internal.pitchP = pitchP(internal.width, internal.format, false); in Surface()
1208 stencil.pitchP = pitchP(stencil.width, stencil.format, false); in Surface()
1232 external.pitchP = pitchP(external.width, external.format, renderTarget && !texture); in Surface()
1245 …internal.pitchP = !pitchPprovided ? pitchP(internal.width, internal.format, renderTarget) : pitchP… in Surface()
1258 stencil.pitchP = pitchP(stencil.width, stencil.format, renderTarget); in Surface()
1687 int Surface::pitchP(int width, Format format, bool target) in pitchP() function in sw::Surface
/external/swiftshader/src/OpenGL/common/
DImage.hpp75 Image(GLsizei width, GLsizei height, GLenum format, GLenum type, int pitchP) in Image() argument
76 : sw::Surface(nullptr, width, height, 1, SelectInternalFormat(format, type), true, true, pitchP), in Image()