The reason for the program crash is that for some reason the distributed 
version has been
compiled with assertions active, and the code contains assert(0).

This assert is after the DRI code which sets up an an out of memory error 
message.
   if (ret) {
       if (count == 0) {
           count++;
           intel_batchbuffer_flush(intel->batch);
           goto again;
       } else {
           _mesa_error(ctx, GL_OUT_OF_MEMORY, "i830 emit state");
           assert(0);
       }
   }

I suspect that in this case the GL_OUT_OF_MEMORY condition would have been 
more useful for me as an application developer. Maybe the library should be 
distributed
without the asserts compiled in?

-- 
opengl error with i830_vtbl.c:465: i830_emit_state: Assertion `0' failed.
https://bugs.launchpad.net/bugs/292010
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to