mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-13 07:40:24 +01:00
This trivially covers VA initialization/destruction path is working with the d3d12 gallium driver, and also check for leaks using appverifier. Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28577>
19 lines
433 B
Text
19 lines
433 B
Text
# escape=`
|
|
|
|
ARG base_image
|
|
FROM ${base_image}
|
|
|
|
COPY mesa_deps_vulkan_sdk.ps1 C:\
|
|
RUN C:\mesa_deps_vulkan_sdk.ps1
|
|
|
|
COPY mesa_init_msvc.ps1 C:\
|
|
|
|
COPY mesa_deps_libva.ps1 C:\
|
|
RUN C:\mesa_deps_libva.ps1
|
|
|
|
COPY mesa_deps_build.ps1 C:\
|
|
RUN C:\mesa_deps_build.ps1
|
|
|
|
# When building, `--isolation=process` can leverage all cores and memory
|
|
# docker build --isolation=process -f .\Dockerfile_build -t mesa_dep --build-arg base_image=mesa_vs .
|
|
|