HomeSort by relevance Sort by last modified time
    Searched full:graphics2d (Results 1 - 25 of 105) sorted by null

1 2 3 4 5

  /external/chromium_org/ppapi/cpp/
graphics_2d.cc 31 Graphics2D::Graphics2D() : Resource() {
34 Graphics2D::Graphics2D(const Graphics2D& other)
39 Graphics2D::Graphics2D(const InstanceHandle& instance,
62 Graphics2D::~Graphics2D() {
65 Graphics2D& Graphics2D::operator=(const Graphics2D& other)
    [all...]
graphics_2d.h 23 class Graphics2D : public Resource {
25 /// Default constructor for creating an is_null() <code>Graphics2D</code>
27 Graphics2D();
29 /// The copy constructor for Graphics2D. The underlying 2D context is not
33 /// @param[in] other A pointer to a <code>Graphics2D</code> context.
34 Graphics2D(const Graphics2D& other);
55 Graphics2D(const InstanceHandle& instance,
60 /// <code>Graphics2D</code> object made using the previous copy constructor.
63 virtual ~Graphics2D();
    [all...]
  /external/chromium_org/ppapi/cpp/dev/
graphics_2d_dev.h 12 // Graphics2DDev is a version of Graphics2D that exposes under-development APIs
14 class Graphics2D_Dev : public Graphics2D {
18 Graphics2D_Dev() : Graphics2D() {}
21 // existing <code>Graphics2D</code> object.
22 Graphics2D_Dev(const Graphics2D& other) : Graphics2D(other) {}
  /external/chromium_org/ppapi/tests/
test_graphics_2d.h 16 class Graphics2D;
34 bool ReadImageData(const pp::Graphics2D& dc,
63 bool IsSquareInDC(const pp::Graphics2D& dc, uint32_t background_color,
67 bool IsDCUniformColor(const pp::Graphics2D& dc, uint32_t color) const;
72 std::string FlushAndWaitForDone(pp::Graphics2D* context);
74 // Creates an image and replaces the contents of the Graphics2D with the
80 PP_Resource ReplaceContentsAndReturnID(pp::Graphics2D* dc,
test_graphics_2d.cc 27 REGISTER_TEST_CASE(Graphics2D);
39 bool CanFlushContext(pp::Instance* instance, pp::Graphics2D* context) {
91 bool TestGraphics2D::ReadImageData(const pp::Graphics2D& dc,
100 bool TestGraphics2D::IsDCUniformColor(const pp::Graphics2D& dc,
111 std::string TestGraphics2D::FlushAndWaitForDone(pp::Graphics2D* context) {
184 bool TestGraphics2D::IsSquareInDC(const pp::Graphics2D& dc,
199 pp::Graphics2D* dc,
216 pp::Graphics2D null_context;
275 pp::Graphics2D a(instance_, pp::Size(16, 0), false);
278 pp::Graphics2D b(instance_, pp::Size(0, 16), false)
    [all...]
test_fullscreen.h 59 pp::Graphics2D graphics2d_;
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
GcSnapshot.java 36 import java.awt.Graphics2D;
48 * This is based on top of {@link Graphics2D} but can operate independently if none are available
55 * a list of Graphics2D for each layers. The class actually maintains a list of {@link Layer}
56 * for each layer. Doing a save() will duplicate this list so that each graphics2D object
67 /** temp transform in case transformation are set before a Graphics2D exists */
69 /** temp clip in case clipping is set before a Graphics2D exists */
83 void draw(Graphics2D graphics, Paint_Delegate paint);
92 private final Graphics2D mGraphics;
110 Layer(Graphics2D graphics, Bitmap_Delegate bitmap) {
120 * {@link Layer#Layer(Graphics2D, Bitmap_Delegate)} should be used
    [all...]
  /external/chromium_org/ppapi/api/dev/
ppb_graphics_2d_dev.idl 27 * @param[in] resource A <code>Graphics2D</code> context resource.
41 * @param[in] resource A <code>Graphics2D</code> context resource.
44 * is not a valid <code>Graphics2D</code> context, this will return 0.0.