diff options
author | Axel Davy <davyaxel0@gmail.com> | 2018-09-16 17:24:45 +0200 |
---|---|---|
committer | Axel Davy <davyaxel0@gmail.com> | 2018-10-26 22:16:16 +0200 |
commit | e50d374b6140a610e61fa0da9d5d69f7cb9ef914 (patch) | |
tree | d4f8f60e49b42ccd848c29a95eae3c765d9f7cbd /include | |
parent | 3d975e98e4abac853fcbb35dbb1537d2069d5125 (diff) | |
download | mesa-e50d374b6140a610e61fa0da9d5d69f7cb9ef914.tar.gz mesa-e50d374b6140a610e61fa0da9d5d69f7cb9ef914.tar.bz2 mesa-e50d374b6140a610e61fa0da9d5d69f7cb9ef914.zip |
d3dadapter: Fix wrong naming in header file
GetWindowInfo used to be GetWindowSize before gallium
nine was merged. A left-over remained...
Signed-off-by: Axel Davy <davyaxel0@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/d3dadapter/present.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/d3dadapter/present.h b/include/d3dadapter/present.h index 95e8d679e35..0325ebc511f 100644 --- a/include/d3dadapter/present.h +++ b/include/d3dadapter/present.h @@ -125,7 +125,7 @@ struct ID3DPresent #define ID3DPresent_SetCursorPos(p,a) (p)->lpVtbl->SetCursorPos(p,a) #define ID3DPresent_SetCursor(p,a,b,c) (p)->lpVtbl->SetCursor(p,a,b,c) #define ID3DPresent_SetGammaRamp(p,a,b) (p)->lpVtbl->SetGammaRamp(p,a,b) -#define ID3DPresent_GetWindowInfo(p,a,b,c,d) (p)->lpVtbl->GetWindowSize(p,a,b,c,d) +#define ID3DPresent_GetWindowInfo(p,a,b,c,d) (p)->lpVtbl->GetWindowInfo(p,a,b,c,d) #define ID3DPresent_GetWindowOccluded(p) (p)->lpVtbl->GetWindowOccluded(p) #define ID3DPresent_ResolutionMismatch(p) (p)->lpVtbl->ResolutionMismatch(p) #define ID3DPresent_CreateThread(p,a,b) (p)->lpVtbl->CreateThread(p,a,b) |