anv/formats: Add surface_format initializer

v2: Rename __brw_fmt to __hw_fmt (Chad)

Suggested-by: Jason Ekstrand <jason.ekstrand@intel.com>
Reviewed-by: Chad Versace chad.versace@intel.com
This commit is contained in:
Nanley Chery 2015-09-29 14:53:28 -07:00
parent 3ee923f1c2
commit a6c7d1e016

View file

@ -26,8 +26,8 @@
#define UNSUPPORTED 0xffff
#define fmt(__vk_fmt, ...) \
[__vk_fmt] = { .vk_format = __vk_fmt, .name = #__vk_fmt, __VA_ARGS__ }
#define fmt(__vk_fmt, __hw_fmt, ...) \
[__vk_fmt] = { .vk_format = __vk_fmt, .name = #__vk_fmt, .surface_format = __hw_fmt, __VA_ARGS__ }
static const struct anv_format anv_formats[] = {
fmt(VK_FORMAT_UNDEFINED, RAW, .bs = 1, .num_channels = 1),