Searched refs:sliceB (Results 1 – 9 of 9) sorted by relevance
/external/swiftshader/src/Renderer/ |
D | Surface.hpp | 242 int sliceB; member 336 static int sliceB(int width, int height, int border, Format format, bool target); 560 return external.sliceB; in getExternalSliceB() 585 return internal.sliceB; in getInternalSliceB() 605 return stencil.sliceB; in getStencilSliceB()
|
D | Surface.cpp | 51 …yte *element = (byte*)buffer + (x + border) * bytes + (y + border) * pitchB + z * samples * sliceB; in write() 56 element += sliceB; in write() 70 element += sliceB; in write() 410 …ent = (unsigned char*)buffer + (x + border) * bytes + (y + border) * pitchB + z * samples * sliceB; in read() 1162 return (unsigned char*)buffer + 8 * (x / 4) + (y / 4) * pitchB + z * sliceB; in lockRect() 1167 return (unsigned char*)buffer + 16 * (x / 4) + (y / 4) * pitchB + z * sliceB; in lockRect() 1171 return (unsigned char*)buffer + 16 * (x / 4) + (y / 4) * pitchB + z * sliceB; in lockRect() 1173 return (unsigned char*)buffer + x * bytes + y * pitchB + z * samples * sliceB; in lockRect() 1231 external.sliceB = slice; in Surface() 1246 internal.sliceB = sliceB(internal.width, internal.height, 0, internal.format, false); in Surface() [all …]
|
/external/swiftshader/src/Main/ |
D | FrameBufferOzone.cpp | 23 sw::Surface::sliceB(width, height, 0, format, true)); in FrameBufferOzone()
|
/external/swiftshader/src/Vulkan/ |
D | VkFormat.hpp | 59 int sliceB(int width, int height, int border, bool target) const;
|
D | VkImage.cpp | 824 return usedFormat.sliceB(mipLevelExtent.width, mipLevelExtent.height, borderSize(), true); in slicePitchBytes() 1400 int sliceB = decompressedImage->slicePitchBytes(VK_IMAGE_ASPECT_COLOR_BIT, subresource.mipLevel); in decodeASTC() local 1407 …ce, dest, mipLevelExtent.width, mipLevelExtent.height, mipLevelExtent.depth, bytes, pitchB, sliceB, in decodeASTC()
|
D | VkFormat.cpp | 1864 int Format::sliceB(int width, int height, int border, bool target) const in sliceB() function in vk::Format
|
/external/swiftshader/src/Device/ |
D | Blitter.hpp | 172 static Int ComputeOffset(Int &x, Int &y, Int &z, Int &sliceB, Int &pitchB, int bytes);
|
D | Blitter.cpp | 1399 Int Blitter::ComputeOffset(Int &x, Int &y, Int &z, Int &sliceB, Int &pitchB, int bytes) in ComputeOffset() argument 1401 return z * sliceB + y * pitchB + x * bytes; in ComputeOffset()
|
/external/swiftshader/src/OpenGL/common/ |
D | Image.cpp | 1110 int sliceB = static_cast<int>(IOSurfaceGetHeightOfPlane(ioSurface, plane)) * pitchB; in lock() local 1111 return (unsigned char*)pixels + x * bytes + y * pitchB + z * sliceB; in lock() 1118 int sliceB = height * pitchB; in lock() 1119 return (unsigned char*)buffer + x * bytes + y * pitchB + z * sliceB; in lock()
|