Lines Matching refs:pitchP
1231 …nt depth, int border, int samples, Format format, bool lockable, bool renderTarget, int pitchP = 0) in SurfaceImplementation() argument
1232 …: Surface(texture, width, height, depth, border, samples, format, lockable, renderTarget, pitchP) … in SurfaceImplementation()
1271 external.pitchP = external.bytes ? pitch / external.bytes : 0; in Surface()
1286 internal.pitchP = pitchP(internal.width, 0, internal.format, false); in Surface()
1301 stencil.pitchP = pitchP(stencil.width, 0, stencil.format, false); in Surface()
1328 …external.pitchP = !pitchPprovided ? pitchP(external.width, 0, external.format, renderTarget && !te… in Surface()
1343 …internal.pitchP = !pitchPprovided ? pitchP(internal.width, border, internal.format, renderTarget) … in Surface()
1358 stencil.pitchP = pitchP(stencil.width, 0, stencil.format, renderTarget); in Surface()
1797 int Surface::pitchP(int width, int border, Format format, bool target) in pitchP() function in sw::Surface
2314 … dest[(x + i) + (y + j) * internal.pitchP] = c[(unsigned int)(source->lut >> 2 * (i + j * 4)) % 4]; in decodeDXT1()
2364 dest[(x + i) + (y + j) * internal.pitchP] = color; in decodeDXT3()
2438 dest[(x + i) + (y + j) * internal.pitchP] = color; in decodeDXT5()
2494 …dest[(x + i) + (y + j) * internal.pitchP] = r[(unsigned int)(source->rlut >> (16 + 3 * (i + j * 4)… in decodeATI1()
2577 dest[(x + i) + (y + j) * internal.pitchP] = (g << 8) + r; in decodeATI2()
3357 row += internal.pitchP; in clearDepth()
3382 float *target = buffer + (y & ~1) * internal.pitchP + (y & 1) * 2; in clearDepth()
3492 char *target = buffer + (y & ~1) * stencil.pitchP + (y & 1) * 2; in clearStencil()