diff options
author | Jason Ekstrand <jason.ekstrand@intel.com> | 2017-06-22 11:51:55 -0700 |
---|---|---|
committer | Jason Ekstrand <jason.ekstrand@intel.com> | 2017-07-22 20:59:22 -0700 |
commit | fb86ac94cb4973fb62699896be2c9ff8f9d90ce5 (patch) | |
tree | a59fcc62c64c2e66e9d1a057d059ebe8fe2d9b27 /src/intel | |
parent | 44e9d65757640c2bbab73a7260ee1a53eefd799c (diff) |
intel/isl/format: Add an srgb_to_linear helper
Reviewed-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
Diffstat (limited to 'src/intel')
-rw-r--r-- | src/intel/isl/gen_format_layout.py | 46 | ||||
-rw-r--r-- | src/intel/isl/isl.h | 8 |
2 files changed, 53 insertions, 1 deletions
diff --git a/src/intel/isl/gen_format_layout.py b/src/intel/isl/gen_format_layout.py index aa4e2d8cb9..0ca42dbab8 100644 --- a/src/intel/isl/gen_format_layout.py +++ b/src/intel/isl/gen_format_layout.py @@ -88,6 +88,19 @@ isl_format_layouts[] = { % endfor }; + +enum isl_format +isl_format_srgb_to_linear(enum isl_format format) +{ + switch (format) { +% for srgb, rgb in srgb_to_linear_map: + case ISL_FORMAT_${srgb}: + return ISL_FORMAT_${rgb}; +%endfor + default: + return format; + } +} """) @@ -167,6 +180,34 @@ def reader(csvfile): if line and not line[0].startswith('#'): yield line +def get_srgb_to_linear_map(formats): + """Compute a map from sRGB to linear formats. + + This function uses some probably somewhat fragile string munging to do + the conversion. However, we do assert that, if it's SRGB, the munging + succeeded so that gives some safety. + """ + names = {f.name for f in formats} + for fmt in formats: + if fmt.colorspace != 'SRGB': + continue + + replacements = [ + ('_SRGB', ''), + ('SRGB', 'RGB'), + ('U8SRGB', 'FLT16'), + ] + + found = False; + for rep in replacements: + rgb_name = fmt.name.replace(rep[0], rep[1]) + if rgb_name in names: + found = True + yield fmt.name, rgb_name + break; + + # We should have found a format name + assert found def main(): """Main function.""" @@ -183,11 +224,14 @@ def main(): # problem: Unicode can be rendered even if the shell calling this script # doesn't. with open(args.out, 'wb') as f: + formats = [Format(l) for l in reader(args.csv)] try: # This basically does lazy evaluation and initialization, which # saves on memory and startup overhead. f.write(TEMPLATE.render( - formats=(Format(l) for l in reader(args.csv)))) + formats = formats, + srgb_to_linear_map = list(get_srgb_to_linear_map(formats)), + )) except Exception: # In the even there's an error this imports some helpers from mako # to print a useful stack trace and prints it, then exits with diff --git a/src/intel/isl/isl.h b/src/intel/isl/isl.h index b9f9fb60d0..b61a0dd861 100644 --- a/src/intel/isl/isl.h +++ b/src/intel/isl/isl.h @@ -1499,6 +1499,14 @@ isl_format_block_is_1x1x1(enum isl_format fmt) } static inline bool +isl_format_is_srgb(enum isl_format fmt) +{ + return isl_format_layouts[fmt].colorspace == ISL_COLORSPACE_SRGB; +} + +enum isl_format isl_format_srgb_to_linear(enum isl_format fmt); + +static inline bool isl_format_is_rgb(enum isl_format fmt) { return isl_format_layouts[fmt].channels.r.bits > 0 && |