Renamed Gpu to GPU

This commit is contained in:
Sam Lantinga
2024-08-29 16:08:10 -07:00
parent 717f4f6fb4
commit d70578b9aa
24 changed files with 2469 additions and 2469 deletions

View File

@@ -691,8 +691,8 @@
( (This)->Wait(pFence,Value) )
#define ID3D12CommandQueue_GetTimestampFrequency(This,pFrequency) \
( (This)->GetTimestampFrequency(pFrequency) )
#define ID3D12CommandQueue_GetClockCalibration(This,pGpuTimestamp,pCpuTimestamp) \
( (This)->GetClockCalibration(pGpuTimestamp,pCpuTimestamp) )
#define ID3D12CommandQueue_GetClockCalibration(This,pGPUTimestamp,pCpuTimestamp) \
( (This)->GetClockCalibration(pGPUTimestamp,pCpuTimestamp) )
#define ID3D12Device_QueryInterface(This,riid,ppvObject) \
( (This)->QueryInterface(riid,ppvObject) )
#define ID3D12Device_AddRef(This) \

View File

@@ -8670,7 +8670,7 @@ EXTERN_C const IID IID_ID3D12CommandQueue;
_Out_ UINT64 *pFrequency) = 0;
virtual HRESULT STDMETHODCALLTYPE GetClockCalibration(
_Out_ UINT64 *pGpuTimestamp,
_Out_ UINT64 *pGPUTimestamp,
_Out_ UINT64 *pCpuTimestamp) = 0;
#if defined(_MSC_VER) || !defined(_WIN32)
@@ -8802,7 +8802,7 @@ EXTERN_C const IID IID_ID3D12CommandQueue;
DECLSPEC_XFGVIRT(ID3D12CommandQueue, GetClockCalibration)
HRESULT ( STDMETHODCALLTYPE *GetClockCalibration )(
ID3D12CommandQueue * This,
_Out_ UINT64 *pGpuTimestamp,
_Out_ UINT64 *pGPUTimestamp,
_Out_ UINT64 *pCpuTimestamp);
DECLSPEC_XFGVIRT(ID3D12CommandQueue, GetDesc)
@@ -8885,8 +8885,8 @@ EXTERN_C const IID IID_ID3D12CommandQueue;
#define ID3D12CommandQueue_GetTimestampFrequency(This,pFrequency) \
( (This)->lpVtbl -> GetTimestampFrequency(This,pFrequency) )
#define ID3D12CommandQueue_GetClockCalibration(This,pGpuTimestamp,pCpuTimestamp) \
( (This)->lpVtbl -> GetClockCalibration(This,pGpuTimestamp,pCpuTimestamp) )
#define ID3D12CommandQueue_GetClockCalibration(This,pGPUTimestamp,pCpuTimestamp) \
( (This)->lpVtbl -> GetClockCalibration(This,pGPUTimestamp,pCpuTimestamp) )
#if !defined(_WIN32)
#define ID3D12CommandQueue_GetDesc(This) \
@@ -29176,7 +29176,7 @@ DEFINE_ENUM_FLAG_OPERATORS( D3D12_DEVICE_FLAGS )
typedef struct D3D12_DEVICE_CONFIGURATION_DESC
{
D3D12_DEVICE_FLAGS Flags;
UINT GpuBasedValidationFlags;
UINT GPUBasedValidationFlags;
UINT SDKVersion;
UINT NumEnabledExperimentalFeatures;
} D3D12_DEVICE_CONFIGURATION_DESC;