diff options
author | Chad Versace <[email protected]> | 2015-11-12 10:46:12 -0800 |
---|---|---|
committer | Chad Versace <[email protected]> | 2015-11-12 12:21:46 -0800 |
commit | bfb022a23552becfaa04509a93bbcf280657c5ee (patch) | |
tree | d9ebcffb72ac200de730d06fadfc028b7c4b1324 /src/vulkan/.gitignore | |
parent | 7986efc644d3e05491fc31f969c2e3039b2c5ade (diff) |
isl: Generate isl_format_layout.c
Generate an array of struct isl_format_layout, using
isl_format_layout.csv as input.
Each entry follows the patten:
[ISL_FORMAT_R32G32B32A32_FLOAT] = {
ISL_FORMAT_R32G32B32A32_FLOAT,
.bs = 16, .bpb = 128,
.bw = 1, .bh = 1, .bd = 1,
.channels = {
.r = { ISL_SFLOAT, 32 },
.g = { ISL_SFLOAT, 32 },
.b = { ISL_SFLOAT, 32 },
.a = { ISL_SFLOAT, 32 },
.l = {},
.i = {},
.p = {},
},
.colorspace = ISL_COLORSPACE_LINEAR,
.txc = ISL_TXC_NONE,
},
Diffstat (limited to 'src/vulkan/.gitignore')
-rw-r--r-- | src/vulkan/.gitignore | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vulkan/.gitignore b/src/vulkan/.gitignore index 6b9074d9f03..316d24a9b02 100644 --- a/src/vulkan/.gitignore +++ b/src/vulkan/.gitignore @@ -4,4 +4,5 @@ /anv_entrypoints.h /wayland-drm-protocol.c /wayland-drm-client-protocol.h -/anv_icd.json
\ No newline at end of file +/anv_icd.json +/isl_format_layout.c |