Searched defs:graphics_2d (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/ppapi/thunk/
H A Dppb_graphics_2d_thunk.cc38 PP_Bool Describe(PP_Resource graphics_2d, argument
42 EnterResource<PPB_Graphics2D_API> enter(graphics_2d, true);
51 void PaintImageData(PP_Resource graphics_2d, argument
56 EnterResource<PPB_Graphics2D_API> enter(graphics_2d, true);
62 void Scroll(PP_Resource graphics_2d, argument
66 EnterResource<PPB_Graphics2D_API> enter(graphics_2d, true);
72 void ReplaceContents(PP_Resource graphics_2d, PP_Resource image_data) { argument
74 EnterResource<PPB_Graphics2D_API> enter(graphics_2d, true);
80 int32_t Flush(PP_Resource graphics_2d, struct PP_CompletionCallback callback) { argument
82 EnterResource<PPB_Graphics2D_API> enter(graphics_2d, callbac
[all...]
/external/chromium_org/tools/perf/page_sets/tough_pepper_cases/extra_data/
H A Dtouch_drawing_plugin.cc20 #include "ppapi/cpp/graphics_2d.h"
98 virtual bool OnPaint(pp::Graphics2D& graphics_2d, argument
115 graphics_2d.PaintImageData(updated_image, paint_bounds.point());
/external/chromium_org/ppapi/examples/2d/
H A Dpaint_manager_example.cc8 #include "ppapi/cpp/graphics_2d.h"
81 virtual bool OnPaint(pp::Graphics2D& graphics_2d, argument
122 graphics_2d.PaintImageData(updated_image, paint_bounds.point());
/external/chromium_org/ppapi/examples/input/
H A Dpointer_event_input.cc8 #include "ppapi/cpp/graphics_2d.h"
99 virtual bool OnPaint(pp::Graphics2D& graphics_2d, argument
140 graphics_2d.PaintImageData(updated_image, paint_bounds.point());
/external/chromium_org/ppapi/proxy/
H A Dppb_testing_proxy.cc31 PP_Bool ReadImageData(PP_Resource graphics_2d, argument
40 PpapiGlobals::Get()->GetResourceTracker()->GetResource(graphics_2d);
45 EnterResourceNoLock<PPB_Graphics2D_API> enter(graphics_2d, true);
/external/chromium_org/ppapi/tests/
H A Dtest_graphics_2d.cc15 #include "ppapi/cpp/graphics_2d.h"
34 bool CanFlushContextC(pp::Instance* instance, PP_Resource graphics_2d, argument
38 graphics_2d, callback.GetCallback().pp_completion_callback()));
/external/chromium_org/content/renderer/pepper/
H A Dpepper_plugin_instance_impl.cc2341 PepperGraphics2DHost* graphics_2d = NULL; local
2345 graphics_2d = static_cast<PepperGraphics2DHost*>(host);
2366 } else if (graphics_2d) {
2367 if (graphics_2d->BindToInstance(this)) {
2368 bound_graphics_2d_platform_ = graphics_2d;
/external/chromium_org/ppapi/native_client/src/untrusted/pnacl_irt_shim/
H A Dpnacl_shim.c759 static PP_Bool Pnacl_M14_PPB_Graphics2D_Describe(PP_Resource graphics_2d, struct PP_Size* size, PP_Bool* is_always_opaque) { argument
761 return iface->Describe(graphics_2d, size, is_always_opaque);
764 static void Pnacl_M14_PPB_Graphics2D_PaintImageData(PP_Resource graphics_2d, PP_Resource image_data, const struct PP_Point* top_left, const struct PP_Rect* src_rect) { argument
766 iface->PaintImageData(graphics_2d, image_data, top_left, src_rect);
769 static void Pnacl_M14_PPB_Graphics2D_Scroll(PP_Resource graphics_2d, const struct PP_Rect* clip_rect, const struct PP_Point* amount) { argument
771 iface->Scroll(graphics_2d, clip_rect, amount);
774 static void Pnacl_M14_PPB_Graphics2D_ReplaceContents(PP_Resource graphics_2d, PP_Resource image_data) { argument
776 iface->ReplaceContents(graphics_2d, image_data);
779 static int32_t Pnacl_M14_PPB_Graphics2D_Flush(PP_Resource graphics_2d, struct PP_CompletionCallback* callback) { argument
781 return iface->Flush(graphics_2d, *callbac
798 Pnacl_M27_PPB_Graphics2D_Describe(PP_Resource graphics_2d, struct PP_Size* size, PP_Bool* is_always_opaque) argument
803 Pnacl_M27_PPB_Graphics2D_PaintImageData(PP_Resource graphics_2d, PP_Resource image_data, const struct PP_Point* top_left, const struct PP_Rect* src_rect) argument
808 Pnacl_M27_PPB_Graphics2D_Scroll(PP_Resource graphics_2d, const struct PP_Rect* clip_rect, const struct PP_Point* amount) argument
813 Pnacl_M27_PPB_Graphics2D_ReplaceContents(PP_Resource graphics_2d, PP_Resource image_data) argument
818 Pnacl_M27_PPB_Graphics2D_Flush(PP_Resource graphics_2d, struct PP_CompletionCallback* callback) argument
[all...]

Completed in 1323 milliseconds