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

Unified Diff: media/renderers/skcanvas_video_renderer.h

Issue 2767063002: 16-bit video upload to float: intermediate R16_EXT and copy to float. (Closed)
Patch Set: Nit. Created 3 years, 8 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 | « gpu/ipc/common/gpu_command_buffer_traits_multi.h ('k') | media/renderers/skcanvas_video_renderer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/renderers/skcanvas_video_renderer.h
diff --git a/media/renderers/skcanvas_video_renderer.h b/media/renderers/skcanvas_video_renderer.h
index 1f3d2f7f4ed349972719cc208cd20d27d908f2dc..ae76c1d4664f357cd3c1ef08b61369941d14d332 100644
--- a/media/renderers/skcanvas_video_renderer.h
+++ b/media/renderers/skcanvas_video_renderer.h
@@ -28,6 +28,10 @@ namespace gfx {
class RectF;
}
+namespace gpu {
+struct Capabilities;
+}
+
namespace media {
// TODO(enne): rename to PaintCanvasVideoRenderer
@@ -103,13 +107,19 @@ class MEDIA_EXPORT SkCanvasVideoRenderer {
bool premultiply_alpha,
bool flip_y);
- // Converts unsigned 16-bit value to target |format| for Y16 format and
- // calls WebGL texImage2D.
- // |level|, |internal_format|, |format|, |type| are WebGL texImage2D
- // parameters.
+ // Calls texImage2D where the texture image data source is the contents of
+ // |video_frame|. Texture |texture| needs to be created and bound to |target|
+ // before this call and the binding is active upon return.
+ // This is an optimization of WebGL |video_frame| TexImage2D implementation
+ // for specific combinations of |video_frame| and |texture| formats; e.g. if
+ // |frame format| is Y16, optimizes conversion of normalized 16-bit content
+ // and calls texImage2D to |texture|. |level|, |internal_format|, |format| and
+ // |type| are WebGL texImage2D parameters.
// Returns false if there is no implementation for given parameters.
static bool TexImage2D(unsigned target,
+ unsigned texture,
gpu::gles2::GLES2Interface* gl,
+ const gpu::Capabilities& gpu_capabilities,
VideoFrame* video_frame,
int level,
int internalformat,
@@ -118,10 +128,13 @@ class MEDIA_EXPORT SkCanvasVideoRenderer {
bool flip_y,
bool premultiply_alpha);
- // Converts unsigned 16-bit value to target |format| for Y16 format and
- // calls WebGL texSubImage2D.
- // |level|, |format|, |type|, |xoffset| and |yoffset| are texSubImage2D
- // parameters.
+ // Calls texSubImage2D where the texture image data source is the contents of
+ // |video_frame|.
+ // This is an optimization of WebGL |video_frame| TexSubImage2D implementation
+ // for specific combinations of |video_frame| and texture |format| and |type|;
+ // e.g. if |frame format| is Y16, converts unsigned 16-bit value to target
+ // |format| and calls WebGL texSubImage2D. |level|, |format|, |type|,
+ // |xoffset| and |yoffset| are texSubImage2D parameters.
// Returns false if there is no implementation for given parameters.
static bool TexSubImage2D(unsigned target,
gpu::gles2::GLES2Interface* gl,
« no previous file with comments | « gpu/ipc/common/gpu_command_buffer_traits_multi.h ('k') | media/renderers/skcanvas_video_renderer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698