| Index: content/common/gpu/client/context_provider_command_buffer.cc
|
| diff --git a/content/common/gpu/client/context_provider_command_buffer.cc b/content/common/gpu/client/context_provider_command_buffer.cc
|
| index b620692936712dbec1e3256aad45c404c5fec91d..3a685bf3aa062bbe390cb93ffa692f9f0f65eecc 100644
|
| --- a/content/common/gpu/client/context_provider_command_buffer.cc
|
| +++ b/content/common/gpu/client/context_provider_command_buffer.cc
|
| @@ -277,6 +277,10 @@ bool ContextProviderCommandBuffer::InitializeCapabilities() {
|
|
|
| caps.texture_format_bgra8888 =
|
| extension_set.count("GL_EXT_texture_format_BGRA8888") > 0;
|
| +
|
| + caps.texture_format_etc1 =
|
| + extension_set.count("GL_OES_compressed_ETC1_RGB8_texture") > 0;
|
| +
|
| caps.texture_rectangle = extension_set.count("GL_ARB_texture_rectangle") > 0;
|
|
|
| caps.post_sub_buffer = extension_set.count("GL_CHROMIUM_post_sub_buffer") > 0;
|
|
|