mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-18 15:01:41 +00:00
diff noise reduction
This commit is contained in:
parent
e88cdda35a
commit
c278652d9a
2 changed files with 2 additions and 29 deletions
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
nonintel.c
|
||||
|
||||
@description@
|
||||
code for non-Intel processors only
|
||||
|
||||
Copyright (C) 1996-1997 Id Software, Inc.
|
||||
|
||||
|
@ -30,16 +30,9 @@
|
|||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#include "r_local.h"
|
||||
#include "d_local.h"
|
||||
|
||||
#ifndef USE_INTEL_ASM
|
||||
|
||||
/*
|
||||
================
|
||||
R_Surf8Patch
|
||||
================
|
||||
*/
|
||||
void
|
||||
R_Surf8Patch ()
|
||||
{
|
||||
|
@ -47,11 +40,6 @@ R_Surf8Patch ()
|
|||
}
|
||||
|
||||
|
||||
/*
|
||||
================
|
||||
R_Surf16Patch
|
||||
================
|
||||
*/
|
||||
void
|
||||
R_Surf16Patch ()
|
||||
{
|
||||
|
@ -59,16 +47,10 @@ R_Surf16Patch ()
|
|||
}
|
||||
|
||||
|
||||
/*
|
||||
================
|
||||
R_SurfacePatch
|
||||
================
|
||||
*/
|
||||
void
|
||||
R_SurfacePatch (void)
|
||||
{
|
||||
// we only patch code on Intel
|
||||
}
|
||||
|
||||
|
||||
#endif // USE_INTEL_ASM
|
||||
|
|
|
@ -30,11 +30,9 @@
|
|||
# include "config.h"
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef USE_INTEL_ASM
|
||||
|
||||
/*
|
||||
R_Surf8Patch
|
||||
*/
|
||||
void
|
||||
R_Surf8Patch (void)
|
||||
{
|
||||
|
@ -42,9 +40,6 @@ R_Surf8Patch (void)
|
|||
}
|
||||
|
||||
|
||||
/*
|
||||
R_Surf16Patch
|
||||
*/
|
||||
void
|
||||
R_Surf16Patch (void)
|
||||
{
|
||||
|
@ -52,14 +47,10 @@ R_Surf16Patch (void)
|
|||
}
|
||||
|
||||
|
||||
/*
|
||||
R_SurfacePatch
|
||||
*/
|
||||
void
|
||||
R_SurfacePatch (void)
|
||||
{
|
||||
// we only patch code on Intel
|
||||
}
|
||||
|
||||
|
||||
#endif // !USE_INTEL_ASM
|
||||
|
|
Loading…
Reference in a new issue