Home | History | Annotate | Download | only in common

Lines Matching refs:height

48 							Surface				(int width, int height);
51 void setSize (int width, int height);
62 ConstPixelBufferAccess getSubAccess (int x, int y, int width, int height) const;
63 PixelBufferAccess getSubAccess (int x, int y, int width, int height);
109 inline ConstPixelBufferAccess Surface::getSubAccess (int x, int y, int width, int height) const
116 DE_ASSERT(height >= 1);
120 DE_ASSERT(y + height <= m_height);
123 return ConstPixelBufferAccess(TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8), width, height, 1, m_width*4, 0, ptr);
127 inline PixelBufferAccess Surface::getSubAccess (int x, int y, int width, int height)
134 DE_ASSERT(height >= 1);
138 DE_ASSERT(y + height <= m_height);
141 return PixelBufferAccess(TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8), width, height, 1, m_width*4, 0, ptr);