Lines Matching refs:yc
386 set4pixels(VGLBitmap *object, int x, int y, int xc, int yc, u_long color) in set4pixels() argument
389 VGLSetXY(object, xc+x, yc+y, color); in set4pixels()
390 VGLSetXY(object, xc-x, yc+y, color); in set4pixels()
392 VGLSetXY(object, xc+x, yc-y, color); in set4pixels()
393 VGLSetXY(object, xc-x, yc-y, color); in set4pixels()
397 VGLSetXY(object, xc, yc+y, color); in set4pixels()
399 VGLSetXY(object, xc, yc-y, color); in set4pixels()
404 VGLEllipse(VGLBitmap *object, int xc, int yc, int a, int b, u_long color) in VGLEllipse() argument
410 set4pixels(object, x, y, xc, yc, color); in VGLEllipse()
418 set4pixels(object, x, y, xc, yc, color); in VGLEllipse()
427 set2lines(VGLBitmap *object, int x, int y, int xc, int yc, u_long color) in set2lines() argument
430 VGLLine(object, xc+x, yc+y, xc-x, yc+y, color); in set2lines()
432 VGLLine(object, xc+x, yc-y, xc-x, yc-y, color); in set2lines()
435 VGLLine(object, xc, yc+y, xc, yc-y, color); in set2lines()
440 VGLFilledEllipse(VGLBitmap *object, int xc, int yc, int a, int b, u_long color) in VGLFilledEllipse() argument
446 set2lines(object, x, y, xc, yc, color); in VGLFilledEllipse()
454 set2lines(object, x, y, xc, yc, color); in VGLFilledEllipse()