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

Unified Diff: ui/gfx/mojo/buffer_types_struct_traits.h

Issue 2786103003: Add half-float IOSurface GpuMemoryBuffer support (Closed)
Patch Set: Review feedback 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 | « ui/gfx/mojo/buffer_types.mojom ('k') | ui/gl/gl_image_io_surface.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/mojo/buffer_types_struct_traits.h
diff --git a/ui/gfx/mojo/buffer_types_struct_traits.h b/ui/gfx/mojo/buffer_types_struct_traits.h
index 8772ce617412e16f5b8fa1070c3c7a809255b2f5..1c8275260b150dbc8ac0bfca47ed371a7d79720f 100644
--- a/ui/gfx/mojo/buffer_types_struct_traits.h
+++ b/ui/gfx/mojo/buffer_types_struct_traits.h
@@ -40,6 +40,8 @@ struct EnumTraits<gfx::mojom::BufferFormat, gfx::BufferFormat> {
return gfx::mojom::BufferFormat::BGRX_8888;
case gfx::BufferFormat::BGRA_8888:
return gfx::mojom::BufferFormat::BGRA_8888;
+ case gfx::BufferFormat::RGBA_F16:
+ return gfx::mojom::BufferFormat::RGBA_F16;
case gfx::BufferFormat::YVU_420:
return gfx::mojom::BufferFormat::YVU_420;
case gfx::BufferFormat::YUV_420_BIPLANAR:
@@ -93,6 +95,9 @@ struct EnumTraits<gfx::mojom::BufferFormat, gfx::BufferFormat> {
case gfx::mojom::BufferFormat::BGRA_8888:
*out = gfx::BufferFormat::BGRA_8888;
return true;
+ case gfx::mojom::BufferFormat::RGBA_F16:
+ *out = gfx::BufferFormat::RGBA_F16;
+ return true;
case gfx::mojom::BufferFormat::YVU_420:
*out = gfx::BufferFormat::YVU_420;
return true;
« no previous file with comments | « ui/gfx/mojo/buffer_types.mojom ('k') | ui/gl/gl_image_io_surface.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698