/* glcommon GL code & font stuff Copyright (c)2011 Mark Watkins License: GPL */ #include #include "glcommon.h" void RoundedRectangle(int x,int y,int w,int h,int radius,const QColor color) { glEnable(GL_BLEND); glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA); glColor4ub(color.red(),color.green(),color.blue(),color.alpha()); glBegin(GL_POLYGON); glVertex2i(x+radius,y); glVertex2i(x+w-radius,y); for(float i=(float)M_PI*1.5f;i