Merge pull request #1070 from bunnei/cbuf-sz

gl_rasterizer: Fix upload size for constant buffers.
This commit is contained in:
bunnei 2018-08-14 23:14:24 -04:00 committed by GitHub
commit 2a42dea568
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -648,11 +648,11 @@ std::tuple<u8*, GLintptr, u32> RasterizerOpenGL::SetupConstBuffers(
if (used_buffer.IsIndirect()) {
// Buffer is accessed indirectly, so upload the entire thing
size = buffer.size * sizeof(float);
size = buffer.size;
if (size > MaxConstbufferSize) {
LOG_ERROR(HW_GPU, "indirect constbuffer size {} exceeds maximum {}", size,
MaxConstbufferSize);
LOG_CRITICAL(HW_GPU, "indirect constbuffer size {} exceeds maximum {}", size,
MaxConstbufferSize);
size = MaxConstbufferSize;
}
} else {