removed unneeded emms calls

This commit is contained in:
koolsmoky
2007-06-23 08:50:57 +00:00
parent 234f54da93
commit c1791171c5
2 changed files with 8 additions and 2 deletions

View File

@@ -19,6 +19,9 @@
;; $Header$
;; $Revision$
;; $Log$
;; Revision 1.1.2.2 2005/04/23 18:36:36 koolsmoky
;; fixed 3dnow! and mmx optimizations
;;
;; Revision 1.1.2.1 2004/12/23 20:45:56 koolsmoky
;; converted to nasm syntax
;; added x86 asm, 3dnow! triangle and mmx, 3dnow! texture download optimizations
@@ -163,7 +166,7 @@ proc _grTexDownload_MMX, 24
femms ; we'll use MMX/3DNow!, make sure FPU register cleared
%ENDIF
%IFDEF GL_MMX
emms ; we'll use MMX
; emms ; we'll use MMX
%ENDIF
movd mm3, [esp + _baseAddr$] ; 0 | address of texture to download

View File

@@ -19,6 +19,9 @@
;; $Header$
;; $Revision$
;; $Log$
;; Revision 1.1.1.1.8.3 2005/06/09 18:32:08 jwrdegoede
;; Fixed all warnings with gcc4 -Wall -W -Wno-unused-parameter, except for a couple I believe to be a gcc bug. This has been reported to gcc.
;;
;; Revision 1.1.1.1.8.2 2004/11/25 19:12:22 koolsmoky
;; fixed 3dnow! and mmx texture download routines
;;
@@ -166,7 +169,7 @@ proc _grTexDownload_MMX, 24
femms ; we'll use MMX/3DNow!, make sure FPU register cleared
%ENDIF
%IFDEF GL_MMX
emms ; we'll use MMX
; emms ; we'll use MMX
%ENDIF
mov edx, curS ; curS = maxS = scanline width in DWORDs