StreamBuffer: Correct function casing

This commit is contained in:
Lioncash
2015-12-21 10:09:03 -05:00
parent 1eea95a5be
commit ec71452706
2 changed files with 9 additions and 9 deletions

View File

@ -61,7 +61,7 @@ protected:
private:
static constexpr int SYNC_POINTS = 16;
int SLOT(u32 x) const { return x >> m_bit_per_slot; }
int Slot(u32 x) const { return x >> m_bit_per_slot; }
const int m_bit_per_slot;
std::array<GLsync, SYNC_POINTS> m_fences{};