d3d12: Add missing using Microsoft::WRL:ComPtr in d3d12_context_common

Fixes: b06b2fbaba ("d3d12: Remove Agility v717 guards for features now available in v618")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/39457>
(cherry picked from commit 237313a243)
This commit is contained in:
Silvio Vilerino 2026-01-22 09:40:33 -05:00 committed by Eric Engestrom
parent fefa2b1e68
commit 944bcc85a0
2 changed files with 6 additions and 1 deletions

View file

@ -3514,7 +3514,7 @@
"description": "d3d12: Add missing using Microsoft::WRL:ComPtr in d3d12_context_common",
"nominated": true,
"nomination_type": 2,
"resolution": 0,
"resolution": 1,
"main_sha": null,
"because_sha": "b06b2fbaba0902885bb97f4d0fe643a8f2d82993",
"notes": null

View file

@ -62,6 +62,11 @@
#include <string.h>
#include "d3d12_interop_public.h"
#ifndef _GAMING_XBOX
#include <wrl/client.h>
using Microsoft::WRL::ComPtr;
#endif
static void
d3d12_context_destroy(struct pipe_context *pctx)
{