Chromium Code Reviews

Unified Diff: ppapi/c/ppb_graphics_2d.h

Issue 1881603002: Added SetLayerTransform to PPAPI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: ppapi/c/ppb_graphics_2d.h
diff --git a/ppapi/c/ppb_graphics_2d.h b/ppapi/c/ppb_graphics_2d.h
index 251f34e33c2eb3546e523bf28f17ab28b1272aad..04dac46a36672d128de4fb284e381d72b3647a20 100644
--- a/ppapi/c/ppb_graphics_2d.h
+++ b/ppapi/c/ppb_graphics_2d.h
@@ -3,7 +3,7 @@
* found in the LICENSE file.
*/
-/* From ppb_graphics_2d.idl modified Fri Apr 26 08:49:08 2013. */
+/* From ppb_graphics_2d.idl modified Mon Apr 11 14:10:05 2016. */
#ifndef PPAPI_C_PPB_GRAPHICS_2D_H_
#define PPAPI_C_PPB_GRAPHICS_2D_H_
@@ -276,6 +276,10 @@ struct PPB_Graphics2D_1_1 {
* is not a valid <code>Graphics2D</code> context, this will return 0.0.
*/
float (*GetScale)(PP_Resource resource);
+ PP_Bool (*SetLayerTransform)(PP_Resource resource,
+ float Scale,
wjmaclean 2016/04/13 14:47:19 don't capitalize parameter names
alessandroa 2016/04/21 15:39:21 Done.
+ const struct PP_Point* Origin,
+ const struct PP_Point* Transform);
};
typedef struct PPB_Graphics2D_1_1 PPB_Graphics2D;

Powered by Google App Engine