mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-22 13:08:09 +02:00
According to the Vulkan spec 5.63.4 : samplerAnisotropy indicates whether anisotropic filtering is supported. If this feature is not enabled, the maxAnisotropy member of the VkSamplerCreateInfo structure must be 1.0. Since we already set maxAnisotropy to 16 and program the hardware according to the VkSamplerCreateInfo.maxAnisotropy, it seems we can turn this on. Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
32 lines
860 B
Text
32 lines
860 B
Text
Intel Vulkan ToDo
|
|
=================
|
|
|
|
Missing Features:
|
|
- FP64
|
|
- Tessellation
|
|
- Cull and Clip Distance
|
|
- Image Gather Extended
|
|
- Storage Image Without Format
|
|
- Investigate CTS failures on HSW
|
|
- Pipeline statistics queries
|
|
- Sparse memory
|
|
- Per-sample-dispatch, minSampleShading
|
|
|
|
Code sharing with GL:
|
|
- Add surface capability introspection to ISL (pull the surface format
|
|
table from brw_surface_formats.c)
|
|
- Generalize blorp to use ISL and be sharable between the two drivers
|
|
|
|
Performance:
|
|
- Multi-{sampled/gen8,LOD,subpass} HiZ
|
|
- Fast color clears (after HiZ?)
|
|
- Compressed multisample support
|
|
- Renderbuffer compression (SKL+)
|
|
- Pushing pieces of UBOs?
|
|
- Enable guardband clipping
|
|
- Remove alloc in renderpass begin to renderpass create
|
|
- pma stall workaround
|
|
- Use soft-pin to avoid relocations
|
|
|
|
Cleanups:
|
|
- Deduplicate gen7 and gen8
|