replace abort() with _mesa_problem()

This commit is contained in:
Brian 2007-02-02 11:42:04 -07:00
parent 2f5b3c9607
commit 5c21747783

View file

@ -2124,8 +2124,11 @@ _slang_gen_field(slang_assemble_ctx * A, slang_operation *oper)
return n;
}
else {
/* the field is a structure member */
abort();
/* the field is a structure member (base.field) */
/* oper->children[0] is the base */
/* oper->a_id is the field name */
_mesa_problem(NULL, "glsl structs/fields not supported yet");
return NULL;
}
}