• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/x11/

Lines Matching refs:gc

148 static void wxFreePoolGC( GC gc )
152 if (wxGCPool[i].m_gc == gc)
1058 GC gc = GrNewGC();
1059 GrSetGCUseBackground(gc, FALSE);
1060 GrSetGCMode(gc, GR_MODE_COPY);
1072 GrCopyArea(bufPixmap, gc, 0, 0, w, h, (Window) m_window,
1078 GrCopyArea(bufPixmap, gc, 0, 0, w, h, pixmap,
1082 GrSetGCBackground(gc, WHITE);
1083 GrSetGCForeground(gc, BLACK);
1084 GrCopyArea(bufPixmap, gc, 0, 0, w, h, maskPixmap,
1088 GrSetGCBackground(gc, BLACK);
1089 GrSetGCForeground(gc, WHITE);
1090 GrCopyArea((Window) m_window, gc, xx, yy, w, h, maskPixmap,
1094 GrCopyArea((Window) m_window, gc, xx, yy, w, h, bufPixmap,
1097 GrDestroyGC(gc);
1187 GC gc = XCreateGC( xdisplay, new_pixmap, 0, NULL );
1189 XSetForeground( xdisplay, gc, BlackPixel(xdisplay,xscreen) );
1191 XSetFillStyle( xdisplay, gc, FillSolid );
1192 XFillRectangle( xdisplay, new_pixmap, gc, 0, 0, ww, hh );
1194 XSetForeground( xdisplay, gc, WhitePixel(xdisplay,xscreen) );
1199 XSetFillStyle( xdisplay, gc, FillStippled );
1200 XSetTSOrigin( xdisplay, gc, 0, 0);
1201 XSetStipple( xdisplay, gc, (Pixmap) mask);
1206 XFillRectangle( xdisplay, new_pixmap, gc, clip_x-xx, clip_y-yy, clip_w, clip_h );
1208 XFreeGC( xdisplay, gc );
1399 GdkGC *gc = gdk_gc_new( new_mask );
1401 gdk_gc_set_foreground( gc, &col );
1402 gdk_draw_rectangle( new_mask, gc, TRUE, 0, 0, bm_ww, bm_hh );
1404 gdk_gc_set_background( gc, &col );
1406 gdk_gc_set_foreground( gc, &col );
1407 gdk_gc_set_clip_region( gc, m_currentClippingRegion.GetRegion() );
1408 gdk_gc_set_clip_origin( gc, -xx, -yy );
1409 gdk_gc_set_fill( gc, GDK_OPAQUE_STIPPLED );
1410 gdk_gc_set_stipple( gc, mask );
1411 gdk_draw_rectangle( new_mask, gc, TRUE, 0, 0, bm_ww, bm_hh );
1412 gdk_gc_unref( gc );