(RARCH_PERF) Rename benchmark.c to perforance.c

(MSVC2010) Rename incorrectly named MSVC2012 solution which was
really an MSVC 2010 solution
This commit is contained in:
twinaphex 2012-11-01 06:21:18 +01:00
parent 3837a503b7
commit b240cfbc7e
15 changed files with 17 additions and 37 deletions

View File

@ -143,7 +143,7 @@ endif
ifeq ($(PERF_TEST), 1)
DEFINES += -DPERF_TEST
OBJ += benchmark.o
OBJ += performance.o
endif
ifeq ($(HAVE_SDL), 1)

View File

@ -78,7 +78,7 @@ endif
ifeq ($(PERF_TEST), 1)
DEFINES += -DPERF_TEST
OBJ += benchmark.o
OBJ += performance.o
endif
JLIBS =

View File

@ -58,7 +58,7 @@ LOCAL_SRC_FILES = $(RARCH_PATH)/retroarch.c \
main.c
ifeq ($(PERF_TEST), 1)
LOCAL_SRC_FILES += $(RARCH_PATH)/benchmark.c
LOCAL_SRC_FILES += $(RARCH_PATH)/performance.c
LOCAL_CFLAGS += -DPERF_TEST
endif

View File

@ -17,7 +17,7 @@
#include <android/keycodes.h>
#include <unistd.h>
#include "android_general.h"
#include "../../../benchmark.h"
#include "../../../performance.h"
#include "../../../general.h"
#include "../../../driver.h"
#include "input_android.h"

View File

@ -43,7 +43,7 @@ CONSOLE EXTENSIONS
#endif
#ifdef PERF_TEST
#include "../../benchmark.c"
#include "../../performance.c"
#endif
#ifdef HAVE_RSOUND

View File

@ -15,7 +15,7 @@
*/
#include "../driver.h"
#include "../benchmark.h"
#include "../performance.h"
#include "scaler/scaler.h"
#include <stdint.h>

View File

@ -21,7 +21,7 @@
#include <string.h>
#include <stdio.h>
#include <math.h>
#include "../../benchmark.h"
#include "../../performance.h"
// In case aligned allocs are needed later ...
void *scaler_alloc(size_t elem_size, size_t size)

View File

@ -24,7 +24,7 @@
#include "../libretro.h"
#include "../general.h"
#include "../driver.h"
#include "../benchmark.h"
#include "../performance.h"
#ifdef HAVE_FREETYPE
#include "fonts/fonts.h"

View File

@ -13,7 +13,7 @@
<PropertyGroup Label="Globals">
<ProjectGuid>{27FF7CE1-4059-4AA1-8062-FD529560FA54}</ProjectGuid>
<Keyword>Win32Proj</Keyword>
<RootNamespace>RetroArchmsvc2012</RootNamespace>
<RootNamespace>RetroArchmsvc2010</RootNamespace>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
@ -114,7 +114,7 @@
<CompileAs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">CompileAsCpp</CompileAs>
<CompileAs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">CompileAsCpp</CompileAs>
</ClCompile>
<ClCompile Include="..\..\benchmark.c">
<ClCompile Include="..\..\performance.c">
<CompileAs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">CompileAsCpp</CompileAs>
<CompileAs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">CompileAsCpp</CompileAs>
</ClCompile>
@ -269,4 +269,4 @@
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
</Project>

View File

@ -42,7 +42,7 @@
<ClCompile Include="..\..\autosave.c">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\benchmark.c">
<ClCompile Include="..\..\performance.c">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\cheats.c">
@ -175,4 +175,4 @@
<Filter>Source Files\gfx\math</Filter>
</ClCompile>
</ItemGroup>
</Project>
</Project>

View File

@ -1,20 +0,0 @@

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "RetroArch-msvc2012", "RetroArch-msvc2012.vcxproj", "{27FF7CE1-4059-4AA1-8062-FD529560FA54}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Win32 = Debug|Win32
Release|Win32 = Release|Win32
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{27FF7CE1-4059-4AA1-8062-FD529560FA54}.Debug|Win32.ActiveCfg = Debug|Win32
{27FF7CE1-4059-4AA1-8062-FD529560FA54}.Debug|Win32.Build.0 = Debug|Win32
{27FF7CE1-4059-4AA1-8062-FD529560FA54}.Release|Win32.ActiveCfg = Release|Win32
{27FF7CE1-4059-4AA1-8062-FD529560FA54}.Release|Win32.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal

View File

@ -14,7 +14,7 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#include "benchmark.h"
#include "performance.h"
#if defined(__CELLOS_LV2__) || defined(GEKKO)
#ifndef _PPU_INTRINSICS_H

View File

@ -14,8 +14,8 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _RARCH_BENCHMARK_H
#define _RARCH_BENCHMARK_H
#ifndef _RARCH_PERF_H
#define _RARCH_PERF_H
#include "general.h"

View File

@ -24,7 +24,7 @@
#include "file.h"
#include "general.h"
#include "dynamic.h"
#include "benchmark.h"
#include "performance.h"
#include "audio/utils.h"
#include "record/ffemu.h"
#include "rewind.h"