HomeSort by relevance Sort by last modified time
    Searched full:graphics2d (Results 1 - 25 of 110) 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 16 // Graphics2DDev is a version of Graphics2D that exposes under-development APIs
18 class Graphics2D_Dev : public Graphics2D {
22 Graphics2D_Dev() : Graphics2D() {}
25 // existing <code>Graphics2D</code> object.
26 Graphics2D_Dev(const Graphics2D& other) : Graphics2D(other) {}
60 /// @param[in] resource A <code>Graphics2D</code> context resource.
69 ///@param[in] resource A <code>Graphics2D</code> context resource.
  /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 26 REGISTER_TEST_CASE(Graphics2D);
30 bool CanFlushContext(pp::Instance* instance, pp::Graphics2D* context) {
82 bool TestGraphics2D::ReadImageData(const pp::Graphics2D& dc,
91 bool TestGraphics2D::IsDCUniformColor(const pp::Graphics2D& dc,
102 std::string TestGraphics2D::FlushAndWaitForDone(pp::Graphics2D* context) {
175 bool TestGraphics2D::IsSquareInDC(const pp::Graphics2D& dc,
190 pp::Graphics2D* dc,
207 pp::Graphics2D null_context;
266 pp::Graphics2D a(instance_, pp::Size(16, 0), false);
269 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/generators/test_namespace/
bar.idl 26 /* Returns PP_TRUE if the given resource is a valid Graphics2D, PP_FALSE if it
  /external/chromium_org/native_client_sdk/src/libraries/ppapi_simple/
ps_interface.cc 21 DEFINE_INTERFACE_FUNC(Graphics2D)
50 REQUEST_INTERFACE(Graphics2D, GRAPHICS_2D)
  /external/chromium_org/ppapi/api/private/
ppb_flash_fullscreen.idl 36 * This does not unbind the current Graphics2D or Graphics3D. Pending flushes
39 * return PP_FALSE, and no Graphics2D or Graphics3D can be bound. The
  /external/chromium_org/ppapi/api/dev/
ppb_graphics_2d_dev.idl 48 * @param[in] resource A <code>Graphics2D</code> context resource.
62 * @param[in] resource A <code>Graphics2D</code> context resource.
65 * is not a valid <code>Graphics2D</code> context, this will return 0.0.
75 * @param[in] resource A <code>Graphics2D</code> context resource.
89 * @param[in] resource A <code>Graphics2D</code> context resource.
  /external/chromium_org/ppapi/c/dev/
ppb_graphics_2d_dev.h 70 * @param[in] resource A <code>Graphics2D</code> context resource.
81 * @param[in] resource A <code>Graphics2D</code> context resource.
84 * is not a valid <code>Graphics2D</code> context, this will return 0.0.
92 * @param[in] resource A <code>Graphics2D</code> context resource.
102 * @param[in] resource A <code>Graphics2D</code> context resource.
  /external/chromium_org/native_client_sdk/src/examples/api/graphics_2d/
index.html 17 <p>The Graphics2D example demonstrates a simple flame effect.</p>
graphics_2d.cc 114 context_ = pp::Graphics2D(this, new_size, kIsAlwaysOpaque);
117 context_ = pp::Graphics2D();
217 // Using Graphics2D::ReplaceContents is the fastest way to update the
239 // The current Graphics2D context is null, so updating and rendering is
257 pp::Graphics2D context_;
258 pp::Graphics2D flush_context_;
  /external/chromium_org/ppapi/c/private/
ppb_flash_fullscreen.h 40 * This does not unbind the current Graphics2D or Graphics3D. Pending flushes
43 * return PP_FALSE, and no Graphics2D or Graphics3D can be bound. The
  /external/chromium_org/ppapi/examples/scaling/
scaling.cc 24 // Example plugin to demonstrate usage of pp::View and pp::Graphics2D APIs for
117 // This will set up a properly-sized pp::Graphics2D, and tell Pepper
120 device_context_ = pp::Graphics2D(this,
124 // If SetScale is promoted to pp::Graphics2D, the dc_dev constructor
131 device_context_ = pp::Graphics2D(this, pp::Size(width_, height_), true);
150 // pp::Graphics2D.
153 // pp::Graphics2D, as well as how to use the GetCSSScale value properly.
202 pp::Graphics2D device_context_;
  /external/proguard/src/proguard/gui/splash/
OverrideGraphics2D.java 33 * This Graphics2D allows to fix some basic settings (Color, Font, Paint, Stroke,
34 * XORMode) of a delegate Graphics2D, overriding any subsequent attempts to
40 final class OverrideGraphics2D extends Graphics2D
42 private final Graphics2D graphics;
58 * @param graphics the delegate Graphics2D.
60 public OverrideGraphics2D(Graphics2D graphics)
71 * Fixes the Color of the Graphics2D.
82 * Fixes the Font of the Graphics2D.
93 * Fixes the Paint of the Graphics2D.
104 * Fixes the Stroke of the Graphics2D
    [all...]
  /prebuilts/devtools/tools/lib/
ninepatch.jar 
asset-studio.jar 
jfreechart-1.0.9.jar 
  /external/jmonkeyengine/engine/src/desktop/com/jme3/system/awt/
AwtPanel.java 97 Graphics2D g2d = (Graphics2D) g;
163 Graphics2D g2d = (Graphics2D) strategy.getDrawGraphics();
  /developers/build/lib/
assetstudio.jar 
  /prebuilts/misc/common/ninepatch/
ninepatch-prebuilt.jar 
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/m2/repository/jfree/jfreechart/1.0.9/
jfreechart-1.0.9.jar 

Completed in 235 milliseconds

1 2 3 4 5