r300g: abort on unsupported vertex formats
This commit is contained in:
parent
d00b2560d5
commit
824e2afea0
1 changed files with 4 additions and 0 deletions
|
|
@ -374,6 +374,7 @@ r300_translate_vertex_data_type(enum pipe_format format) {
|
|||
fprintf(stderr, "r300: Bad format %s in %s:%d\n", util_format_name(format),
|
||||
__FUNCTION__, __LINE__);
|
||||
assert(0);
|
||||
abort();
|
||||
}
|
||||
|
||||
switch (desc->channel[0].type) {
|
||||
|
|
@ -395,6 +396,7 @@ r300_translate_vertex_data_type(enum pipe_format format) {
|
|||
fprintf(stderr, "r300: Bad format %s in %s:%d\n",
|
||||
util_format_name(format), __FUNCTION__, __LINE__);
|
||||
assert(0);
|
||||
abort();
|
||||
}
|
||||
break;
|
||||
/* Unsigned ints */
|
||||
|
|
@ -418,12 +420,14 @@ r300_translate_vertex_data_type(enum pipe_format format) {
|
|||
fprintf(stderr, "r300: desc->channel[0].size == %d\n",
|
||||
desc->channel[0].size);
|
||||
assert(0);
|
||||
abort();
|
||||
}
|
||||
break;
|
||||
default:
|
||||
fprintf(stderr, "r300: Bad format %s in %s:%d\n",
|
||||
util_format_name(format), __FUNCTION__, __LINE__);
|
||||
assert(0);
|
||||
abort();
|
||||
}
|
||||
|
||||
if (desc->channel[0].type == UTIL_FORMAT_TYPE_SIGNED) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue