HomeSort by relevance Sort by last modified time
    Searched defs:drawn (Results 1 - 3 of 3) sorted by null

  /external/qemu/android/skin/
composer.c 273 * 'drawn' is initially empty, and will be filled with the region of translucent
279 * after that, we make a DSTOVER blit of 'intersection(drawn,region)'
280 * if the plate is not opaque, we add this intersection to 'drawn'
284 skin_plate_redraw( SkinPlate* plate, SkinRegion* updated, SkinRegion* drawn, SkinPos* apos, SkinViewport* viewport )
291 if (skin_region_is_empty(updated) && skin_region_is_empty(drawn))
296 skin_region_translate( drawn, pos.y, pos.y );
312 /* inter(drawn,region) => DSTOVER blit + if non-opaque add it to 'drawn' */
314 skin_region_intersect(r, drawn);
318 skin_region_union(drawn, r)
388 SkinRegion drawn[1]; local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
TileGrid.cpp 316 int drawn = 0; local
369 // Cut the successful drawn tile area from the missing region.
374 drawn++;
387 this, drawn, m_scale);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
LayoutTestBase.java 107 String drawn = graphics.getDrawn().toString(); local
109 // Check that each graphics fragment is drawn
111 if (!drawn.contains(fragment)) {
112 // Get drawn-output since unit test truncates message in below
115 System.out.println("Full graphics output: " + drawn);
117 assertTrue(fragment + " not found; full=" + drawn, drawn.contains(fragment));

Completed in 72 milliseconds