[xserver-commit] xserver/fb fbblt.c,1.14,1.15

Jaymz Julian xserver-commit@pdx.freedesktop.org


Committed by: jaymz

Update of /cvs/xserver/xserver/fb
In directory pdx:/tmp/cvs-serv24291/fb

Modified Files:
	fbblt.c 
Log Message:
c++ comments -> c comments.  i'll go and avail myself of the self 
punishment facilities now :)



Index: fbblt.c
===================================================================
RCS file: /cvs/xserver/xserver/fb/fbblt.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- fbblt.c	4 Feb 2004 06:16:06 -0000	1.14
+++ fbblt.c	4 Feb 2004 08:54:11 -0000	1.15
@@ -69,9 +69,10 @@
     int	    startbyte, endbyte;
     FbDeclareMergeRop ();
  
-    // are we just copying multiples of 8 bits?  if so, run, forrest, run!
-    // the memcpy()'s should be pluggable ala mplayer|xine - perhaps we can get
-    // one of the above to give up their code for us.
+    /* are we just copying multiples of 8 bits?  if so, run, forrest, run!
+       the memcpy()'s should be pluggable ala mplayer|xine - perhaps we can get
+       one of the above to give up their code for us.
+     */
     if((pm==FB_ALLONES) && (alu==GXcopy) && !reverse && (srcX&7)==0 && (dstX&7)==0 && (width&7)==0)
     {
 		CARD8 *isrc=(CARD8 *)srcLine;