2011-08-25 06:11:44 +00:00
|
|
|
/*
|
2011-06-26 08:30:44 +00:00
|
|
|
glcommon GL code & font stuff Header
|
|
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
License: GPL
|
2011-08-25 06:11:44 +00:00
|
|
|
*/
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
#ifndef GLCOMMON_H
|
|
|
|
#define GLCOMMON_H
|
|
|
|
|
|
|
|
#include <QtOpenGL/qgl.h>
|
2011-08-30 17:22:54 +00:00
|
|
|
#include <QColor>
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
void LinedRoundedRectangle(int x,int y,int w,int h,int radius,int lw,QColor color);
|
|
|
|
void RoundedRectangle(int x,int y,int w,int h,int radius,const QColor color);
|
|
|
|
|
|
|
|
#endif // GLCOMMON_H
|