Chromium Code Reviews| Index: gpu/gles2_conform_support/egl/config.cc |
| diff --git a/gpu/gles2_conform_support/egl/config.cc b/gpu/gles2_conform_support/egl/config.cc |
| index 6c914be905a340d258bb191eae8c6e4b41b304fe..9d37fc20b728f0c6f3ee8e72290467f1d9033cd3 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_TRUE), |
| + bind_to_texture_rgba_(EGL_TRUE), |
|
piman
2014/07/24 21:49:06
Make both of these EGL_FALSE. We don't support pbu
Peter Kasting
2014/07/24 21:52:09
Done. I only picked EGL_TRUE because EGL_DONT_CAR
|
| 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), |