Home
last modified time | relevance | path

Searched refs:cDither (Results 1 – 4 of 4) sorted by relevance

/dports/graphics/libcaca/libcaca-0.99.beta19/ruby/
H A Dcaca-dither.c17 VALUE cDither; variable
184 cDither = rb_define_class_under(mCaca, "Dither", rb_cObject);
185 rb_define_alloc_func(cDither, dither_alloc);
188 rb_define_method(cDither, "palette=", set_dither_palette, 1);
190 rb_define_method(cDither, "brightness=", set_brightness, 1);
192 rb_define_method(cDither, "gamma=", set_gamma, 1);
193 rb_define_method(cDither, "set_gamma", set_gamma2, 1);
194 rb_define_method(cDither, "contrast=", set_contrast, 1);
195 rb_define_method(cDither, "set_contrast", set_contrast2, 1);
200 rb_define_method(cDither, "color=", set_dither_color, 1);
[all …]
H A Dcaca-dither.h18 extern VALUE cDither;
H A Dcaca-canvas.c512 if(CLASS_OF(d) != cDither) in dither_bitmap()
/dports/devel/agar/agar-1.5.0/gui/
H A Dprimitive.h385 AG_DrawBoxDisabled(void *obj, AG_Rect r, int z, AG_Color cBox, AG_Color cDither) in AG_DrawBoxDisabled() argument
390 cDither = AG_ColorShift(cDither, (z < 0) ? agSunkColorShift : agRaisedColorShift); in AG_DrawBoxDisabled()
395 wid->drvOps->drawRectDithered(wid->drv, rOffs, cDither); in AG_DrawBoxDisabled()