CVS commit: xsrc/external/mit/xf86-video-i740/dist/src

2013-07-11 Thread Thomas Klausner
Module Name:xsrc
Committed By:   wiz
Date:   Thu Jul 11 10:28:27 UTC 2013

Modified Files:
xsrc/external/mit/xf86-video-i740/dist/src: i740_dga.c

Log Message:
Add a missing initializer. From Matthieu Herrb in
http://patchwork.freedesktop.org/patch/13855/


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 \
xsrc/external/mit/xf86-video-i740/dist/src/i740_dga.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: xsrc/external/mit/xf86-video-i740/dist/src/i740_dga.c
diff -u xsrc/external/mit/xf86-video-i740/dist/src/i740_dga.c:1.2 xsrc/external/mit/xf86-video-i740/dist/src/i740_dga.c:1.3
--- xsrc/external/mit/xf86-video-i740/dist/src/i740_dga.c:1.2	Sun Jun  2 14:40:15 2013
+++ xsrc/external/mit/xf86-video-i740/dist/src/i740_dga.c	Thu Jul 11 10:28:27 2013
@@ -67,7 +67,7 @@ static DGAFunctionRec I740DGAFuncs = {
NULL
 #endif
 #else
-   NULL, NULL, NULL
+   NULL, NULL, NULL, NULL
 #endif
 };
 



CVS commit: xsrc/external/mit/xf86-video-i740/dist/src

2013-07-11 Thread Thomas Klausner
Module Name:xsrc
Committed By:   wiz
Date:   Thu Jul 11 10:28:27 UTC 2013

Modified Files:
xsrc/external/mit/xf86-video-i740/dist/src: i740_dga.c

Log Message:
Add a missing initializer. From Matthieu Herrb in
http://patchwork.freedesktop.org/patch/13855/


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 \
xsrc/external/mit/xf86-video-i740/dist/src/i740_dga.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



re: CVS commit: xsrc/external/mit/xf86-video-i740/dist/src

2013-06-02 Thread matthew green

 Module Name:  xsrc
 Committed By: christos
 Date: Sun Jun  2 14:40:15 UTC 2013
 
 Modified Files:
   xsrc/external/mit/xf86-video-i740/dist/src: i740_dga.c
 
 Log Message:
 make this compile again

why do you need this?  it isn't necessary for me, and does
match similar changes that exist in other drivers updates.

thanks.


.mrg.


re: CVS commit: xsrc/external/mit/xf86-video-i740/dist/src

2013-06-02 Thread Christos Zoulas
On Jun 3,  5:10am, m...@eterna.com.au (matthew green) wrote:
-- Subject: re: CVS commit: xsrc/external/mit/xf86-video-i740/dist/src

| 
|  Module Name:xsrc
|  Committed By:   christos
|  Date:   Sun Jun  2 14:40:15 UTC 2013
|  
|  Modified Files:
|  xsrc/external/mit/xf86-video-i740/dist/src: i740_dga.c
|  
|  Log Message:
|  make this compile again
| 
| why do you need this?  it isn't necessary for me, and does
| match similar changes that exist in other drivers updates.

I don't know, ate you also compiling with -DDEBUG? For me it complained
about the Sync function not defined.

christos


CVS commit: xsrc/external/mit/xf86-video-i740/dist/src

2013-06-02 Thread Christos Zoulas
Module Name:xsrc
Committed By:   christos
Date:   Sun Jun  2 14:40:15 UTC 2013

Modified Files:
xsrc/external/mit/xf86-video-i740/dist/src: i740_dga.c

Log Message:
make this compile again


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.3 -r1.2 \
xsrc/external/mit/xf86-video-i740/dist/src/i740_dga.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: xsrc/external/mit/xf86-video-i740/dist/src/i740_dga.c
diff -u xsrc/external/mit/xf86-video-i740/dist/src/i740_dga.c:1.1.1.3 xsrc/external/mit/xf86-video-i740/dist/src/i740_dga.c:1.2
--- xsrc/external/mit/xf86-video-i740/dist/src/i740_dga.c:1.1.1.3	Sun Jun  2 03:25:26 2013
+++ xsrc/external/mit/xf86-video-i740/dist/src/i740_dga.c	Sun Jun  2 10:40:15 2013
@@ -41,10 +41,10 @@
 
 static Bool I740_OpenFramebuffer(ScrnInfoPtr, char **, unsigned char **, int *, int *, int *);
 static Bool I740_SetMode(ScrnInfoPtr, DGAModePtr);
-static void I740_Sync(ScrnInfoPtr);
 static int  I740_GetViewport(ScrnInfoPtr);
 static void I740_SetViewport(ScrnInfoPtr, int, int, int);
 #ifdef HAVE_XAA_H
+static void I740_Sync(ScrnInfoPtr);
 static void I740_FillRect(ScrnInfoPtr, int, int, int, int, unsigned long);
 static void I740_BlitRect(ScrnInfoPtr, int, int, int, int, int, int);
 #if 0
