From fc69293423011f0bd1da458889628a4e0cf91e84 Mon Sep 17 00:00:00 2001 From: Corentin Wallez Date: Mon, 4 May 2015 12:53:10 -0400 Subject: [PATCH] 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 Tested-by: Corentin Wallez --- util/EGLWindow.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/EGLWindow.h b/util/EGLWindow.h index b348fe4bf..8ee7acb4d 100644 --- a/util/EGLWindow.h +++ b/util/EGLWindow.h @@ -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;