mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-07-10 01:54:46 -06:00
gl: Fix linux build
This commit is contained in:
parent
ff68a1ea09
commit
00c57be1ed
@ -5,8 +5,8 @@ namespace gl::ex
|
||||
{
|
||||
void glNamedBufferStorageEX(GLuint buffer, GLenum target, GLsizeiptr size, const void* data, GLbitfield flags)
|
||||
{
|
||||
GLint restore = GL_NONE;
|
||||
glGetIntegerv(target, &restore);
|
||||
GLuint restore = GL_NONE;
|
||||
glGetIntegerv(target, utils::bless<GLint>(&restore));
|
||||
|
||||
glBindBuffer(target, buffer);
|
||||
glBufferStorage(target, size, data, flags);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user