Home
last modified time | relevance | path

Searched refs:sliceB (Results 1 – 9 of 9) sorted by relevance

/external/swiftshader/src/Renderer/
DSurface.cpp51 …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()
1169 return (unsigned char*)buffer + 16 * (x / 4) + (y / 4) * pitchB + z * sliceB; in lockRect()
1172 return (unsigned char*)buffer + 16 * (x / 5) + (y / 4) * pitchB + z * sliceB; in lockRect()
1175 return (unsigned char*)buffer + 16 * (x / 5) + (y / 5) * pitchB + z * sliceB; in lockRect()
1178 return (unsigned char*)buffer + 16 * (x / 6) + (y / 5) * pitchB + z * sliceB; in lockRect()
1181 return (unsigned char*)buffer + 16 * (x / 6) + (y / 6) * pitchB + z * sliceB; in lockRect()
[all …]
DSurface.hpp270 int sliceB; member
364 static int sliceB(int width, int height, int border, Format format, bool target);
589 return external.sliceB; in getExternalSliceB()
614 return internal.sliceB; in getInternalSliceB()
634 return stencil.sliceB; in getStencilSliceB()
/external/swiftshader/src/Device/
DSurface.hpp104 int sliceB; member
197 static int sliceB(int width, int height, int border, VkFormat format, bool target);
408 return external.sliceB; in getExternalSliceB()
433 return internal.sliceB; in getInternalSliceB()
453 return stencil.sliceB; in getStencilSliceB()
DSurface.cpp48 …yte *element = (byte*)buffer + (x + border) * bytes + (y + border) * pitchB + z * samples * sliceB; in write()
53 element += sliceB; in write()
67 element += sliceB; in write()
250 …ent = (unsigned char*)buffer + (x + border) * bytes + (y + border) * pitchB + z * samples * sliceB; in read()
685 return (unsigned char*)buffer + 8 * (x / 4) + (y / 4) * pitchB + z * sliceB; in lockRect()
692 return (unsigned char*)buffer + 16 * (x / 4) + (y / 4) * pitchB + z * sliceB; in lockRect()
695 return (unsigned char*)buffer + 16 * (x / 5) + (y / 4) * pitchB + z * sliceB; in lockRect()
698 return (unsigned char*)buffer + 16 * (x / 5) + (y / 5) * pitchB + z * sliceB; in lockRect()
701 return (unsigned char*)buffer + 16 * (x / 6) + (y / 5) * pitchB + z * sliceB; in lockRect()
704 return (unsigned char*)buffer + 16 * (x / 6) + (y / 6) * pitchB + z * sliceB; in lockRect()
[all …]
/external/swiftshader/src/WSI/
DFrameBufferOzone.cpp23 sw::Surface::sliceB(width, height, 0, format, true)); in FrameBufferOzone()
/external/swiftshader/src/Main/
DFrameBufferOzone.cpp23 sw::Surface::sliceB(width, height, 0, format, true)); in FrameBufferOzone()
/external/swiftshader/src/D3D8/
DDirect3DVolume8.cpp149 lockedVolume->SlicePitch = sliceB(getWidth(), getHeight(), 0, getExternalFormat(), false); in LockBox()
/external/swiftshader/src/OpenGL/common/
DImage.cpp1173 int sliceB = static_cast<int>(IOSurfaceGetHeightOfPlane(ioSurface, plane)) * pitchB; in lock() local
1174 return (unsigned char*)pixels + x * bytes + y * pitchB + z * sliceB; in lock()
1181 int sliceB = height * pitchB; in lock()
1182 return (unsigned char*)buffer + x * bytes + y * pitchB + z * sliceB; in lock()
/external/swiftshader/src/Vulkan/
DVkImage.cpp311 …return sw::Surface::sliceB(mipLevelExtent.width, mipLevelExtent.height, isCube() ? 1 : 0, getForma… in slicePitchBytes()