Searched refs:m_pitch (Results 1 – 2 of 2) sorted by relevance
/external/deqp/framework/common/ |
D | tcuTexture.hpp | 312 int getPixelPitch (void) const { return m_pitch.x(); } in getPixelPitch() 313 int getRowPitch (void) const { return m_pitch.y(); } in getRowPitch() 314 int getSlicePitch (void) const { return m_pitch.z(); } in getSlicePitch() 315 const IVec3& getPitch (void) const { return m_pitch; } in getPitch() 318 …int z = 0) const { return (const deUint8*)m_data + x * m_pitch.x() + y * m_pitch.y() + z * m_pitch… in getPixelPtr() 344 IVec3 m_pitch; //!< (pixelPitch, rowPitch, slicePitch) member in tcu::ConstPixelBufferAccess 368 …nt y, int z = 0) const { return (deUint8*)m_data + x * m_pitch.x() + y * m_pitch.y() + z * m_pitch… in getPixelPtr()
|
D | tcuTexture.cpp | 537 , m_pitch (0) in ConstPixelBufferAccess() 545 , m_pitch (calculatePackedPitch(m_format, m_size)) in ConstPixelBufferAccess() 553 , m_pitch (calculatePackedPitch(m_format, m_size)) in ConstPixelBufferAccess() 561 , m_pitch (format.getPixelSize(), rowPitch, slicePitch) in ConstPixelBufferAccess() 569 , m_pitch (pitch) in ConstPixelBufferAccess() 572 DE_ASSERT(m_format.getPixelSize() <= m_pitch.x()); in ConstPixelBufferAccess() 578 , m_pitch (calculatePackedPitch(m_format, m_size)) in ConstPixelBufferAccess() 614 …const deUint8* pixelPtr = (const deUint8*)getDataPtr() + z*m_pitch.z() + y*m_pitch.y() + x*m_pitch… in getPixel() 711 …Uint8* const pixelPtr = (const deUint8*)getDataPtr() + z*m_pitch.z() + y*m_pitch.y() + x*m_pitch.x… in getPixelInt() 815 …Uint8* const pixelPtr = (const deUint8*)getDataPtr() + z*m_pitch.z() + y*m_pitch.y() + x*m_pitch.x… in getPixDepth() [all …]
|