Module: Mesa Branch: master Commit: c966c6980c2a4a1e50b238f7607a9ce111f6c0b4 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=c966c6980c2a4a1e50b238f7607a9ce111f6c0b4
Author: Brian Paul <bri...@vmware.com> Date: Mon Feb 21 16:46:02 2011 -0700 st/mesa: fix the default case in st_format_datatype() Part of the fix for piglit fbo-clear-formats NOTE: This is a candidate for the 7.9 and 7.10 branches. --- src/mesa/state_tracker/st_format.c | 7 ++----- 1 files changed, 2 insertions(+), 5 deletions(-) diff --git a/src/mesa/state_tracker/st_format.c b/src/mesa/state_tracker/st_format.c index a532e08..3f9c322 100644 --- a/src/mesa/state_tracker/st_format.c +++ b/src/mesa/state_tracker/st_format.c @@ -113,12 +113,9 @@ st_format_datatype(enum pipe_format format) return GL_UNSIGNED_SHORT; } else { - /* compressed format? */ - assert(0); + /* probably a compressed format, unsupported anyway */ + return GL_NONE; } - - assert(0); - return GL_NONE; } _______________________________________________ mesa-commit mailing list mesa-commit@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-commit