HomeSort by relevance Sort by last modified time
    Searched defs:drawn (Results 1 - 4 of 4) 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...]
  /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));
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
vl_compositor.c 690 struct u_rect drawn = calc_drawn_area(s, layer); local
692 dirty->x0 >= drawn.x0 &&
693 dirty->y0 >= drawn.y0 &&
694 dirty->x1 <= drawn.x1 &&
695 dirty->y1 <= drawn.y1) {
731 // Remember the currently drawn area as dirty for the next draw command
732 struct u_rect drawn = calc_drawn_area(s, layer); local
733 dirty->x0 = MIN2(drawn.x0, dirty->x0);
734 dirty->y0 = MIN2(drawn.y0, dirty->y0);
735 dirty->x1 = MAX2(drawn.x1, dirty->x1)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_compositor.c 690 struct u_rect drawn = calc_drawn_area(s, layer); local
692 dirty->x0 >= drawn.x0 &&
693 dirty->y0 >= drawn.y0 &&
694 dirty->x1 <= drawn.x1 &&
695 dirty->y1 <= drawn.y1) {
731 // Remember the currently drawn area as dirty for the next draw command
732 struct u_rect drawn = calc_drawn_area(s, layer); local
733 dirty->x0 = MIN2(drawn.x0, dirty->x0);
734 dirty->y0 = MIN2(drawn.y0, dirty->y0);
735 dirty->x1 = MAX2(drawn.x1, dirty->x1)
    [all...]

Completed in 1758 milliseconds