LibGfx: Prefix class members with m_
in EdgeTable
No functional changes.
This commit is contained in:
parent
f5d838b64c
commit
56ff36a0ee
Notes:
github-actions[bot]
2024-08-07 18:17:17 +00:00
Author: https://github.com/gmta Commit: https://github.com/LadybirdBrowser/ladybird/commit/56ff36a0ee4 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/999
1 changed files with 5 additions and 5 deletions
|
@ -220,15 +220,15 @@ private:
|
|||
|
||||
void set_scanline_range(int min_scanline, int max_scanline)
|
||||
{
|
||||
this->min_scanline = min_scanline;
|
||||
edges.resize(max_scanline - min_scanline + 1);
|
||||
m_min_scanline = min_scanline;
|
||||
m_edges.resize(max_scanline - min_scanline + 1);
|
||||
}
|
||||
|
||||
auto& operator[](int scanline) { return edges[scanline - min_scanline]; }
|
||||
auto& operator[](int scanline) { return m_edges[scanline - m_min_scanline]; }
|
||||
|
||||
private:
|
||||
Vector<Detail::Edge*> edges;
|
||||
int min_scanline { 0 };
|
||||
Vector<Detail::Edge*> m_edges;
|
||||
int m_min_scanline { 0 };
|
||||
} m_edge_table;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue