Stefan Dirsch
328105545c
* Some interesting highlights include: + New PowerVR Vulkan driver for Imagination's GPU + NVIDIA Vulkan driver NVK has seen many improvements + AMD Vulkan driver RADV ray-tracing performance improvements + Microsoft OpenGL driver D3D12 has reached OpenGL 4.6 support * New extensions & features (in no particular order): + VK_EXT_image_compression_control on RADV + VK_EXT_device_fault on RADV + OpenGL 3.3 on Asahi + Geometry shaders on Asahi + GL_ARB_texture_cube_map_array on Asahi + GL_ARB_clip_control on Asahi + GL_ARB_timer_query on Asahi + GL_EXT_disjoint_timer_query on Asahi + GL_ARB_base_instance on Asahi + OpenGL 4.6 (up from 4.2) on d3d12 + VK_EXT_depth_clamp_zero_one on RADV + GL_ARB_shader_texture_image_samples on Asahi + GL_ARB_indirect_parameters on Asahi + GL_ARB_viewport_array on Asahi + GL_ARB_fragment_layer_viewport on Asahi + GL_ARB_cull_distance on Asahi + GL_ARB_transform_feedback_overflow_query on Asahi + VK_KHR_calibrated_timestamps on RADV + VK_KHR_vertex_attribute_divisor on RADV + VK_KHR_maintenance6 on RADV + VK_KHR_ray_tracing_position_fetch on RADV + EGL_EXT_query_reset_notification_strategy - supersedes U_fix-ac-llvm-LLVM-18-remove-useless-passes.patch - adjusted n_add-Mesa-headers-again.patch, u_dep_xcb.patch - disabled python36-buildfix1.patch - removed disabled patch u_fix-build-on-ppc64le.patch OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/Mesa?expand=0&rev=1271
17 lines
642 B
Diff
17 lines
642 B
Diff
Index: mesa-24.0.3/meson.build
|
|
===================================================================
|
|
--- mesa-24.0.3.orig/meson.build
|
|
+++ mesa-24.0.3/meson.build
|
|
@@ -2069,9 +2069,11 @@ if with_platform_x11
|
|
endif
|
|
endif
|
|
if with_any_vk or with_egl or (with_glx == 'dri' and with_dri_platform == 'drm')
|
|
+ dep_x11_xcb = dependency('x11-xcb')
|
|
dep_xcb_dri2 = dependency('xcb-dri2', version : '>= 1.8')
|
|
|
|
if with_dri3
|
|
+ dep_xcb = dependency('xcb')
|
|
dep_xcb_dri3 = dependency('xcb-dri3')
|
|
dep_xcb_present = dependency('xcb-present')
|
|
# until xcb-dri3 has been around long enough to make a hard-dependency:
|