1995-08-09 08:06:35 -07:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
2011-07-27 07:17:02 -07:00
|
|
|
/* OCaml */
|
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 */
|
2001-12-07 05:41:02 -08:00
|
|
|
/* under the terms of the GNU Library General Public License, with */
|
|
|
|
/* the special exception on linking described in file ../../LICENSE. */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
1995-05-08 10:04:35 -07:00
|
|
|
#include "libgraph.h"
|
|
|
|
|
2004-03-24 07:02:06 -08:00
|
|
|
value caml_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;
|
|
|
|
|
2004-03-24 07:02:06 -08:00
|
|
|
caml_gr_check_open();
|
2013-09-04 08:12:37 -07:00
|
|
|
im = XGetImage(caml_gr_display, caml_gr_bstore.win, x, Bcvt(y), 1, 1, (-1),
|
|
|
|
ZPixmap);
|
2004-03-24 07:02:06 -08:00
|
|
|
rgb = caml_gr_rgb_pixel(XGetPixel(im, 0, 0));
|
1995-05-08 10:04:35 -07:00
|
|
|
XDestroyImage(im);
|
|
|
|
return Val_int(rgb);
|
|
|
|
}
|