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:
Corentin Wallez 2015-05-04 12:53:10 -04:00
Родитель 92d7706da9
Коммит fc69293423
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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;