Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(249)

Unified Diff: trunk/src/cc/output/delegating_renderer.cc

Issue 13334005: Revert 191400 "cc: Add ‘chromium_code’: 1 to cc.gyp and cc_t..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « trunk/src/cc/layers/video_layer_impl.cc ('k') | trunk/src/cc/output/geometry_binding.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/cc/output/delegating_renderer.cc
===================================================================
--- trunk/src/cc/output/delegating_renderer.cc (revision 191411)
+++ trunk/src/cc/output/delegating_renderer.cc (working copy)
@@ -85,6 +85,7 @@
bool has_set_visibility = true;
bool has_io_surface = true;
bool has_arb_texture_rect = true;
+ bool has_gpu_memory_manager = true;
bool has_egl_image = true;
for (size_t i = 0; i < extensions.size(); ++i) {
if (extensions[i] == "GL_EXT_read_format_bgra")
@@ -95,6 +96,8 @@
has_io_surface = true;
else if (extensions[i] == "GL_ARB_texture_rectangle")
has_arb_texture_rect = true;
+ else if (extensions[i] == "GL_CHROMIUM_gpu_memory_manager")
+ has_gpu_memory_manager = true;
else if (extensions[i] == "GL_OES_EGL_image_external")
has_egl_image = true;
}
« no previous file with comments | « trunk/src/cc/layers/video_layer_impl.cc ('k') | trunk/src/cc/output/geometry_binding.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698