Searched defs:m_pitch (Results 1 - 1 of 1) sorted by relevance

/external/deqp/framework/common/
H A DtcuTexture.hpp335 int getPixelPitch (void) const { return m_pitch.x(); }
336 int getRowPitch (void) const { return m_pitch.y(); }
337 int getSlicePitch (void) const { return m_pitch.z(); }
338 const IVec3& getPitch (void) const { return m_pitch; }
341 const void* getPixelPtr (int x, int y, int z = 0) const { return (const deUint8*)m_data + x * m_pitch.x() + y * m_pitch.y() + z * m_pitch.z(); }
367 IVec3 m_pitch; //!< (pixelPitch, rowPitch, slicePitch) member in class:tcu::ConstPixelBufferAccess
391 void* getPixelPtr (int x, int y, int z = 0) const { return (deUint8*)m_data + x * m_pitch.x() + y * m_pitch
[all...]

Completed in 60 milliseconds