Skip to content
Snippets Groups Projects
Commit 2b0cf73b authored by Ameer J's avatar Ameer J
Browse files

gl_buffer_cache: Fix tfb binding typo

parent a093f3d4
No related branches found
No related tags found
No related merge requests found
......@@ -333,7 +333,7 @@ void BufferCacheRuntime::BindTransformFeedbackBuffers(VideoCommon::HostBindings<
glBindBuffersRange(GL_TRANSFORM_FEEDBACK_BUFFER, 0,
static_cast<GLsizei>(bindings.buffers.size()), buffer_handles.data(),
reinterpret_cast<const GLintptr*>(bindings.offsets.data()),
reinterpret_cast<const GLsizeiptr*>(bindings.strides.data()));
reinterpret_cast<const GLsizeiptr*>(bindings.sizes.data()));
}
void BufferCacheRuntime::BindTextureBuffer(Buffer& buffer, u32 offset, u32 size,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment