Home | History | Annotate | Download | only in graphics

Lines Matching defs:m_width

53     FloatSize() : m_width(0), m_height(0) { }
54 FloatSize(float width, float height) : m_width(width), m_height(height) { }
59 float width() const { return m_width; }
62 void setWidth(float width) { m_width = width; }
65 bool isEmpty() const { return m_width <= 0 || m_height <= 0; }
69 return FloatSize(m_width > other.m_width ? m_width : other.m_width,
75 return FloatSize(m_width < other.m_width ? m_width : other.m_width,
91 float m_width, m_height;