зеркало из https://github.com/AvaloniaUI/angle.git
Fix signed to unsigned integer conversion warning in EGLWindow.h
Change-Id: I7b4249e04c8fb76b60b4c837266b144fbd64cbf6 Reviewed-on: https://chromium-review.googlesource.com/269128 Reviewed-by: Geoff Lang <geofflang@chromium.org> Tested-by: Corentin Wallez <cwallez@chromium.org>
This commit is contained in:
Родитель
92d7706da9
Коммит
fc69293423
|
@ -64,7 +64,7 @@ class EGLWindow : angle::NonCopyable
|
|||
|
||||
void swap();
|
||||
|
||||
GLuint getClientVersion() const { return mClientVersion; }
|
||||
EGLint getClientVersion() const { return mClientVersion; }
|
||||
const EGLPlatformParameters &getPlatform() const { return mPlatform; }
|
||||
EGLConfig getConfig() const;
|
||||
EGLDisplay getDisplay() const;
|
||||
|
@ -91,7 +91,7 @@ class EGLWindow : angle::NonCopyable
|
|||
EGLSurface mSurface;
|
||||
EGLContext mContext;
|
||||
|
||||
GLuint mClientVersion;
|
||||
EGLint mClientVersion;
|
||||
EGLPlatformParameters mPlatform;
|
||||
size_t mWidth;
|
||||
size_t mHeight;
|
||||
|
|
Загрузка…
Ссылка в новой задаче