mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 13:28:06 +02:00
i965: Prevent using a zero sized (or of unknown type) vertex array
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
parent
137d44e0f2
commit
b93684f5f3
1 changed files with 6 additions and 5 deletions
|
|
@ -208,7 +208,7 @@ static GLuint get_surface_type( GLenum type, GLuint size,
|
|||
case GL_UNSIGNED_SHORT: return ushort_types_scale[size];
|
||||
case GL_UNSIGNED_BYTE: return ubyte_types_scale[size];
|
||||
default: assert(0); return 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -225,11 +225,11 @@ static GLuint get_size( GLenum type )
|
|||
case GL_UNSIGNED_INT: return sizeof(GLuint);
|
||||
case GL_UNSIGNED_SHORT: return sizeof(GLushort);
|
||||
case GL_UNSIGNED_BYTE: return sizeof(GLubyte);
|
||||
default: return 0;
|
||||
}
|
||||
default: assert(0); return 0;
|
||||
}
|
||||
}
|
||||
|
||||
static GLuint get_index_type(GLenum type)
|
||||
static GLuint get_index_type(GLenum type)
|
||||
{
|
||||
switch (type) {
|
||||
case GL_UNSIGNED_BYTE: return BRW_INDEX_BYTE;
|
||||
|
|
@ -295,7 +295,8 @@ static void brw_prepare_vertices(struct brw_context *brw)
|
|||
struct brw_vertex_element *input = &brw->vb.inputs[i];
|
||||
|
||||
vs_inputs &= ~(1 << i);
|
||||
brw->vb.enabled[brw->vb.nr_enabled++] = input;
|
||||
if (input->glarray->Size && get_size(input->glarray->Type))
|
||||
brw->vb.enabled[brw->vb.nr_enabled++] = input;
|
||||
}
|
||||
|
||||
if (brw->vb.nr_enabled == 0)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue