diff options
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_screen.c')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_screen.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_screen.c b/src/gallium/drivers/llvmpipe/lp_screen.c index 1464776aa06..daf149138df 100644 --- a/src/gallium/drivers/llvmpipe/lp_screen.c +++ b/src/gallium/drivers/llvmpipe/lp_screen.c @@ -287,6 +287,11 @@ llvmpipe_is_format_supported( struct pipe_screen *_screen, return FALSE; } + /* llvmpipe doesn't support pure integer yet */ + if (util_format_is_pure_integer(format)) { + return FALSE; + } + /* * Everything else should be supported by u_format. */ |