Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | pan/decode: Use GLSL style formats/swizzles | Alyssa Rosenzweig | 2019-08-21 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | This dramatically reduces visual clutter: now an entire attribute/varying record looks something like: rgba32f attribute_0[16].bgra; which is equivalent to the raw structure: { .index = 0, .format = MALI_FORMAT_RGBA32F, .swizzle = (MALI_CHANNEL_BLUE << 9) | ...., .src_offset = 16, } Signed-off-by: Alyssa Rosenzweig <[email protected]> | ||||
* | panfrost/decode: Drop _name suffixes | Alyssa Rosenzweig | 2019-07-12 | 1 | -1/+1 |
| | | | | Signed-off-by: Alyssa Rosenzweig <[email protected]> | ||||
* | panfrost: Move non-Gallium files outside of Gallium | Alyssa Rosenzweig | 2019-07-10 | 1 | -0/+226 |
In preparation for a Panfrost-based non-Gallium driver (maybe Vulkan...?), hoist everything except for the Gallium driver into a shared src/panfrost. Practically, that means the compilers, the headers, and pandecode. Signed-off-by: Alyssa Rosenzweig <[email protected]> |