Home | History | Annotate | Download | only in common

Lines Matching defs:m_height

54 	int						getHeight			(void) const { return m_height; }
69 int m_height;
75 DE_ASSERT(de::inBounds(x, 0, m_width) && de::inBounds(y, 0, m_height));
92 DE_ASSERT(de::inBounds(x, 0, m_width) && de::inBounds(y, 0, m_height));
117 DE_ASSERT(y < m_height);
120 DE_ASSERT(y + height <= m_height);
135 DE_ASSERT(y < m_height);
138 DE_ASSERT(y + height <= m_height);
147 return ConstPixelBufferAccess(TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8), m_width, m_height, 1, m_pixels.empty() ? DE_NULL : &m_pixels[0]);
153 return PixelBufferAccess(TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8), m_width, m_height, 1, m_pixels.empty() ? DE_NULL : &m_pixels[0]);