diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-26 00:01:53 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-26 00:01:53 +0000 |
commit | 5a3c1f066555b8aa18132bc0f03d13b5f7413357 (patch) | |
tree | 5df1604b4bdfa6701e6439b00d813d71f0d73674 /gpu | |
parent | 13a2b92fc3474d3a66f77051cfb75eb57cf6cfaa (diff) | |
download | chromium_src-5a3c1f066555b8aa18132bc0f03d13b5f7413357.zip chromium_src-5a3c1f066555b8aa18132bc0f03d13b5f7413357.tar.gz chromium_src-5a3c1f066555b8aa18132bc0f03d13b5f7413357.tar.bz2 |
Re-enable various MSVC warnings.
BUG=81439
TEST=none
Review URL: https://codereview.chromium.org/415773009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285730 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu')
-rw-r--r-- | gpu/gles2_conform_support/egl/config.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gpu/gles2_conform_support/egl/config.cc b/gpu/gles2_conform_support/egl/config.cc index 6c914be9..d6ce307 100644 --- a/gpu/gles2_conform_support/egl/config.cc +++ b/gpu/gles2_conform_support/egl/config.cc @@ -14,10 +14,10 @@ Config::Config() luminance_size_(0), alpha_size_(0), alpha_mask_size_(0), - bind_to_texture_rgb_(EGL_DONT_CARE), - bind_to_texture_rgba_(EGL_DONT_CARE), + bind_to_texture_rgb_(EGL_FALSE), + bind_to_texture_rgba_(EGL_FALSE), color_buffer_type_(EGL_RGB_BUFFER), - config_caveat_(EGL_DONT_CARE), + config_caveat_(EGL_NONE), config_id_(EGL_DONT_CARE), conformant_(EGL_OPENGL_ES2_BIT), depth_size_(0), @@ -27,7 +27,7 @@ Config::Config() max_pbuffer_pixels_(0), min_swap_interval_(EGL_DONT_CARE), max_swap_interval_(EGL_DONT_CARE), - native_renderable_(EGL_DONT_CARE), + native_renderable_(EGL_TRUE), native_visual_id_(0), native_visual_type_(EGL_DONT_CARE), renderable_type_(EGL_OPENGL_ES2_BIT), |