OGL-StreamBuffer: allocate fences in StreamBuffer directly

This commit is contained in:
degasus
2014-06-05 10:40:17 +02:00
parent e2cfb7f0fa
commit d81d2e8915
2 changed files with 2 additions and 5 deletions

View File

@ -46,7 +46,8 @@ protected:
size_t m_free_iterator;
private:
GLsync *fences;
static const u32 SYNC_POINTS = 16;
GLsync fences[SYNC_POINTS];
};
}