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

Unified Diff: cc/output/ca_layer_overlay.cc

Issue 2121043002: 16 bpp video stream capture, render and WebGL usage - Realsense R200 & SR300 support. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 2 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 | « cc/layers/video_layer_impl.cc ('k') | cc/output/gl_renderer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/output/ca_layer_overlay.cc
diff --git a/cc/output/ca_layer_overlay.cc b/cc/output/ca_layer_overlay.cc
index c949d259156fb89b204acb80ee368b69bf0b7d92..8fdf8254ca23b2b47706de78eb63bc29b78a0a24 100644
--- a/cc/output/ca_layer_overlay.cc
+++ b/cc/output/ca_layer_overlay.cc
@@ -51,6 +51,7 @@ enum CALayerResult {
CA_LAYER_FAILED_RENDER_PASS_FILTER_OPERATION,
CA_LAYER_FAILED_RENDER_PASS_SORTING_CONTEXT_ID,
CA_LAYER_FAILED_TOO_MANY_RENDER_PASS_DRAW_QUADS,
+ CA_LAYER_FAILED_Y_VIDEO_CONTENT,
CA_LAYER_FAILED_COUNT,
};
@@ -237,6 +238,8 @@ class CALayerOverlayProcessor {
return CA_LAYER_FAILED_SURFACE_CONTENT;
case DrawQuad::YUV_VIDEO_CONTENT:
return CA_LAYER_FAILED_YUV_VIDEO_CONTENT;
+ case DrawQuad::Y_VIDEO_CONTENT:
+ return CA_LAYER_FAILED_Y_VIDEO_CONTENT;
default:
break;
}
« no previous file with comments | « cc/layers/video_layer_impl.cc ('k') | cc/output/gl_renderer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698