From 0f320b7a1db5fd618b1aa35b48a387ee0c00b4b7 Mon Sep 17 00:00:00 2001 From: Emma Anholt Date: Wed, 17 Sep 2025 10:40:08 -0700 Subject: [PATCH] d3d10umd: Add missing dependency on u_formats codegen. Fixes this error during Shader.cpp build: ..\src\util/format/u_formats.h(33): fatal error C1083: Cannot open include file: 'util/format/u_format_gen.h': No such file or directory Part-of: --- src/gallium/frontends/d3d10umd/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/frontends/d3d10umd/meson.build b/src/gallium/frontends/d3d10umd/meson.build index bcfe8c24fd5..614db9143f2 100644 --- a/src/gallium/frontends/d3d10umd/meson.build +++ b/src/gallium/frontends/d3d10umd/meson.build @@ -30,4 +30,5 @@ libd3d10umd = static_library( include_directories : [ inc_include, inc_src, inc_gallium, inc_gallium_aux, inc_winddk, ], + dependencies: idep_mesautilformat, )