diff options
author | Samuel Iglesias Gonsalvez <[email protected]> | 2014-10-08 11:06:21 +0200 |
---|---|---|
committer | Iago Toral Quiroga <[email protected]> | 2015-01-12 11:20:28 +0100 |
commit | c5a5c9a7db898145774524415a3a94fe75ddb364 (patch) | |
tree | 9a2d2796d04ae8533386f2b32e9ee6a73b1fc46c /src/mesa/main/format_unpack.py | |
parent | f8d160fc96cccb46040d47b4dead31c81375e6b6 (diff) |
mesa/formats: add new mesa formats and their pack/unpack functions.
This will be used to refactor code in pack.c and support conversion
to/from these types in a master convert function that will be added
later.
v2:
- Fix autogeneration of MESA_FORMAT_A2R10G10B10_UNORM pack/unpack
functions
Signed-off-by: Samuel Iglesias Gonsalvez <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/mesa/main/format_unpack.py')
-rw-r--r-- | src/mesa/main/format_unpack.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/main/format_unpack.py b/src/mesa/main/format_unpack.py index f71ca359ab1..2276a1063f5 100644 --- a/src/mesa/main/format_unpack.py +++ b/src/mesa/main/format_unpack.py @@ -260,7 +260,6 @@ unpack_ubyte_${f.short_name()}(const void *void_src, GLubyte dst[4]) } %endfor - /* integer packing functions */ %for f in rgb_formats: |