Add rayman2 source files
This commit is contained in:
176
Rayman_X/cpa/tempgrp/MTH/Specif/MTH_fopt.c
Normal file
176
Rayman_X/cpa/tempgrp/MTH/Specif/MTH_fopt.c
Normal file
@@ -0,0 +1,176 @@
|
||||
/* ##C_FILE#
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
FILE : MTH_fopt.c
|
||||
MODULE : MTH (Common Mathematic Library)
|
||||
|
||||
DESCRIPTION : Optimization for PC and float
|
||||
|
||||
VERSION : MTH V5.0.13 / Alexandre LANGER [ALX] Ubi R&D / Add Comments
|
||||
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
*/
|
||||
|
||||
|
||||
/* NOT for U64 */
|
||||
#ifndef U64
|
||||
|
||||
/* ##INCLUDE#----------------------------------------------------------------------------
|
||||
Includes Files
|
||||
---------------------------------------------------------------------------------------*/
|
||||
|
||||
#include <math.h>
|
||||
|
||||
|
||||
|
||||
#include "cpa_expt.h"
|
||||
|
||||
|
||||
/* ##GLOBVAR#----------------------------------------------------------------------------
|
||||
Globale variable declaration
|
||||
---------------------------------------------------------------------------------------*/
|
||||
|
||||
double MTH_gs_dDecal; /* = 3.0F*pow(2, 51); */
|
||||
|
||||
/* sqrt : */
|
||||
CPA_EXPORT unsigned long MTH_g_a2048_fSquareRootTable[1024*2];
|
||||
/* div : */
|
||||
CPA_EXPORT unsigned long MTH_g_a1024_fInverse[1024];
|
||||
/* inv sqrt : */
|
||||
CPA_EXPORT unsigned long MTH_g_a2048_fInvSquareRootTable[1024*2];
|
||||
|
||||
|
||||
|
||||
|
||||
/* ##FUNCDEF#----------------------------------------------------------------------------
|
||||
Functions definition
|
||||
---------------------------------------------------------------------------------------*/
|
||||
|
||||
|
||||
/* ##-###########################
|
||||
## SQRT
|
||||
############################## */
|
||||
|
||||
/* ##F===================================================================================
|
||||
NAME : MTH_fn_vInitSqrtRootOpt
|
||||
DESCRIPTION : Initialize Square root table
|
||||
INPUT : void
|
||||
OUTPUT : void
|
||||
=======================================================================================*/
|
||||
void MTH_fn_vInitSqrtRootOpt( void )
|
||||
{
|
||||
long i;
|
||||
float ft;
|
||||
unsigned long m;
|
||||
|
||||
for ( i=0; i<1024; i++)
|
||||
{
|
||||
ft = (float) sqrt((double) 1.0+((float)i/1024) );
|
||||
m = *(long *)&ft;
|
||||
m&= 0x7FFFFF;
|
||||
MTH_g_a2048_fSquareRootTable[i+1024] = m;
|
||||
|
||||
ft = (float) ( sqrt(2.0)*sqrt((double) 1.0+((float)i/1024) ) );
|
||||
m = *(long *)&ft;
|
||||
m&= 0x7FFFFF;
|
||||
MTH_g_a2048_fSquareRootTable[i] = m;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* ##-###########################
|
||||
## DIV
|
||||
############################## */
|
||||
|
||||
/* ##F===================================================================================
|
||||
NAME : MTH_fn_vInitInverseOpt
|
||||
DESCRIPTION : Initialize Inverse table
|
||||
INPUT : void
|
||||
OUTPUT : void
|
||||
=======================================================================================*/
|
||||
void MTH_fn_vInitInverseOpt( void )
|
||||
{
|
||||
long i;
|
||||
float ft;
|
||||
|
||||
for ( i=0; i<1024; i++ )
|
||||
{
|
||||
ft = 1.0F / ( 1.0F + ((float)i/1024) );
|
||||
MTH_g_a1024_fInverse[i] = (*(long *)&ft) & 0x7FFFFF;
|
||||
}
|
||||
MTH_g_a1024_fInverse[0]=(1<<23); /* Because of problems with 2^n */
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* ##-###########################
|
||||
## INV SQRT
|
||||
############################## */
|
||||
|
||||
/* ##F===================================================================================
|
||||
NAME : MTH_fn_vInitInvSqrtRootOpt
|
||||
DESCRIPTION : Initialize Inverse Square root table
|
||||
INPUT : void
|
||||
OUTPUT : void
|
||||
=======================================================================================*/
|
||||
void MTH_fn_vInitInvSqrtRootOpt(void)
|
||||
{
|
||||
long i; /* index on the table */
|
||||
unsigned long m; /* mantis */
|
||||
float ft; /* float value */
|
||||
|
||||
for ( i=0; i<1024; i++ )
|
||||
{
|
||||
ft = (float) ( 2.0/sqrt((double)( 1.0+((float)i/1024) )) );
|
||||
m = *(long *)&ft;
|
||||
m &= 0x7FFFFF;
|
||||
MTH_g_a2048_fInvSquareRootTable[i+1024] = m;
|
||||
ft = (float) ( sqrt(2.0)/sqrt((double)( 1.0+((float)i/1024) )) );
|
||||
m = *(long *)&ft;
|
||||
m &= 0x7FFFFF;
|
||||
m+=0x800000;
|
||||
MTH_g_a2048_fInvSquareRootTable[i] = m;
|
||||
}
|
||||
MTH_g_a2048_fInvSquareRootTable[1024]=(1<<23);
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* ##-###########################
|
||||
## INIT
|
||||
############################## */
|
||||
|
||||
/* ##F===================================================================================
|
||||
NAME : MTH_fn_vInit
|
||||
DESCRIPTION : Initialize all table if it not yet done
|
||||
INPUT : void
|
||||
OUTPUT : void
|
||||
=======================================================================================*/
|
||||
void MTH_fn_vInit( void )
|
||||
{
|
||||
static unsigned char InitDone=0;
|
||||
|
||||
MTH_gs_dDecal= 3.0F*pow(2, 51);
|
||||
|
||||
if(InitDone==0)
|
||||
{
|
||||
MTH_fn_vInitSqrtRootOpt();
|
||||
MTH_fn_vInitInverseOpt();
|
||||
MTH_fn_vInitInvSqrtRootOpt();
|
||||
InitDone=1;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
#endif /* NOT U64 */
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
5
Rayman_X/cpa/tempgrp/MTH/mssccprj.scc
Normal file
5
Rayman_X/cpa/tempgrp/MTH/mssccprj.scc
Normal file
@@ -0,0 +1,5 @@
|
||||
SCC = This is a source code control file
|
||||
|
||||
[mth.vcproj]
|
||||
SCC_Aux_Path = "P4SCC#srvperforce-ma:1666##raymandata##Editor"
|
||||
SCC_Project_Name = Perforce Project
|
277
Rayman_X/cpa/tempgrp/MTH/mth.dsp
Normal file
277
Rayman_X/cpa/tempgrp/MTH/mth.dsp
Normal file
@@ -0,0 +1,277 @@
|
||||
# Microsoft Developer Studio Project File - Name="mth" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 5.00
|
||||
# ** DO NOT EDIT **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Static Library" 0x0104
|
||||
|
||||
CFG=mth - Win32 Debug
|
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||
!MESSAGE use the Export Makefile command and run
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "mth.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "mth.mak" CFG="mth - Win32 Debug"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "mth - Win32 Release" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE "mth - Win32 Debug" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE "mth - Win32 Retail" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP Scc_ProjName ""$/cpa/tempgrp/MTH", PODAAAAA"
|
||||
# PROP Scc_LocalPath "."
|
||||
CPP=cl.exe
|
||||
|
||||
!IF "$(CFG)" == "mth - Win32 Release"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "Release"
|
||||
# PROP BASE Intermediate_Dir "Release"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "x:\cpa\lib"
|
||||
# PROP Intermediate_Dir "Tmp\Release"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c
|
||||
# ADD CPP /nologo /G5 /W3 /GX /O2 /I "X:/CPA/Public" /D "NDEBUG" /D "VISUAL" /D "WIN32" /D "USE_PROFILER" /FD /c
|
||||
# SUBTRACT CPP /Fr /YX
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo
|
||||
# ADD LIB32 /nologo /out:"X:/CPA/Lib/MTHP5_vr.lib"
|
||||
|
||||
!ELSEIF "$(CFG)" == "mth - Win32 Debug"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "Debug"
|
||||
# PROP BASE Intermediate_Dir "Debug"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "tmp/Debug"
|
||||
# PROP Intermediate_Dir "tmp/Debug"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /W3 /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c
|
||||
# ADD CPP /nologo /G5 /MD /W3 /GX /Z7 /Od /I "X:/CPA/Public" /D "_DEBUG" /D "VISUAL" /D "WIN32" /D "USE_PROFILER" /D "MTH_CHECK" /D "CPA_WANTS_EXPORT" /FD /c
|
||||
# SUBTRACT CPP /Fr /YX
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo
|
||||
# ADD LIB32 /nologo /out:"X:/CPA/Lib/MTHP5_vd.lib"
|
||||
|
||||
!ELSEIF "$(CFG)" == "mth - Win32 Retail"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "mth___Wi"
|
||||
# PROP BASE Intermediate_Dir "mth___Wi"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "x:/cpa/lib"
|
||||
# PROP Intermediate_Dir "tmp/retail"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /G5 /MD /W3 /GX /O2 /I "X:/CPA/Public" /D "NDEBUG" /D CPA_SRC_TAG_NAME=CPA_MTH /D "CPA_WANTS_EXPORT" /D "WIN32" /D "_WINDOWS" /D "VISUAL" /FD /c
|
||||
# SUBTRACT BASE CPP /Fr /YX
|
||||
# ADD CPP /nologo /G5 /W3 /GX /O2 /I "X:/CPA/Public" /D "NDEBUG" /D "VISUAL" /D "WIN32" /D "RETAIL" /FD /c
|
||||
# SUBTRACT CPP /Fr /YX
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo /out:"X:/CPA/Lib/MTHP5_vr.lib"
|
||||
# ADD LIB32 /nologo /out:"X:/CPA/Lib/MTHP5_vf.lib"
|
||||
|
||||
!ENDIF
|
||||
|
||||
# Begin Target
|
||||
|
||||
# Name "mth - Win32 Release"
|
||||
# Name "mth - Win32 Debug"
|
||||
# Name "mth - Win32 Retail"
|
||||
# Begin Group "inc"
|
||||
|
||||
# PROP Default_Filter "*.h"
|
||||
# Begin Group "specif"
|
||||
|
||||
# PROP Default_Filter "*.h"
|
||||
# Begin Group "SCA"
|
||||
|
||||
# PROP Default_Filter "*.h"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH\Specif\SCA\converse.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH\Specif\SCA\SCA_sl.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH\Specif\SCA\SCA_sl12.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH\Specif\SCA\SCA_sw.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH\Specif\SCA\SCA_sw12.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH\Specif\SCA\sl.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH\Specif\SCA\sl12.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH\Specif\SCA\sw.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH\Specif\SCA\sw12.h
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "VEC"
|
||||
|
||||
# PROP Default_Filter "*.h"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH\Specif\VEC\3D_conv.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH\Specif\VEC\sl12_3D.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH\Specif\VEC\sl_3D.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH\Specif\VEC\sw12_3D.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH\Specif\VEC\sw_3D.h
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "MAT"
|
||||
|
||||
# PROP Default_Filter "*.h"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH\Specif\Mat\Msl12_3D.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH\Specif\Mat\Msl_3D.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH\Specif\Mat\Msw12_3D.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH\Specif\Mat\Msw_3D.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH\Specif\Mat\Xsl12_3D.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH\Specif\Mat\Xsl_3D.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH\Specif\Mat\Xsw12_3D.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH\Specif\Mat\Xsw_3D.h
|
||||
# End Source File
|
||||
# End Group
|
||||
# End Group
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH\MTH2d.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH\MTH3d.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH\MTH3dopt.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH\MTH_dble.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH\MTH_def.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH\MTH_fchk.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH\MTH_flt.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH\MTH_fnop.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH\MTH_fopt.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH\MTH_fx16.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH\MTH_Real.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\MTH\MTH_trig.h
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "src"
|
||||
|
||||
# PROP Default_Filter "*.c"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\Specif\MTH_fopt.c
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\mth.mak
|
||||
# End Source File
|
||||
# End Target
|
||||
# End Project
|
330
Rayman_X/cpa/tempgrp/MTH/mth.vcproj
Normal file
330
Rayman_X/cpa/tempgrp/MTH/mth.vcproj
Normal file
@@ -0,0 +1,330 @@
|
||||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="mth"
|
||||
ProjectGUID="{5ADB5A40-4E50-4031-8797-A02AB7AD9C53}"
|
||||
SccProjectName=""$/cpa/tempgrp/MTH", PODAAAAA"
|
||||
SccAuxPath=""
|
||||
SccLocalPath="."
|
||||
SccProvider="MSSCCI:NXN alienbrain">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="X:\CPA\Libd"
|
||||
IntermediateDirectory=".\tmp/Debug"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
OptimizeForProcessor="1"
|
||||
AdditionalIncludeDirectories="X:/CPA/Public"
|
||||
PreprocessorDefinitions="_DEBUG;VISUAL;WIN32;USE_PROFILER;MTH_CHECK;CPA_WANTS_EXPORT"
|
||||
RuntimeLibrary="3"
|
||||
PrecompiledHeaderFile=".\tmp/Debug/mth.pch"
|
||||
AssemblerListingLocation=".\tmp/Debug/"
|
||||
ObjectFile=".\tmp/Debug/"
|
||||
ProgramDataBaseFileName=".\tmp/Debug/"
|
||||
WarningLevel="3"
|
||||
SuppressStartupBanner="TRUE"
|
||||
DebugInformationFormat="1"
|
||||
CompileAs="0"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="X:/CPA/Libd/MTHP5_vd.lib"
|
||||
SuppressStartupBanner="TRUE"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
Culture="1033"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Retail|Win32"
|
||||
OutputDirectory="x:/cpa/lib"
|
||||
IntermediateDirectory=".\tmp/retail"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="2"
|
||||
InlineFunctionExpansion="1"
|
||||
OptimizeForProcessor="1"
|
||||
AdditionalIncludeDirectories="X:/CPA/Public"
|
||||
PreprocessorDefinitions="NDEBUG;VISUAL;WIN32;RETAIL"
|
||||
StringPooling="TRUE"
|
||||
RuntimeLibrary="4"
|
||||
EnableFunctionLevelLinking="TRUE"
|
||||
PrecompiledHeaderFile=".\tmp/retail/mth.pch"
|
||||
AssemblerListingLocation=".\tmp/retail/"
|
||||
ObjectFile=".\tmp/retail/"
|
||||
ProgramDataBaseFileName=".\tmp/retail/"
|
||||
WarningLevel="3"
|
||||
SuppressStartupBanner="TRUE"
|
||||
CompileAs="0"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="X:/CPA/Lib/MTHP5_vf.lib"
|
||||
SuppressStartupBanner="TRUE"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
Culture="1033"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="x:\cpa\lib"
|
||||
IntermediateDirectory=".\Tmp\Release"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="2"
|
||||
InlineFunctionExpansion="1"
|
||||
OptimizeForProcessor="1"
|
||||
AdditionalIncludeDirectories="X:/CPA/Public"
|
||||
PreprocessorDefinitions="NDEBUG;VISUAL;WIN32;USE_PROFILER"
|
||||
StringPooling="TRUE"
|
||||
RuntimeLibrary="4"
|
||||
EnableFunctionLevelLinking="TRUE"
|
||||
PrecompiledHeaderFile=".\Tmp\Release/mth.pch"
|
||||
AssemblerListingLocation=".\Tmp\Release/"
|
||||
ObjectFile=".\Tmp\Release/"
|
||||
ProgramDataBaseFileName=".\Tmp\Release/"
|
||||
WarningLevel="3"
|
||||
SuppressStartupBanner="TRUE"
|
||||
CompileAs="0"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="X:/CPA/Lib/MTHP5_vr.lib"
|
||||
SuppressStartupBanner="TRUE"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
Culture="1033"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="inc"
|
||||
Filter="*.h">
|
||||
<File
|
||||
RelativePath="..\..\public\MTH.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\public\MTH\MTH2d.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\public\MTH\MTH3d.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\public\MTH\MTH3dopt.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\public\MTH\MTH_dble.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\public\MTH\MTH_def.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\public\MTH\MTH_fchk.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\public\MTH\MTH_flt.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\public\MTH\MTH_fnop.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\public\MTH\MTH_fopt.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\public\MTH\MTH_fx16.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\public\MTH\MTH_Real.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\public\MTH\MTH_trig.h">
|
||||
</File>
|
||||
<Filter
|
||||
Name="specif"
|
||||
Filter="*.h">
|
||||
<Filter
|
||||
Name="SCA"
|
||||
Filter="*.h">
|
||||
<File
|
||||
RelativePath="..\..\public\MTH\Specif\SCA\converse.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\public\MTH\Specif\SCA\SCA_sl.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\public\MTH\Specif\SCA\SCA_sl12.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\public\MTH\Specif\SCA\SCA_sw.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\public\MTH\Specif\SCA\SCA_sw12.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\public\MTH\Specif\SCA\sl.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\public\MTH\Specif\SCA\sl12.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\public\MTH\Specif\SCA\sw.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\public\MTH\Specif\SCA\sw12.h">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="VEC"
|
||||
Filter="*.h">
|
||||
<File
|
||||
RelativePath="..\..\public\MTH\Specif\VEC\3D_conv.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\public\MTH\Specif\VEC\sl12_3D.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\public\MTH\Specif\VEC\sl_3D.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\public\MTH\Specif\VEC\sw12_3D.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\public\MTH\Specif\VEC\sw_3D.h">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="MAT"
|
||||
Filter="*.h">
|
||||
<File
|
||||
RelativePath="..\..\public\MTH\Specif\Mat\Msl12_3D.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\public\MTH\Specif\Mat\Msl_3D.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\public\MTH\Specif\Mat\Msw12_3D.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\public\MTH\Specif\Mat\Msw_3D.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\public\MTH\Specif\Mat\Xsl12_3D.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\public\MTH\Specif\Mat\Xsl_3D.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\public\MTH\Specif\Mat\Xsw12_3D.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\public\MTH\Specif\Mat\Xsw_3D.h">
|
||||
</File>
|
||||
</Filter>
|
||||
</Filter>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="src"
|
||||
Filter="*.c">
|
||||
<File
|
||||
RelativePath="Specif\MTH_fopt.c">
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Retail|Win32">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="2"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="2"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
</Filter>
|
||||
<File
|
||||
RelativePath="mth.mak">
|
||||
</File>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
Reference in New Issue
Block a user