paragui-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[paragui-cvs] CVS: paragui/src/widgets pgbutton.cpp,1.8.2.5,1.8.2.6 pgla


From: Teunis Peters <address@hidden>
Subject: [paragui-cvs] CVS: paragui/src/widgets pgbutton.cpp,1.8.2.5,1.8.2.6 pglayout.cpp,1.2.2.4,1.2.2.5 pglistboxitem.cpp,1.6.2.3,1.6.2.4 pgwidget.cpp,1.13.2.6,1.13.2.7 pgwidgetlist.cpp,1.11.2.3,1.11.2.4
Date: Thu, 31 Oct 2002 05:38:06 -0500

Update of /cvsroot/paragui/paragui/src/widgets
In directory subversions:/tmp/cvs-serv23350/src/widgets

Modified Files:
      Tag: devel-opengl
        pgbutton.cpp pglayout.cpp pglistboxitem.cpp pgwidget.cpp 
        pgwidgetlist.cpp 
Log Message:
LOTS of updates.
This branch now largely works - actually outside of what seems to be a 
libstdc++ bug that triggers in paratest, all the tests now work except gltest 
and testdummy.
OpenGL driver DOES work, but isn't complete.  Also tends to crash when opengl 
isn't threadsafe... such as with Matrox G450 *sigh*.
Dummy driver still needs updates.


Index: pgbutton.cpp
===================================================================
RCS file: /cvsroot/paragui/paragui/src/widgets/pgbutton.cpp,v
retrieving revision 1.8.2.5
retrieving revision 1.8.2.6
diff -C2 -r1.8.2.5 -r1.8.2.6
*** pgbutton.cpp        30 Oct 2002 09:16:29 -0000      1.8.2.5
--- pgbutton.cpp        31 Oct 2002 10:38:04 -0000      1.8.2.6
***************
*** 603,607 ****
        // blit it
  
!       if(t != 255) {
                srf->SetAlpha(SDL_SRCALPHA, 255-t);
                my_srfScreen->BlitSurface(srf, src, dst);
--- 603,607 ----
        // blit it
  
!       if(t != 255 && srf!=NULL) {
                srf->SetAlpha(SDL_SRCALPHA, 255-t);
                my_srfScreen->BlitSurface(srf, src, dst);

Index: pglayout.cpp
===================================================================
RCS file: /cvsroot/paragui/paragui/src/widgets/pglayout.cpp,v
retrieving revision 1.2.2.4
retrieving revision 1.2.2.5
diff -C2 -r1.2.2.4 -r1.2.2.5
*** pglayout.cpp        30 Oct 2002 09:16:29 -0000      1.2.2.4
--- pglayout.cpp        31 Oct 2002 10:38:04 -0000      1.2.2.5
***************
*** 156,160 ****
        }
        Rect.SetRect(r[0], r[1], r[2], r[3]);
-       fprintf(stderr, "%s:%s:%i\n", __FILE__, __FUNCTION__, __LINE__);
        free(parm);
  }
--- 156,159 ----
***************
*** 245,249 ****
  
        *XMLParser = *OldUserData;
-       fprintf(stderr, "%s:%s:%i\n", __FILE__, __FUNCTION__, __LINE__);
        free(OldUserData);
  
--- 244,247 ----

Index: pglistboxitem.cpp
===================================================================
RCS file: /cvsroot/paragui/paragui/src/widgets/pglistboxitem.cpp,v
retrieving revision 1.6.2.3
retrieving revision 1.6.2.4
diff -C2 -r1.6.2.3 -r1.6.2.4
*** pglistboxitem.cpp   12 Sep 2002 06:38:50 -0000      1.6.2.3
--- pglistboxitem.cpp   31 Oct 2002 10:38:04 -0000      1.6.2.4
***************
*** 35,39 ****
  PG_ListBoxItem::PG_ListBoxItem(PG_ListBox* parent, int height, const char* 
text, PG_Draw::PG_DrawableSurface* icon, void* userdata, const char* style) : 
PG_ListBoxBaseItem(parent, height, userdata) {
  
!       PG_LogDBG("PG_ListBoxItem::PG_ListBoxItem(%08x)", parent);
        
        for(int i=0; i<3; i++) {
--- 35,39 ----
  PG_ListBoxItem::PG_ListBoxItem(PG_ListBox* parent, int height, const char* 
text, PG_Draw::PG_DrawableSurface* icon, void* userdata, const char* style) : 
PG_ListBoxBaseItem(parent, height, userdata) {
  
!         // PG_LogDBG("PG_ListBoxItem::PG_ListBoxItem(%08x)", parent);
        
        for(int i=0; i<3; i++) {

Index: pgwidget.cpp
===================================================================
RCS file: /cvsroot/paragui/paragui/src/widgets/pgwidget.cpp,v
retrieving revision 1.13.2.6
retrieving revision 1.13.2.7
diff -C2 -r1.13.2.6 -r1.13.2.7
*** pgwidget.cpp        30 Oct 2002 09:16:29 -0000      1.13.2.6
--- pgwidget.cpp        31 Oct 2002 10:38:04 -0000      1.13.2.7
***************
*** 223,227 ****
  
        if (my_internaldata->userdata != NULL) {
-               fprintf(stderr, "%s:%s:%i\n", __FILE__, __FUNCTION__, __LINE__);
                free(my_internaldata->userdata);
        }
--- 223,226 ----

Index: pgwidgetlist.cpp
===================================================================
RCS file: /cvsroot/paragui/paragui/src/widgets/pgwidgetlist.cpp,v
retrieving revision 1.11.2.3
retrieving revision 1.11.2.4
diff -C2 -r1.11.2.3 -r1.11.2.4
*** pgwidgetlist.cpp    12 Sep 2002 06:38:50 -0000      1.11.2.3
--- pgwidgetlist.cpp    31 Oct 2002 10:38:04 -0000      1.11.2.4
***************
*** 198,202 ****
  
  void PG_WidgetList::AddChild(PG_Widget* w) {
!         PG_LogDBG("PG_WidgetList::AddChild()");
        
        if(w == NULL) {
--- 198,202 ----
  
  void PG_WidgetList::AddChild(PG_Widget* w) {
!   // PG_LogDBG("PG_WidgetList::AddChild()");
        
        if(w == NULL) {





reply via email to

[Prev in Thread] Current Thread [Next in Thread]