diff options
author | José Fonseca <jfonseca@vmware.com> | 2010-04-01 13:20:00 +0100 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2010-04-01 13:20:00 +0100 |
commit | 9899ebd2fcb099279320d0bf77221d6b1e6e7cd9 (patch) | |
tree | 266261d7b789cca79b3506b2b331b0e3a91a8db3 /src/gallium | |
parent | d0995544923d8b67098627a8a9e7729613377789 (diff) | |
download | external_mesa3d-9899ebd2fcb099279320d0bf77221d6b1e6e7cd9.zip external_mesa3d-9899ebd2fcb099279320d0bf77221d6b1e6e7cd9.tar.gz external_mesa3d-9899ebd2fcb099279320d0bf77221d6b1e6e7cd9.tar.bz2 |
llvmpipe: Fix build...
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_tile_soa.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_tile_soa.py b/src/gallium/drivers/llvmpipe/lp_tile_soa.py index 4157000..c1226e4 100644 --- a/src/gallium/drivers/llvmpipe/lp_tile_soa.py +++ b/src/gallium/drivers/llvmpipe/lp_tile_soa.py @@ -45,6 +45,28 @@ sys.path.insert(0, os.path.join(os.path.dirname(sys.argv[0]), '../../auxiliary/u from u_format_pack import * +def is_format_supported(format): + '''Determines whether we actually have the plumbing necessary to generate the + to read/write to/from this format.''' + + # FIXME: Ideally we would support any format combination here. + + if format.layout != PLAIN: + return False + + for i in range(4): + channel = format.channels[i] + if channel.type not in (VOID, UNSIGNED, SIGNED, FLOAT): + return False + if channel.type == FLOAT and channel.size not in (32 ,64): + return False + + if format.colorspace not in ('rgb', 'srgb'): + return False + + return True + + def generate_format_read(format, dst_channel, dst_native_type, dst_suffix): '''Generate the function to read pixels from a particular format''' @@ -333,6 +355,7 @@ def main(): print '#include "pipe/p_compiler.h"' print '#include "util/u_format.h"' print '#include "util/u_math.h"' + print '#include "util/u_half.h"' print '#include "lp_tile_soa.h"' print print 'const unsigned char' |