/* gRC is the singleton which controls the fifo and dispatches commands */
class gRC: public iObject, public Object
{
-DECLARE_REF(gRC);
-private:
+ DECLARE_REF(gRC);
friend class gPainter;
static gRC *instance;
enum
{
- BT_ALPHATEST = 1
+ BT_ALPHATEST = 1,
+ BT_ALPHABLEND = 2
};
void blit(gPixmap *pixmap, ePoint pos, const eRect &what=eRect(), int flags=0);
void clip(const gRegion &clip);
void clippop();
- void flush();
-
void waitVSync();
void flip();
void notify();
class gDC: public iObject
{
-DECLARE_REF(gDC);
+ DECLARE_REF(gDC);
protected:
ePtr<gPixmap> m_pixmap;