[rlgl] use GLint64 for glGetBufferParameteri64v

This commit is contained in:
Randy Palamar 2024-07-30 10:58:04 -06:00
parent 9e39788e07
commit 54ee8c7d4e
No known key found for this signature in database
GPG Key ID: DFEB021D855084B5

View File

@ -4397,7 +4397,7 @@ void rlUpdateShaderBuffer(unsigned int id, const void *data, unsigned int dataSi
// Get SSBO buffer size
unsigned int rlGetShaderBufferSize(unsigned int id)
{
long long size = 0;
GLint64 size = 0;
#if defined(GRAPHICS_API_OPENGL_43)
glBindBuffer(GL_SHADER_STORAGE_BUFFER, id);