gl_resource_manager: Correct MakeStreamCopy
This commit is contained in:
parent
58c8a44e7a
commit
36665ce0b2
2 changed files with 2 additions and 3 deletions
|
@ -149,8 +149,7 @@ void OGLBuffer::Release() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void OGLBuffer::MakeStreamCopy(std::size_t buffer_size) {
|
void OGLBuffer::MakeStreamCopy(std::size_t buffer_size) {
|
||||||
if (handle == 0 || buffer_size == 0)
|
ASSERT_OR_EXECUTE((handle == 0 || buffer_size == 0), { return; });
|
||||||
return;
|
|
||||||
|
|
||||||
glNamedBufferData(handle, buffer_size, nullptr, GL_STREAM_COPY);
|
glNamedBufferData(handle, buffer_size, nullptr, GL_STREAM_COPY);
|
||||||
}
|
}
|
||||||
|
|
|
@ -186,7 +186,7 @@ public:
|
||||||
/// Deletes the internal OpenGL resource
|
/// Deletes the internal OpenGL resource
|
||||||
void Release();
|
void Release();
|
||||||
|
|
||||||
// Converts the buffer into a persistant storage buffer
|
// Converts the buffer into a stream copy buffer with a fixed size
|
||||||
void MakeStreamCopy(std::size_t buffer_size);
|
void MakeStreamCopy(std::size_t buffer_size);
|
||||||
|
|
||||||
GLuint handle = 0;
|
GLuint handle = 0;
|
||||||
|
|
Loading…
Reference in a new issue