@@ -57,8 +57,8 @@ static DGAFunctionRec I740DGAFuncs = {
I740_SetMode,
I740_SetViewport,
I740_GetViewport,
-   I740_Sync,
 #ifdef HAVE_XAA_H
+   I740_Sync,
I740_FillRect,
I740_BlitRect,
 #if 0



CVS commit: xsrc/external/mit/xf86-video-i740/dist/src

2013-06-02 Thread Thomas Klausner
Module Name:xsrc
Committed By:   wiz
Date:   Sun Jun  2 21:44:44 UTC 2013

Modified Files:
xsrc/external/mit/xf86-video-i740/dist/src: i740_driver.c

Log Message:
Reduce unnecessary diffs to upstream (unistd.h is now included for usleep())


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 \
xsrc/external/mit/xf86-video-i740/dist/src/i740_driver.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: xsrc/external/mit/xf86-video-i740/dist/src/i740_driver.c
diff -u xsrc/external/mit/xf86-video-i740/dist/src/i740_driver.c:1.3 xsrc/external/mit/xf86-video-i740/dist/src/i740_driver.c:1.4
--- xsrc/external/mit/xf86-video-i740/dist/src/i740_driver.c:1.3	Sun Jun  2 07:36:43 2013
+++ xsrc/external/mit/xf86-video-i740/dist/src/i740_driver.c	Sun Jun  2 21:44:44 2013
@@ -88,7 +88,6 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN
 
 #include xf86xv.h
 #include X11/extensions/Xv.h
-#include X11/Xos.h
 
 #include vbe.h
 #include i740_dga.h



CVS commit: xsrc/external/mit/xf86-video-i740/dist/src

2013-06-02 Thread Christos Zoulas
Module Name:xsrc
Committed By:   christos
Date:   Sun Jun  2 14:40:15 UTC 2013

Modified Files:
xsrc/external/mit/xf86-video-i740/dist/src: i740_dga.c

Log Message:
make this compile again


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.3 -r1.2 \
xsrc/external/mit/xf86-video-i740/dist/src/i740_dga.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: xsrc/external/mit/xf86-video-i740/dist/src

2013-06-02 Thread Thomas Klausner
Module Name:xsrc
Committed By:   wiz
Date:   Sun Jun  2 21:44:44 UTC 2013

Modified Files:
xsrc/external/mit/xf86-video-i740/dist/src: i740_driver.c

Log Message:
Reduce unnecessary diffs to upstream (unistd.h is now included for usleep())


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 \
xsrc/external/mit/xf86-video-i740/dist/src/i740_driver.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: xsrc/external/mit/xf86-video-i740/dist/src

2011-05-15 Thread Christos Zoulas
Module Name:xsrc
Committed By:   christos
Date:   Sun May 15 22:58:35 UTC 2011

Modified Files:
xsrc/external/mit/xf86-video-i740/dist/src: i740_driver.c i740_video.c

Log Message:
add Xos.h for usleep


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.4 -r1.2 \
xsrc/external/mit/xf86-video-i740/dist/src/i740_driver.c
cvs rdiff -u -r1.1.1.3 -r1.2 \
xsrc/external/mit/xf86-video-i740/dist/src/i740_video.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: xsrc/external/mit/xf86-video-i740/dist/src/i740_driver.c
diff -u xsrc/external/mit/xf86-video-i740/dist/src/i740_driver.c:1.1.1.4 xsrc/external/mit/xf86-video-i740/dist/src/i740_driver.c:1.2
--- xsrc/external/mit/xf86-video-i740/dist/src/i740_driver.c:1.1.1.4	Fri Aug 21 19:53:46 2009
+++ xsrc/external/mit/xf86-video-i740/dist/src/i740_driver.c	Sun May 15 18:58:35 2011
@@ -87,6 +87,7 @@
 
 #include xf86xv.h
 #include X11/extensions/Xv.h
+#include X11/Xos.h
 
 #include vbe.h
 #include i740_dga.h

Index: xsrc/external/mit/xf86-video-i740/dist/src/i740_video.c
diff -u xsrc/external/mit/xf86-video-i740/dist/src/i740_video.c:1.1.1.3 xsrc/external/mit/xf86-video-i740/dist/src/i740_video.c:1.2
--- xsrc/external/mit/xf86-video-i740/dist/src/i740_video.c:1.1.1.3	Fri Aug 21 19:53:46 2009
+++ xsrc/external/mit/xf86-video-i740/dist/src/i740_video.c	Sun May 15 18:58:35 2011
@@ -66,6 +66,7 @@
 
 #include xf86xv.h
 #include X11/extensions/Xv.h
+#include X11/Xos.h
 #include xaa.h
 #include xaalocal.h
 #include dixstruct.h



CVS commit: xsrc/external/mit/xf86-video-i740/dist/src

2011-05-15 Thread Christos Zoulas
Module Name:xsrc
Committed By:   christos
Date:   Sun May 15 22:58:35 UTC 2011

Modified Files:
xsrc/external/mit/xf86-video-i740/dist/src: i740_driver.c i740_video.c

Log Message:
add Xos.h for usleep


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.4 -r1.2 \
xsrc/external/mit/xf86-video-i740/dist/src/i740_driver.c
cvs rdiff -u -r1.1.1.3 -r1.2 \
xsrc/external/mit/xf86-video-i740/dist/src/i740_video.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.