HomeSort by relevance Sort by last modified time
    Searched refs:pitchB (Results 1 - 7 of 7) sorted by null

  /external/swiftshader/src/Main/
FrameBufferOzone.cpp 22 sw::Surface::pitchB(width, 0, format, true),
  /external/swiftshader/src/Renderer/
Blitter.hpp 110 static Int ComputeOffset(Int &x, Int &y, Int &pitchB, int bytes, bool quadLayout);
Surface.cpp 47 byte *element = (byte*)buffer + (x + border) * bytes + (y + border) * pitchB + z * samples * sliceB;
58 byte *element = (byte*)buffer + (x + border) * bytes + (y + border) * pitchB;
399 void *element = (unsigned char*)buffer + (x + border) * bytes + (y + border) * pitchB + z * samples * sliceB;
406 void *element = (unsigned char*)buffer + (x + border) * bytes + (y + border) * pitchB;
1148 return (unsigned char*)buffer + 8 * (x / 4) + (y / 4) * pitchB + z * sliceB;
1155 return (unsigned char*)buffer + 16 * (x / 4) + (y / 4) * pitchB + z * sliceB;
1158 return (unsigned char*)buffer + 16 * (x / 5) + (y / 4) * pitchB + z * sliceB;
1161 return (unsigned char*)buffer + 16 * (x / 5) + (y / 5) * pitchB + z * sliceB;
1164 return (unsigned char*)buffer + 16 * (x / 6) + (y / 5) * pitchB + z * sliceB;
1167 return (unsigned char*)buffer + 16 * (x / 6) + (y / 6) * pitchB + z * sliceB
    [all...]
Surface.hpp 268 int pitchB;
361 static int pitchB(int width, int border, Format format, bool target);
578 return external.pitchB;
603 return internal.pitchB;
628 return stencil.pitchB;
Blitter.cpp     [all...]
  /external/swiftshader/src/OpenGL/common/
Image.cpp 691 GLsizei pitchB = ComputePitch(width, format, type, storageModes.alignment);
692 return (storageModes.skipImages * height + storageModes.skipRows) * pitchB + storageModes.skipPixels * ComputePixelSize(format, type);
    [all...]
  /external/swiftshader/src/D3D8/
Direct3DVolume8.cpp 148 lockedVolume->RowPitch = pitchB(getWidth(), 0, getExternalFormat(), false);

Completed in 948 milliseconds