Hi,
A small primitive check.
include "ss.inc"
OpenWindow 320,240,1
h = GetHeight()/2
w = GetWidth ()/2
string prv[20] = {"DrawPoint","DrawCircle","FillCircle","DrawEllipse","FillEllipse","DrawRect","FillRect","DrawLine","ThickLine","DrawRoundRect","FillRoundRect"}
Color 255,255,255,255
DrawString 100, 0,"PRIMITIVE TEST"
DrawString 100,12," HIT A KEY"
WaitKey
Color 255,235,78,255
DrawString 100,50,prv[1]
DrawPoint w,h,2
WaitKey
Color 0,0,0,255
FillRect 0,50,320,190
Color 255,235,78,255
DrawString 100,50,prv[2]
DrawCircle w,h,40
WaitKey
Color 0,0,0,255
FillRect 0,50,320,190
Color 255,235,78,255
DrawString 100,50,prv[3]
FillCircle w,h,40
WaitKey
Color 0,0,0,255
FillRect 0,50,320,190
Color 255,235,78,255
DrawString 100,50,prv[4]
DrawEllipse w,h,40,20
WaitKey
Color 0,0,0,255
FillRect 0,50,320,190
Color 255,235,78,255
DrawString 100,50,prv[5]
FillEllipse w,h,40,20
WaitKey
Color 0,0,0,255
FillRect 0,50,320,190
Color 255,235,78,255
DrawString 100,50,prv[6]
DrawRect w,h,40,40
WaitKey
Color 0,0,0,255
FillRect 0,50,320,190
Color 255,235,78,255
DrawString 100,50,prv[7]
FillRect w,h,40,40
WaitKey
Color 0,0,0,255
FillRect 0,50,320,190
Color 255,235,78,255
DrawString 100,50,prv[8]
DrawLine w,h,w+40,h
DrawLine w,h,w-40,h
WaitKey
Color 0,0,0,255
FillRect 0,50,320,190
Color 255,235,78,255
DrawString 100,50,prv[9]
ThickLine w,h,w+40,h,4
ThickLine w,h,w-40,h,4
WaitKey
Color 0,0,0,255
FillRect 0,50,320,190
Color 255,235,78,255
DrawString 100,50,prv[10]
DrawRoundRect w,h,40,40,12
WaitKey
Color 0,0,0,255
FillRect 0,50,320,190
Color 255,235,78,255
DrawString 100,50,prv[11]
FillRoundRect w,h,40,40,6
WaitKey
Color 255,0,0,255
DrawString 95,h+60,"ARE YOU SURE?"
WaitKey
CloseWindow