Commit fc692934 by Corentin Wallez

Fix signed to unsigned integer conversion warning in EGLWindow.h

Change-Id: I7b4249e04c8fb76b60b4c837266b144fbd64cbf6 Reviewed-on: https://chromium-review.googlesource.com/269128Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org> Tested-by: 's avatarCorentin Wallez <cwallez@chromium.org>
parent 92d7706d
...@@ -64,7 +64,7 @@ class EGLWindow : angle::NonCopyable ...@@ -64,7 +64,7 @@ class EGLWindow : angle::NonCopyable
void swap(); void swap();
GLuint getClientVersion() const { return mClientVersion; } EGLint getClientVersion() const { return mClientVersion; }
const EGLPlatformParameters &getPlatform() const { return mPlatform; } const EGLPlatformParameters &getPlatform() const { return mPlatform; }
EGLConfig getConfig() const; EGLConfig getConfig() const;
EGLDisplay getDisplay() const; EGLDisplay getDisplay() const;
...@@ -91,7 +91,7 @@ class EGLWindow : angle::NonCopyable ...@@ -91,7 +91,7 @@ class EGLWindow : angle::NonCopyable
EGLSurface mSurface; EGLSurface mSurface;
EGLContext mContext; EGLContext mContext;
GLuint mClientVersion; EGLint mClientVersion;
EGLPlatformParameters mPlatform; EGLPlatformParameters mPlatform;
size_t mWidth; size_t mWidth;
size_t mHeight; size_t mHeight;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment