vbo: fix resizing 64-bit vertex attributes
Reviewed-by: Mathias Fröhlich <mathias.froehlich@web.de> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3766>
This commit is contained in:
@@ -135,6 +135,8 @@ vbo_get_default_vals_as_union(GLenum format)
|
||||
{
|
||||
static const GLfloat default_float[4] = { 0, 0, 0, 1 };
|
||||
static const GLint default_int[4] = { 0, 0, 0, 1 };
|
||||
static const GLdouble default_double[4] = { 0, 0, 0, 1 };
|
||||
static const uint64_t default_uint64[4] = { 0, 0, 0, 1 };
|
||||
|
||||
switch (format) {
|
||||
case GL_FLOAT:
|
||||
@@ -142,6 +144,10 @@ vbo_get_default_vals_as_union(GLenum format)
|
||||
case GL_INT:
|
||||
case GL_UNSIGNED_INT:
|
||||
return (fi_type *)default_int;
|
||||
case GL_DOUBLE:
|
||||
return (fi_type *)default_double;
|
||||
case GL_UNSIGNED_INT64_ARB:
|
||||
return (fi_type *)default_uint64;
|
||||
default:
|
||||
unreachable("Bad vertex format");
|
||||
return NULL;
|
||||
|
||||
Reference in New Issue
Block a user