SWDEV-562996 - Build fix: Ubertrace callback calling convention mismatch on x86 (#1587)

Co-authored-by: Rakesh Roy <137397847+rakesroy@users.noreply.github.com>
Этот коммит содержится в:
pcritchl-amd
2025-11-04 21:07:45 -08:00
коммит произвёл GitHub
родитель 78e9e47852
Коммит 8d31383dfe
+3 -3
Просмотреть файл
@@ -57,9 +57,9 @@ UberTraceCaptureMgr* UberTraceCaptureMgr::Create(Pal::IPlatform* platform, const
return mgr;
}
static void UberTraceStateChangeCallback(const GpuUtil::TraceSession& pTraceSession,
GpuUtil::TraceSessionState newState,
void* pPrivateData)
static void PAL_STDCALL UberTraceStateChangeCallback(const GpuUtil::TraceSession& pTraceSession,
GpuUtil::TraceSessionState newState,
void* pPrivateData)
{
UberTraceCaptureMgr* mgr = static_cast<UberTraceCaptureMgr*>(pPrivateData);