HomeSort by relevance Sort by last modified time
    Searched refs:Graphics2D (Results 1 - 25 of 73) sorted by null

1 2 3

  /external/chromium_org/ppapi/cpp/
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...]
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...]
instance.h 32 class Graphics2D;
291 /// You can pass an <code>is_null()</code> (default constructed) Graphics2D
304 /// @param[in] graphics A <code>Graphics2D</code> to bind.
309 bool BindGraphics(const Graphics2D& graphics);
312 /// Refer to <code>BindGraphics(const Graphics2D& graphics)</code> for
323 /// Refer to <code>BindGraphics(const Graphics2D& graphics)</code> for
  /external/chromium_org/ppapi/utility/graphics/
paint_manager.h 20 class Graphics2D;
54 /// virtual bool OnPaint(pp::Graphics2D& device,
93 /// @param[in] graphics A <code>Graphics2D</code> to be painted.
98 virtual bool OnPaint(Graphics2D& graphics,
215 const Graphics2D& graphics() const { return graphics_; }
223 Graphics2D& graphics() { return graphics_; }
280 Graphics2D graphics_;
  /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 24 REGISTER_TEST_CASE(Graphics2D);
28 bool CanFlushContext(pp::Instance* instance, pp::Graphics2D* context) {
80 bool TestGraphics2D::ReadImageData(const pp::Graphics2D& dc,
89 bool TestGraphics2D::IsDCUniformColor(const pp::Graphics2D& dc,
100 std::string TestGraphics2D::FlushAndWaitForDone(pp::Graphics2D* context) {
173 bool TestGraphics2D::IsSquareInDC(const pp::Graphics2D& dc,
188 pp::Graphics2D* dc,
205 pp::Graphics2D null_context;
264 pp::Graphics2D a(instance_, pp::Size(16, 0), false);
267 pp::Graphics2D b(instance_, pp::Size(0, 16), false)
    [all...]
test_flash_fullscreen.cc 75 pp::Graphics2D graphics2d_fullscreen(instance_, pp::Size(10, 10), false);
110 pp::Graphics2D graphics2d_normal(instance_, pp::Size(15, 15), false);
test_fullscreen.h 59 pp::Graphics2D graphics2d_;
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
ColorFilter_Delegate.java 22 import java.awt.Graphics2D;
61 public void applyFilter(Graphics2D g, int width, int height) {
PorterDuffColorFilter_Delegate.java 24 import java.awt.Graphics2D;
68 public void applyFilter(Graphics2D g, int width, int height) {
93 Graphics2D graphics = image.createGraphics();
Canvas_Delegate.java 31 import java.awt.Graphics2D;
89 * Returns the current {@link Graphics2D} used to draw.
296 // get the current top graphics2D object.
308 // give it to the graphics2D as a new matrix replacing all previous transform
325 // get the current top graphics2D object.
336 // give it to the graphics2D as a new matrix replacing all previous transform
353 // get the current top graphics2D object.
359 // give it to the graphics2D as a new matrix replacing all previous transform
499 public void draw(Graphics2D graphics, Paint_Delegate paint) {
547 public void draw(Graphics2D graphics, Paint_Delegate paintDelegate)
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
GcSnapshot.java 37 import java.awt.Graphics2D;
49 * This is based on top of {@link Graphics2D} but can operate independently if none are available
56 * a list of Graphics2D for each layers. The class actually maintains a list of {@link Layer}
57 * for each layer. Doing a save() will duplicate this list so that each graphics2D object
68 /** temp transform in case transformation are set before a Graphics2D exists */
70 /** temp clip in case clipping is set before a Graphics2D exists */
84 void draw(Graphics2D graphics, Paint_Delegate paint);
93 private final Graphics2D mGraphics;
111 Layer(Graphics2D graphics, Bitmap_Delegate bitmap) {
121 * {@link Layer#Layer(Graphics2D, Bitmap_Delegate)} should be used
    [all...]
  /external/chromium_org/content/test/ppapi/
ppapi_browsertest.cc 54 TEST_PPAPI_IN_PROCESS(Graphics2D)
55 TEST_PPAPI_OUT_OF_PROCESS(Graphics2D)
  /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/pdf/
paint_manager.h 15 class Graphics2D;
177 pp::Graphics2D graphics_;
  /external/proguard/src/proguard/gui/splash/
BufferedSprite.java 115 Graphics2D bufferGraphics2D = (Graphics2D)bufferGraphics;
ClipSprite.java 69 OverrideGraphics2D g = new OverrideGraphics2D((Graphics2D)graphics);
  /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/chromium_org/ppapi/examples/flash_topmost/
flash_topmost.cc 36 device_context_ = pp::Graphics2D(this, size_, false);
114 pp::Graphics2D device_context_;
  /external/chromium_org/third_party/skia/platform_tools/nacl/src/
nacl_hello.cpp 93 fDeviceContext = pp::Graphics2D(this, pp::Size(fWidth, fHeight), false);
120 pp::Graphics2D fDeviceContext;
  /external/skia/platform_tools/nacl/src/
nacl_hello.cpp 93 fDeviceContext = pp::Graphics2D(this, pp::Size(fWidth, fHeight), false);
120 pp::Graphics2D fDeviceContext;
  /frameworks/base/tools/layoutlib/bridge/src/android/view/
ShadowPainter.java 21 import java.awt.Graphics2D;
56 * #drawRectangleShadow(Graphics2D, int, int, int, int)} instead.</b>
78 Graphics2D g2 = image.createGraphics();
186 Graphics2D g = image.createGraphics();
215 Graphics2D g = image.createGraphics();
236 Graphics2D gc = image.createGraphics();
257 Graphics2D gc = image.createGraphics();
267 * {@link #drawRectangleShadow(Graphics2D, int, int, int, int)}
273 * {@link #drawSmallRectangleShadow(Graphics2D, int, int, int, int)}
288 public static void drawRectangleShadow(Graphics2D gc, int x, int y, int width, int height)
    [all...]
  /external/chromium_org/native_client_sdk/src/examples/api/graphics_2d/
graphics_2d.cc 118 context_ = pp::Graphics2D(this, new_size, kIsAlwaysOpaque);
124 context_ = pp::Graphics2D();
224 // Using Graphics2D::ReplaceContents is the fastest way to update the
246 // The current Graphics2D context is null, so updating and rendering is
264 pp::Graphics2D context_;
265 pp::Graphics2D flush_context_;
  /external/chromium_org/native_client_sdk/src/examples/api/mouse_lock/
mouse_lock.h 69 // as a callback to pp::Graphics2D.Flush().
98 pp::Graphics2D device_context_;
  /external/chromium_org/native_client_sdk/src/examples/api/gamepad/
gamepad.cc 67 pp::Graphics2D* graphics_2d_context_;
171 graphics_2d_context_ = new pp::Graphics2D(this, size, false);

Completed in 727 milliseconds

1 2 3