From 5c1676dfe6d2f3c837a5e074117b45613fd29a72 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 20:30:19 +0200 Subject: Adding upstream version 2.10.34. Signed-off-by: Daniel Baumann --- .../html/libgimpcolor-GimpAdaptiveSupersample.html | 132 +++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 devel-docs/libgimpcolor/html/libgimpcolor-GimpAdaptiveSupersample.html (limited to 'devel-docs/libgimpcolor/html/libgimpcolor-GimpAdaptiveSupersample.html') diff --git a/devel-docs/libgimpcolor/html/libgimpcolor-GimpAdaptiveSupersample.html b/devel-docs/libgimpcolor/html/libgimpcolor-GimpAdaptiveSupersample.html new file mode 100644 index 0000000..bcb4004 --- /dev/null +++ b/devel-docs/libgimpcolor/html/libgimpcolor-GimpAdaptiveSupersample.html @@ -0,0 +1,132 @@ + + + + +GimpAdaptiveSupersample: GIMP Color Library Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

GimpAdaptiveSupersample

+

GimpAdaptiveSupersample — Functions to perform adaptive supersampling on +an area.

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + +
+void + +(*GimpProgressFunc) () +
+void + +(*GimpPutPixelFunc) () +
+void + +(*GimpRenderFunc) () +
+gulong + +gimp_adaptive_supersample_area () +
+
+
+

Description

+

Functions to perform adaptive supersampling on an area.

+
+
+

Functions

+
+

GimpProgressFunc ()

+
void
+(*GimpProgressFunc) (gint min,
+                     gint max,
+                     gint current,
+                     gpointer data);
+
+
+
+

GimpPutPixelFunc ()

+
void
+(*GimpPutPixelFunc) (gint x,
+                     gint y,
+                     GimpRGB *color,
+                     gpointer data);
+
+
+
+

GimpRenderFunc ()

+
void
+(*GimpRenderFunc) (gdouble x,
+                   gdouble y,
+                   GimpRGB *color,
+                   gpointer data);
+
+
+
+

gimp_adaptive_supersample_area ()

+
gulong
+gimp_adaptive_supersample_area (gint x1,
+                                gint y1,
+                                gint x2,
+                                gint y2,
+                                gint max_depth,
+                                gdouble threshold,
+                                GimpRenderFunc render_func,
+                                gpointer render_data,
+                                GimpPutPixelFunc put_pixel_func,
+                                gpointer put_pixel_data,
+                                GimpProgressFunc progress_func,
+                                gpointer progress_data);
+
+
+
+ + + \ No newline at end of file -- cgit v1.2.3