The R Project SVN R

Rev

Rev 17227 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 17227 Rev 17323
Line 15... Line 15...
15
 *  You should have received a copy of the GNU Library General Public
15
 *  You should have received a copy of the GNU Library General Public
16
 *  License along with this library; if not, write to the Free
16
 *  License along with this library; if not, write to the Free
17
 *  Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
17
 *  Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
18
 *  MA 02111-1307, USA
18
 *  MA 02111-1307, USA
19
 *
19
 *
20
 *  $Id: rproxy_dev.c,v 1.3 2001/12/06 01:47:57 murrell Exp $
20
 *  $Id: rproxy_dev.c,v 1.4 2001/12/10 09:35:34 ripley Exp $
21
 */
21
 */
22
 
22
 
23
// virtual device size
23
// virtual device size
24
#define DEV_X 500
24
#define DEV_X 500
25
#define DEV_Y 500
25
#define DEV_Y 500
Line 270... Line 270...
270
	  lX[i] = pX[i];
270
	  lX[i] = pX[i];
271
	  lY[i] = pY[i];
271
	  lY[i] = pY[i];
272
 
272
 
273
	}
273
	}
274
 
274
 
275
      sprintf (x,"device::Polygon: bg is %08x, fg is %08x\n",pFill,pCol);
275
      //      sprintf (x,"device::Polygon: bg is %08x, fg is %08x\n",pFill,pCol);
276
      OutputDebugString (x);
276
      //      OutputDebugString (x);
277
      __graphics_device->vtbl->polygon (__graphics_device,
277
      __graphics_device->vtbl->polygon (__graphics_device,
278
					pCount,lX,lY,pFill,pCol);
278
					pCount,lX,lY,pFill,pCol);
279
 
279
 
280
      free (lX);
280
      free (lX);
281
      free (lY);
281
      free (lY);