X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fgdi%2Fgrc.h;h=16f7db7e4080d18d37e56781f51b3d16fdde70a8;hp=adc1d3be82af0aacf7a5fbdb69c86d7f5e5bc704;hb=2872929ce24198202fa096d28ab94dea9f925450;hpb=8251696239ba2bb74c348a2726fab85a275ebd11 diff --git a/lib/gdi/grc.h b/lib/gdi/grc.h index adc1d3b..16f7db7 100644 --- a/lib/gdi/grc.h +++ b/lib/gdi/grc.h @@ -22,6 +22,7 @@ #include #include #include +#include class eTextPara; @@ -60,7 +61,14 @@ struct gOpcode enableSpinner, disableSpinner, incrementSpinner, - shutdown + shutdown, + + setCompositing, + sendShow, + sendHide, +#ifdef USE_LIBVUGLES2 + setView, +#endif } opcode; gDC *dc; @@ -102,8 +110,8 @@ struct gOpcode struct pblit { gPixmap *pixmap; - ePoint position; int flags; + eRect position; eRect clip; } *blit; @@ -137,6 +145,20 @@ struct gOpcode ePoint value; int rel; } *setOffset; + + gCompositingData *setCompositing; + + struct psetShowHideInfo + { + ePoint point; + eSize size; + } *setShowHideInfo; +#ifdef USE_LIBVUGLES2 + struct psetViewInfo + { + eSize size; + } *setViewInfo; +#endif } parm; }; @@ -145,8 +167,7 @@ struct gOpcode /* 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; @@ -169,7 +190,10 @@ private: void enableSpinner(); void disableSpinner(); + + ePtr m_compositing; + int m_prev_idle_count; public: gRC(); virtual ~gRC(); @@ -230,10 +254,13 @@ public: enum { - BT_ALPHATEST = 1 + BT_ALPHATEST = 1, + BT_ALPHABLEND = 2, + BT_SCALE = 4 /* will be automatically set by blitScale */ }; - void blit(gPixmap *pixmap, ePoint pos, const eRect &what=eRect(), int flags=0); + void blit(gPixmap *pixmap, ePoint pos, const eRect &clip=eRect(), int flags=0); + void blitScale(gPixmap *pixmap, const eRect &pos, const eRect &clip=eRect(), int flags=0, int aflags = BT_SCALE); void setPalette(gRGB *colors, int start=0, int len=256); void setPalette(gPixmap *source); @@ -249,16 +276,22 @@ public: void clip(const gRegion &clip); void clippop(); - void flush(); - void waitVSync(); void flip(); void notify(); + void setCompositing(gCompositingData *comp); + + void flush(); + void sendShow(ePoint point, eSize size); + void sendHide(ePoint point, eSize size); +#ifdef USE_LIBVUGLES2 + void setView(eSize size); +#endif }; class gDC: public iObject { -DECLARE_REF(gDC); + DECLARE_REF(gDC); protected: ePtr m_pixmap; @@ -270,11 +303,12 @@ protected: std::stack m_clip_stack; gRegion m_current_clip; - ePtr m_spinner_saved; + ePtr m_spinner_saved, m_spinner_temp; + ePtr *m_spinner_pic; eRect m_spinner_pos; - + int m_spinner_num, m_spinner_i; public: - virtual void exec(gOpcode *opcode); + virtual void exec(const gOpcode *opcode); gDC(gPixmap *pixmap); gDC(); virtual ~gDC(); @@ -284,10 +318,10 @@ public: virtual eSize size() { return m_pixmap->size(); } virtual int islocked() { return 0; } - void enableSpinner(); - void disableSpinner(); - void incrementSpinner(); - void setSpinner(eRect pos); + virtual void enableSpinner(); + virtual void disableSpinner(); + virtual void incrementSpinner(); + virtual void setSpinner(eRect pos, ePtr *pic, int len); }; #endif