Replace supported_formats with is_format_supported interface.
authorMichal Krol <michal@tungstengraphics.com>
Sun, 28 Oct 2007 17:19:39 +0000 (17:19 +0000)
committerMichal Krol <michal@tungstengraphics.com>
Sun, 28 Oct 2007 17:34:39 +0000 (17:34 +0000)
commit3c8121967224f91bfcd5431b4069d66eecbc5952
tree0f02118d163e144074dc4e5cafd21fdfbcb2f7ee
parentb85cd7b70096cf7c922aed56ae8255fb4b8f0709
Replace supported_formats with is_format_supported interface.

The old supported_formats interface returned a list of formats
supported by a pipe/winsys implementation. This was reasonable
when gallium had a fixed list of predefined format.
Now things has changed and the definition of PIPE_FORMAT is
more flexible.
The new shiny is_format_supported interface gets PIPE_FORMAT
as an argument and returns a boolean whether this particular
format is supported.
src/mesa/drivers/x11/xm_api.c
src/mesa/drivers/x11/xm_surface.c
src/mesa/drivers/x11/xmesaP.h
src/mesa/pipe/failover/fo_context.c
src/mesa/pipe/i915simple/i915_context.c
src/mesa/pipe/p_context.h
src/mesa/pipe/softpipe/sp_context.c
src/mesa/pipe/softpipe/sp_winsys.h
src/mesa/state_tracker/st_cb_drawpixels.c
src/mesa/state_tracker/st_format.c