
Commands used to do the changes: export SEARCH_PATH="src/intel src/gallium/drivers/iris src/mesa/drivers/dri/i965" grep -E "gen[[:digit:]]+" -rIl $SEARCH_PATH | xargs sed -ie "s/gen\([[:digit:]]\+\)/gfx\1/g" Exclude pack.h and xml changes in this patch: grep -E "gfx[[:digit:]]+_pack\.h" -rIl $SEARCH_PATH | xargs sed -ie "s/gfx\([[:digit:]]\+_pack\.h\)/gen\1/g" grep -E "gfx[[:digit:]]+\.xml" -rIl $SEARCH_PATH | xargs sed -ie "s/gfx\([[:digit:]]\+\.xml\)/gen\1/g" Signed-off-by: Anuj Phogat <anuj.phogat@gmail.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/9936>
14 lines
266 B
Plaintext
14 lines
266 B
Plaintext
Intel Vulkan ToDo
|
|
=================
|
|
|
|
Missing Features:
|
|
- Investigate CTS failures on HSW
|
|
- Sparse memory
|
|
|
|
Performance:
|
|
- Multi-{sampled/gfx8,LOD} HiZ
|
|
- MSAA fast clears
|
|
- Pushing pieces of UBOs?
|
|
- Enable guardband clipping
|
|
- Use soft-pin to avoid relocations
|