Home | History | Annotate | Download | only in common

Lines Matching refs:rowPitch

878 	const int rowPitch		= pixelSize * size.x();
879 const int slicePitch = rowPitch * size.y();
881 return IVec3(pixelSize, rowPitch, slicePitch);
909 ConstPixelBufferAccess::ConstPixelBufferAccess (const TextureFormat& format, int width, int height, int depth, int rowPitch, int slicePitch, const void* data)
912 , m_pitch (format.getPixelSize(), rowPitch, slicePitch)
946 PixelBufferAccess::PixelBufferAccess (const TextureFormat& format, int width, int height, int depth, int rowPitch, int slicePitch, void* data)
947 : ConstPixelBufferAccess(format, width, height, depth, rowPitch, slicePitch, data)