Searched refs:m_rows (Results 1 - 2 of 2) sorted by relevance

/haiku/headers/libs/agg/
H A Dagg_rendering_buffer_dynarow.h53 m_rows(),
64 m_rows(height),
69 memset(&m_rows[0], 0, sizeof(row_data) * height);
79 pod_allocator<int8u>::deallocate((int8u*)m_rows[i].ptr, m_byte_width);
86 m_rows.resize(height);
87 memset(&m_rows[0], 0, sizeof(row_data) * height);
101 row_data* r = &m_rows[y];
120 const int8u* row_ptr(int y) const { return m_rows[y].ptr; }
122 row_data row (int y) const { return m_rows[y]; }
132 pod_array<row_data> m_rows; // Pointer member in class:agg::rendering_buffer_dynarow
[all...]
H A Dagg_rendering_buffer.h45 m_rows(),
55 m_rows(),
70 if(height > m_rows.size())
72 m_rows.resize(height);
82 T** rows = &m_rows[0];
103 T* row_ptr(int, int y, unsigned) { return m_rows[y]; }
104 T* row_ptr(int y) { return m_rows[y]; }
105 const T* row_ptr(int y) const { return m_rows[y]; }
106 row_data row (int y) const { return row_data(0, m_width-1, m_rows[y]); }
109 T const* const* rows() const { return &m_rows[
151 pod_array<T*> m_rows; // Pointers to each row of the buffer member in class:agg::row_ptr_cache
[all...]

Completed in 100 milliseconds