video_core: Make ARB_buffer_storage a required extension

This commit is contained in:
ReinUsesLisp
2019-04-28 18:12:28 -03:00
parent 07f7ce1da2
commit 58c0d37422
5 changed files with 12 additions and 8 deletions

View File

@@ -13,7 +13,8 @@ namespace OpenGL {
class OGLStreamBuffer : private NonCopyable {
public:
explicit OGLStreamBuffer(GLsizeiptr size, bool vertex_data_usage, bool prefer_coherent = false);
explicit OGLStreamBuffer(GLsizeiptr size, bool vertex_data_usage, bool prefer_coherent = false,
bool use_persistent = true);
~OGLStreamBuffer();
GLuint GetHandle() const;