1995-08-09 08:06:35 -07:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
1996-04-30 07:53:58 -07:00
|
|
|
/* Objective Caml */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* */
|
|
|
|
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
|
|
|
|
/* */
|
1996-04-30 07:53:58 -07:00
|
|
|
/* Copyright 1996 Institut National de Recherche en Informatique et */
|
1999-11-17 10:59:06 -08:00
|
|
|
/* en Automatique. All rights reserved. This file is distributed */
|
|
|
|
/* under the terms of the GNU Library General Public License. */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
1995-05-08 10:04:35 -07:00
|
|
|
#include "libgraph.h"
|
|
|
|
|
1997-09-02 05:55:01 -07:00
|
|
|
value gr_point_color(value vx, value vy)
|
1995-05-08 10:04:35 -07:00
|
|
|
{
|
|
|
|
int x = Int_val(vx);
|
|
|
|
int y = Int_val(vy);
|
|
|
|
XImage * im;
|
|
|
|
int rgb;
|
|
|
|
|
1997-03-08 04:17:35 -08:00
|
|
|
gr_check_open();
|
1995-05-08 10:04:35 -07:00
|
|
|
im = XGetImage(grdisplay, grbstore.win, x, Bcvt(y), 1, 1, (-1), ZPixmap);
|
|
|
|
rgb = gr_rgb_pixel(XGetPixel(im, 0, 0));
|
|
|
|
XDestroyImage(im);
|
|
|
|
return Val_int(rgb);
|
|
|
|
}
|
|
|
|
|
|
|
|
|