port from perforce
This commit is contained in:
1514
nordlicht2014-intro/nordlicht2014/4klang.asm
Normal file
1514
nordlicht2014-intro/nordlicht2014/4klang.asm
Normal file
File diff suppressed because it is too large
Load Diff
22
nordlicht2014-intro/nordlicht2014/4klang.h
Normal file
22
nordlicht2014-intro/nordlicht2014/4klang.h
Normal file
@@ -0,0 +1,22 @@
|
||||
// some useful song defines for 4klang
|
||||
#define SAMPLE_RATE 44100
|
||||
#define BPM 88.000000
|
||||
#define MAX_INSTRUMENTS 12
|
||||
#define MAX_PATTERNS 60
|
||||
#define PATTERN_SIZE_SHIFT 4
|
||||
#define PATTERN_SIZE (1 << PATTERN_SIZE_SHIFT)
|
||||
#define MAX_TICKS (MAX_PATTERNS*PATTERN_SIZE)
|
||||
#define SAMPLES_PER_TICK 7517
|
||||
#define MAX_SAMPLES (SAMPLES_PER_TICK*MAX_TICKS)
|
||||
#define POLYPHONY 1
|
||||
#define FLOAT_32BIT
|
||||
#define SAMPLE_TYPE float
|
||||
|
||||
#define WINDOWS_OBJECT
|
||||
|
||||
// declaration of the external synth render function, you'll always need that
|
||||
extern "C" void __stdcall _4klang_render(void*);
|
||||
// declaration of the external envelope buffer. access only if you're song was exported with that option
|
||||
extern "C" float _4klang_envelope_buffer;
|
||||
// declaration of the external note buffer. access only if you're song was exported with that option
|
||||
extern "C" int _4klang_note_buffer;
|
||||
1032
nordlicht2014-intro/nordlicht2014/4klang.inc
Normal file
1032
nordlicht2014-intro/nordlicht2014/4klang.inc
Normal file
File diff suppressed because it is too large
Load Diff
BIN
nordlicht2014-intro/nordlicht2014/4klang.obj
Normal file
BIN
nordlicht2014-intro/nordlicht2014/4klang.obj
Normal file
Binary file not shown.
1494
nordlicht2014-intro/nordlicht2014/4klangold.asm
Normal file
1494
nordlicht2014-intro/nordlicht2014/4klangold.asm
Normal file
File diff suppressed because it is too large
Load Diff
41
nordlicht2014-intro/nordlicht2014/Animation.h
Normal file
41
nordlicht2014-intro/nordlicht2014/Animation.h
Normal file
@@ -0,0 +1,41 @@
|
||||
#define ANI_VAR_COUNT 6
|
||||
|
||||
#define ANI_EYE_POS_X 0
|
||||
#define ANI_EYE_POS_Y 1
|
||||
#define ANI_EYE_POS_Z 2
|
||||
#define ANI_EYE_TRG_X 3
|
||||
#define ANI_EYE_TRG_Y 4
|
||||
#define ANI_EYE_TRG_Z 5
|
||||
|
||||
// Animations and timeline
|
||||
const int R4K_Rows[] = {
|
||||
0, // eye_pos_x
|
||||
0, // eye_pos_y
|
||||
0, 400, // eye_pos_z
|
||||
0, // eye_trg_x
|
||||
0, // eye_trg_y
|
||||
0, 400 }; // eye_trg_z
|
||||
|
||||
const int R4K_Values[] = {
|
||||
0, // eye_pos_x
|
||||
-51, // eye_pos_y
|
||||
896, 2048, // eye_pos_z
|
||||
0, // eye_trg_x
|
||||
256, // eye_trg_y
|
||||
768, 1536 }; // eye_trg_z
|
||||
|
||||
const char R4K_KeyType[] = {
|
||||
0, // eye_pos_x
|
||||
0, // eye_pos_y
|
||||
1, 0, // eye_pos_z
|
||||
0, // eye_trg_x
|
||||
0, // eye_trg_y
|
||||
1, 0 }; // eye_trg_z
|
||||
|
||||
const char R4K_KeyCount[] = {
|
||||
1, // eye_pos_x
|
||||
1, // eye_pos_y
|
||||
2, // eye_pos_z
|
||||
1, // eye_trg_x
|
||||
1, // eye_trg_y
|
||||
2 }; // eye_trg_z
|
||||
@@ -0,0 +1,10 @@
|
||||
Build started 21.07.2014 23:14:41.
|
||||
1>Project "E:\blu-flame.org\nordlicht2014-intro\nordlicht2014\nordlicht2014.vcxproj" on node 2 (Build target(s)).
|
||||
1>CustomBuild:
|
||||
Minifying shader...
|
||||
1>CUSTOMBUILD : error : Could not find file 'debug'.
|
||||
1>Done Building Project "E:\blu-flame.org\nordlicht2014-intro\nordlicht2014\nordlicht2014.vcxproj" (Build target(s)) -- FAILED.
|
||||
|
||||
Build FAILED.
|
||||
|
||||
Time Elapsed 00:00:00.12
|
||||
Binary file not shown.
@@ -0,0 +1 @@
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
#TargetFrameworkVersion=v4.0:PlatformToolSet=v120:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit
|
||||
Compress debug|Win32|E:\blu-flame.org\nordlicht2014-intro\|
|
||||
BIN
nordlicht2014-intro/nordlicht2014/Compress/data.obj
Normal file
BIN
nordlicht2014-intro/nordlicht2014/Compress/data.obj
Normal file
Binary file not shown.
BIN
nordlicht2014-intro/nordlicht2014/Compress/device.obj
Normal file
BIN
nordlicht2014-intro/nordlicht2014/Compress/device.obj
Normal file
Binary file not shown.
BIN
nordlicht2014-intro/nordlicht2014/Compress/main.obj
Normal file
BIN
nordlicht2014-intro/nordlicht2014/Compress/main.obj
Normal file
Binary file not shown.
185
nordlicht2014-intro/nordlicht2014/Compress/nordlicht2014.log
Normal file
185
nordlicht2014-intro/nordlicht2014/Compress/nordlicht2014.log
Normal file
@@ -0,0 +1,185 @@
|
||||
Build started 26.07.2014 12:32:45.
|
||||
1>Project "E:\blu-flame.org\nordlicht2014-intro\nordlicht2014\nordlicht2014.vcxproj" on node 2 (Build target(s)).
|
||||
1>ClCompile:
|
||||
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\CL.exe /c /nologo /W3 /WX- /O1 /Oi /Os /Oy /D WIN32 /D NDEBUG /D SYNC_PLAYER /D COMPRESS /D _WINDOWS /Gm- /MD /GS- /arch:IA32 /fp:fast /Zc:wchar_t /Zc:forScope /Fo"Compress\\" /Fd"Compress\vc120.pdb" /Gd /TC /analyze- /errorReport:prompt /QIfist "..\3rdparty\modified-rocket\data.c" "..\3rdparty\modified-rocket\device.c" "..\3rdparty\modified-rocket\track.c" ..\3rdparty\usync.c
|
||||
1>cl : Command line warning D9035: option 'QIfist' has been deprecated and will be removed in a future release
|
||||
data.c
|
||||
device.c
|
||||
1>..\3rdparty\modified-rocket\device.c(13): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
|
||||
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
|
||||
1>..\3rdparty\modified-rocket\device.c(15): warning C4996: 'strncat': This function or variable may be unsafe. Consider using strncat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
|
||||
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(186) : see declaration of 'strncat'
|
||||
1>..\3rdparty\modified-rocket\device.c(16): warning C4996: 'strncat': This function or variable may be unsafe. Consider using strncat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
|
||||
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(186) : see declaration of 'strncat'
|
||||
1>..\3rdparty\modified-rocket\device.c(17): warning C4996: 'strncat': This function or variable may be unsafe. Consider using strncat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
|
||||
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(186) : see declaration of 'strncat'
|
||||
1>..\3rdparty\modified-rocket\device.c(114): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
|
||||
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(211) : see declaration of 'fopen'
|
||||
track.c
|
||||
usync.c
|
||||
Generating Code...
|
||||
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\CL.exe /c /nologo /W3 /WX- /O1 /Oi /Os /Oy /D WIN32 /D NDEBUG /D SYNC_PLAYER /D COMPRESS /D _WINDOWS /Gm- /MD /GS- /arch:IA32 /fp:fast /Zc:wchar_t /Zc:forScope /Fo"Compress\\" /Fd"Compress\vc120.pdb" /Gd /TP /analyze- /errorReport:prompt /QIfist main.cpp
|
||||
1>cl : Command line warning D9035: option 'QIfist' has been deprecated and will be removed in a future release
|
||||
main.cpp
|
||||
1>main.cpp(364): warning C4244: 'initializing' : conversion from 'float' to 'int', possible loss of data
|
||||
Link:
|
||||
E:\blu-flame.org\nordlicht2014-intro\link.exe /ERRORREPORT:PROMPT /OUT:"E:\blu-flame.org\nordlicht2014-intro\Compress\nordlicht2014.exe" /INCREMENTAL:NO /NOLOGO dxgi.lib d3d11.lib D3dcompiler.lib 4klang.obj winmm.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /PDB:"E:\blu-flame.org\nordlicht2014-intro\Compress\nordlicht2014.pdb" /SUBSYSTEM:WINDOWS /TLBID:1 /ENTRY:"main" /DYNAMICBASE /NXCOMPAT /IMPLIB:"E:\blu-flame.org\nordlicht2014-intro\Compress\nordlicht2014.lib" /MACHINE:X86 /SAFESEH /crinkler /report:crinkler.html /progressgui /ordertries:2000 /compmode:slow /hashsize:200 /transform:calls /hashtries:200 4klang.obj
|
||||
Compress\data.obj
|
||||
Compress\device.obj
|
||||
Compress\track.obj
|
||||
Compress\usync.obj
|
||||
Compress\main.obj
|
||||
4klang.obj
|
||||
Crinkler 1.4 (Jan 19 2013) (c) 2005-2013 Aske Simon Christensen & Rune Stubbe
|
||||
|
||||
Ignoring unknown argument '/ERRORREPORT:PROMPT'
|
||||
Ignoring unknown argument '/INCREMENTAL:NO'
|
||||
Ignoring unknown argument '/NOLOGO'
|
||||
Ignoring unknown argument '/MANIFEST'
|
||||
Ignoring unknown argument '/MANIFESTUAC:level='asInvoker' uiAccess='false''
|
||||
Ignoring unknown argument '/manifest:embed'
|
||||
Ignoring unknown argument '/PDB:E:\blu-flame.org\nordlicht2014-intro\Compress\nordlicht2014.pdb'
|
||||
Ignoring unknown argument '/TLBID:1'
|
||||
Ignoring unknown argument '/DYNAMICBASE'
|
||||
Ignoring unknown argument '/NXCOMPAT'
|
||||
Ignoring unknown argument '/IMPLIB:E:\blu-flame.org\nordlicht2014-intro\Compress\nordlicht2014.lib'
|
||||
Ignoring unknown argument '/MACHINE:X86'
|
||||
Ignoring unknown argument '/SAFESEH'
|
||||
Target: E:\blu-flame.org\nordlicht2014-intro\Compress\nordlicht2014.exe
|
||||
Subsystem type: WINDOWS
|
||||
Large address aware: YES
|
||||
Compression mode: SLOW
|
||||
Hash size: 200 MB
|
||||
Hash tries: 200
|
||||
Order tries: 2000
|
||||
Report: crinkler.html
|
||||
Transforms: CALLS
|
||||
Replace DLLs: NONE
|
||||
Range DLLs: NONE
|
||||
|
||||
Loading dxgi.lib...
|
||||
Loading d3d11.lib...
|
||||
Loading D3dcompiler.lib...
|
||||
Loading 4klang.obj...
|
||||
Loading winmm.lib...
|
||||
Loading kernel32.lib...
|
||||
Loading user32.lib...
|
||||
Loading gdi32.lib...
|
||||
Loading winspool.lib...
|
||||
Loading comdlg32.lib...
|
||||
Loading advapi32.lib...
|
||||
Loading shell32.lib...
|
||||
Loading ole32.lib...
|
||||
Loading oleaut32.lib...
|
||||
Loading uuid.lib...
|
||||
Loading odbc32.lib...
|
||||
Loading odbccp32.lib...
|
||||
Loading 4klang.obj...
|
||||
Loading Compress\data.obj...
|
||||
Loading Compress\device.obj...
|
||||
Loading Compress\track.obj...
|
||||
Loading Compress\usync.obj...
|
||||
Loading Compress\main.obj...
|
||||
Loading 4klang.obj...
|
||||
|
||||
Linking...
|
||||
|
||||
|
||||
Calls transformed: 62
|
||||
|
||||
Uncompressed size of code: 7458
|
||||
Uncompressed size of data: 28759
|
||||
|
||||
|-- Estimating models for code ----------------------------|
|
||||
............................................................ 0m11s
|
||||
Ideal compressed size: 2713.76
|
||||
|
||||
|-- Estimating models for data ----------------------------|
|
||||
............................................................ 1m57s
|
||||
Ideal compressed size: 6956.42
|
||||
|
||||
Estimated ideal compressed total size: 9670.19
|
||||
|
||||
|
||||
Reordering sections...
|
||||
Iteration: 9 Size: 9682.55
|
||||
Iteration: 13 Size: 9678.69
|
||||
Iteration: 18 Size: 9677.73
|
||||
Iteration: 19 Size: 9676.99
|
||||
Iteration: 37 Size: 9676.11
|
||||
Iteration: 39 Size: 9673.52
|
||||
Iteration: 40 Size: 9673.00
|
||||
Iteration: 49 Size: 9672.54
|
||||
Iteration: 64 Size: 9671.27
|
||||
Iteration: 67 Size: 9668.77
|
||||
Iteration: 68 Size: 9666.83
|
||||
Iteration: 70 Size: 9644.53
|
||||
Iteration: 77 Size: 9644.10
|
||||
Iteration: 78 Size: 9639.27
|
||||
Iteration: 80 Size: 9638.94
|
||||
Iteration: 95 Size: 9638.55
|
||||
Iteration: 96 Size: 9637.06
|
||||
Iteration: 100 Size: 9635.97
|
||||
Iteration: 112 Size: 9634.70
|
||||
Iteration: 113 Size: 9630.29
|
||||
Iteration: 145 Size: 9628.46
|
||||
Iteration: 148 Size: 9626.91
|
||||
Iteration: 160 Size: 9623.50
|
||||
Iteration: 191 Size: 9623.38
|
||||
Iteration: 207 Size: 9621.32
|
||||
Iteration: 214 Size: 9620.94
|
||||
Iteration: 220 Size: 9620.78
|
||||
Iteration: 272 Size: 9620.55
|
||||
Iteration: 291 Size: 9619.76
|
||||
Iteration: 308 Size: 9619.55
|
||||
Iteration: 333 Size: 9618.55
|
||||
Iteration: 341 Size: 9612.51
|
||||
Iteration: 420 Size: 9611.63
|
||||
Iteration: 468 Size: 9611.45
|
||||
Iteration: 496 Size: 9611.17
|
||||
Iteration: 543 Size: 9610.70
|
||||
Iteration: 638 Size: 9610.60
|
||||
Iteration: 798 Size: 9610.17
|
||||
Iteration: 827 Size: 9609.85
|
||||
Iteration: 831 Size: 9609.69
|
||||
Iteration: 884 Size: 9609.28
|
||||
Iteration: 969 Size: 9609.06
|
||||
Iteration: 1011 Size: 9608.06
|
||||
Iteration: 1155 Size: 9607.80
|
||||
Iteration: 1263 Size: 9607.47
|
||||
Iteration: 1449 Size: 9605.05
|
||||
Iteration: 1460 Size: 9605.04
|
||||
Iteration: 1522 Size: 9603.85
|
||||
Iteration: 1569 Size: 9603.62
|
||||
Iteration: 1595 Size: 9603.40
|
||||
Iteration: 1642 Size: 9602.90
|
||||
Iteration: 1777 Size: 9602.79
|
||||
Iteration: 1945 Size: 9602.33
|
||||
Time spent: 0m45s
|
||||
|
||||
Calls transformed: 62
|
||||
|
||||
|-- Reestimating models for code --------------------------|
|
||||
............................................................ 0m13s
|
||||
Ideal compressed size: 2640.51
|
||||
|
||||
|-- Reestimating models for data --------------------------|
|
||||
............................................................ 2m00s
|
||||
Ideal compressed size: 6935.46
|
||||
|
||||
Reestimated ideal compressed total size: 9575.97
|
||||
|
||||
|-- Optimizing hash table size ----------------------------|
|
||||
............................................................ 0m51s
|
||||
Real compressed total size: 9658
|
||||
Bytes lost to hashing: 82.03
|
||||
|
||||
Final file size: 10033
|
||||
|
||||
time spent: 6m05s
|
||||
nordlicht2014.vcxproj -> E:\blu-flame.org\nordlicht2014-intro\Compress\nordlicht2014.exe
|
||||
1>Done Building Project "E:\blu-flame.org\nordlicht2014-intro\nordlicht2014\nordlicht2014.vcxproj" (Build target(s)).
|
||||
|
||||
Build succeeded.
|
||||
|
||||
Time Elapsed 00:06:06.45
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,2 @@
|
||||
#TargetFrameworkVersion=v4.0:PlatformToolSet=v120:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit
|
||||
Compress|Win32|E:\blu-flame.org\nordlicht2014-intro\|
|
||||
BIN
nordlicht2014-intro/nordlicht2014/Compress/track.obj
Normal file
BIN
nordlicht2014-intro/nordlicht2014/Compress/track.obj
Normal file
Binary file not shown.
BIN
nordlicht2014-intro/nordlicht2014/Compress/usync.obj
Normal file
BIN
nordlicht2014-intro/nordlicht2014/Compress/usync.obj
Normal file
Binary file not shown.
BIN
nordlicht2014-intro/nordlicht2014/CompressDebug/data.obj
Normal file
BIN
nordlicht2014-intro/nordlicht2014/CompressDebug/data.obj
Normal file
Binary file not shown.
BIN
nordlicht2014-intro/nordlicht2014/CompressDebug/device.obj
Normal file
BIN
nordlicht2014-intro/nordlicht2014/CompressDebug/device.obj
Normal file
Binary file not shown.
BIN
nordlicht2014-intro/nordlicht2014/CompressDebug/main.obj
Normal file
BIN
nordlicht2014-intro/nordlicht2014/CompressDebug/main.obj
Normal file
Binary file not shown.
@@ -0,0 +1,18 @@
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\compressdebug\usync.obj
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\compressdebug\track.obj
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\compressdebug\device.obj
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\compressdebug\data.obj
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\compressdebug\vc120.pdb
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\compressdebug\main.obj
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\shader.h
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\4klang.obj
|
||||
e:\blu-flame.org\nordlicht2014-intro\compressdebug\nordlicht2014.exe
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\compressdebug\nordlicht2014.tlog\cl.command.1.tlog
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\compressdebug\nordlicht2014.tlog\cl.read.1.tlog
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\compressdebug\nordlicht2014.tlog\cl.write.1.tlog
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\compressdebug\nordlicht2014.tlog\custombuild.command.1.tlog
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\compressdebug\nordlicht2014.tlog\custombuild.read.1.tlog
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\compressdebug\nordlicht2014.tlog\custombuild.write.1.tlog
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\compressdebug\nordlicht2014.tlog\link.3236-cvtres.write.1.tlog
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\compressdebug\nordlicht2014.tlog\link.command.1.tlog
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\compressdebug\nordlicht2014.tlog\link.read.1.tlog
|
||||
@@ -0,0 +1,27 @@
|
||||
Build started 21.07.2014 23:35:36.
|
||||
1>Project "E:\blu-flame.org\nordlicht2014-intro\nordlicht2014\nordlicht2014.vcxproj" on node 2 (Build target(s)).
|
||||
1>ClCompile:
|
||||
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\CL.exe /c /Zi /nologo /W3 /WX- /Od /Oi /Oy /D WIN32 /D SYNC_PLAYER /D COMPRESS /D _WINDOWS /Gm- /MD /GS- /arch:IA32 /fp:fast /Zc:wchar_t /Zc:forScope /Fo"CompressDebug\\" /Fd"CompressDebug\vc120.pdb" /Gd /TP /analyze- /errorReport:prompt /QIfist main.cpp
|
||||
1>cl : Command line warning D9035: option 'QIfist' has been deprecated and will be removed in a future release
|
||||
main.cpp
|
||||
1>main.cpp(315): warning C4244: 'initializing' : conversion from 'float' to 'int', possible loss of data
|
||||
Link:
|
||||
E:\blu-flame.org\nordlicht2014-intro\link.exe /ERRORREPORT:PROMPT /OUT:"E:\blu-flame.org\nordlicht2014-intro\CompressDebug\nordlicht2014.exe" /INCREMENTAL /NOLOGO dxgi.lib d3d11.lib D3dcompiler.lib 4klang.obj winmm.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"E:\blu-flame.org\nordlicht2014-intro\CompressDebug\nordlicht2014.pdb" /SUBSYSTEM:WINDOWS /TLBID:1 /ENTRY:"main" /DYNAMICBASE /NXCOMPAT /IMPLIB:"E:\blu-flame.org\nordlicht2014-intro\CompressDebug\nordlicht2014.lib" /MACHINE:X86 /SAFESEH 4klang.obj
|
||||
CompressDebug\data.obj
|
||||
CompressDebug\device.obj
|
||||
CompressDebug\track.obj
|
||||
CompressDebug\usync.obj
|
||||
CompressDebug\main.obj
|
||||
4klang.obj
|
||||
Crinkler 1.4 (Jan 19 2013) (c) 2005-2013 Aske Simon Christensen & Rune Stubbe
|
||||
|
||||
Launching default linker at 'C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO 12.0\VC\BIN\LINK.EXE'
|
||||
|
||||
1>4klang.obj : warning LNK4042: object specified more than once; extras ignored
|
||||
1>4klang.obj : warning LNK4042: object specified more than once; extras ignored
|
||||
nordlicht2014.vcxproj -> E:\blu-flame.org\nordlicht2014-intro\CompressDebug\nordlicht2014.exe
|
||||
1>Done Building Project "E:\blu-flame.org\nordlicht2014-intro\nordlicht2014\nordlicht2014.vcxproj" (Build target(s)).
|
||||
|
||||
Build succeeded.
|
||||
|
||||
Time Elapsed 00:00:00.51
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,2 @@
|
||||
#TargetFrameworkVersion=v4.0:PlatformToolSet=v120:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit
|
||||
CompressDebug|Win32|E:\blu-flame.org\nordlicht2014-intro\|
|
||||
BIN
nordlicht2014-intro/nordlicht2014/CompressDebug/track.obj
Normal file
BIN
nordlicht2014-intro/nordlicht2014/CompressDebug/track.obj
Normal file
Binary file not shown.
BIN
nordlicht2014-intro/nordlicht2014/CompressDebug/usync.obj
Normal file
BIN
nordlicht2014-intro/nordlicht2014/CompressDebug/usync.obj
Normal file
Binary file not shown.
BIN
nordlicht2014-intro/nordlicht2014/CompressDebug/vc120.pdb
Normal file
BIN
nordlicht2014-intro/nordlicht2014/CompressDebug/vc120.pdb
Normal file
Binary file not shown.
BIN
nordlicht2014-intro/nordlicht2014/CompressFast/data.obj
Normal file
BIN
nordlicht2014-intro/nordlicht2014/CompressFast/data.obj
Normal file
Binary file not shown.
BIN
nordlicht2014-intro/nordlicht2014/CompressFast/device.obj
Normal file
BIN
nordlicht2014-intro/nordlicht2014/CompressFast/device.obj
Normal file
Binary file not shown.
BIN
nordlicht2014-intro/nordlicht2014/CompressFast/main.obj
Normal file
BIN
nordlicht2014-intro/nordlicht2014/CompressFast/main.obj
Normal file
Binary file not shown.
@@ -0,0 +1,19 @@
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\compressfast\usync.obj
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\compressfast\track.obj
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\compressfast\device.obj
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\compressfast\data.obj
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\compressfast\vc120.pdb
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\compressfast\main.obj
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\4klang.obj
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\shader.h
|
||||
e:\blu-flame.org\nordlicht2014-intro\compressfast\nordlicht2014.exe
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\crinkler.html
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\compressfast\nordlicht2014.tlog\cl.command.1.tlog
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\compressfast\nordlicht2014.tlog\cl.read.1.tlog
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\compressfast\nordlicht2014.tlog\cl.write.1.tlog
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\compressfast\nordlicht2014.tlog\custombuild.command.1.tlog
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\compressfast\nordlicht2014.tlog\custombuild.read.1.tlog
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\compressfast\nordlicht2014.tlog\custombuild.write.1.tlog
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\compressfast\nordlicht2014.tlog\link.command.1.tlog
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\compressfast\nordlicht2014.tlog\link.read.1.tlog
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\compressfast\nordlicht2014.tlog\link.write.1.tlog
|
||||
152
nordlicht2014-intro/nordlicht2014/CompressFast/nordlicht2014.log
Normal file
152
nordlicht2014-intro/nordlicht2014/CompressFast/nordlicht2014.log
Normal file
@@ -0,0 +1,152 @@
|
||||
Build started 26.07.2014 01:44:35.
|
||||
1>Project "E:\blu-flame.org\nordlicht2014-intro\nordlicht2014\nordlicht2014.vcxproj" on node 2 (Build target(s)).
|
||||
1>ClCompile:
|
||||
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\CL.exe /c /nologo /W3 /WX- /O1 /Oi /Os /Oy /D WIN32 /D NDEBUG /D SYNC_PLAYER /D COMPRESS /D _WINDOWS /Gm- /MD /GS- /arch:IA32 /fp:fast /Zc:wchar_t /Zc:forScope /Fo"CompressFast\\" /Fd"CompressFast\vc120.pdb" /Gd /TC /analyze- /errorReport:prompt /QIfist "..\3rdparty\modified-rocket\data.c" "..\3rdparty\modified-rocket\device.c" "..\3rdparty\modified-rocket\track.c" ..\3rdparty\usync.c
|
||||
1>cl : Command line warning D9035: option 'QIfist' has been deprecated and will be removed in a future release
|
||||
data.c
|
||||
device.c
|
||||
1>..\3rdparty\modified-rocket\device.c(13): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
|
||||
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
|
||||
1>..\3rdparty\modified-rocket\device.c(15): warning C4996: 'strncat': This function or variable may be unsafe. Consider using strncat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
|
||||
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(186) : see declaration of 'strncat'
|
||||
1>..\3rdparty\modified-rocket\device.c(16): warning C4996: 'strncat': This function or variable may be unsafe. Consider using strncat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
|
||||
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(186) : see declaration of 'strncat'
|
||||
1>..\3rdparty\modified-rocket\device.c(17): warning C4996: 'strncat': This function or variable may be unsafe. Consider using strncat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
|
||||
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(186) : see declaration of 'strncat'
|
||||
1>..\3rdparty\modified-rocket\device.c(114): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
|
||||
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(211) : see declaration of 'fopen'
|
||||
track.c
|
||||
usync.c
|
||||
Generating Code...
|
||||
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\CL.exe /c /nologo /W3 /WX- /O1 /Oi /Os /Oy /D WIN32 /D NDEBUG /D SYNC_PLAYER /D COMPRESS /D _WINDOWS /Gm- /MD /GS- /arch:IA32 /fp:fast /Zc:wchar_t /Zc:forScope /Fo"CompressFast\\" /Fd"CompressFast\vc120.pdb" /Gd /TP /analyze- /errorReport:prompt /QIfist main.cpp
|
||||
1>cl : Command line warning D9035: option 'QIfist' has been deprecated and will be removed in a future release
|
||||
main.cpp
|
||||
1>main.cpp(408): warning C4244: 'initializing' : conversion from 'float' to 'int', possible loss of data
|
||||
Link:
|
||||
E:\blu-flame.org\nordlicht2014-intro\link.exe /ERRORREPORT:PROMPT /OUT:"E:\blu-flame.org\nordlicht2014-intro\CompressFast\nordlicht2014.exe" /INCREMENTAL:NO /NOLOGO dxgi.lib d3d11.lib D3dcompiler.lib 4klang.obj winmm.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /PDB:"E:\blu-flame.org\nordlicht2014-intro\CompressFast\nordlicht2014.pdb" /SUBSYSTEM:WINDOWS /TLBID:1 /ENTRY:"main" /DYNAMICBASE /NXCOMPAT /IMPLIB:"E:\blu-flame.org\nordlicht2014-intro\CompressFast\nordlicht2014.lib" /MACHINE:X86 /SAFESEH /crinkler /report:crinkler.html /progressgui /ordertries:200 /compmode:fast /hashsize:100 /transform:calls /hashtries:50 4klang.obj
|
||||
CompressFast\data.obj
|
||||
CompressFast\device.obj
|
||||
CompressFast\track.obj
|
||||
CompressFast\usync.obj
|
||||
CompressFast\main.obj
|
||||
4klang.obj
|
||||
Crinkler 1.4 (Jan 19 2013) (c) 2005-2013 Aske Simon Christensen & Rune Stubbe
|
||||
|
||||
Ignoring unknown argument '/ERRORREPORT:PROMPT'
|
||||
Ignoring unknown argument '/INCREMENTAL:NO'
|
||||
Ignoring unknown argument '/NOLOGO'
|
||||
Ignoring unknown argument '/MANIFEST'
|
||||
Ignoring unknown argument '/MANIFESTUAC:level='asInvoker' uiAccess='false''
|
||||
Ignoring unknown argument '/manifest:embed'
|
||||
Ignoring unknown argument '/PDB:E:\blu-flame.org\nordlicht2014-intro\CompressFast\nordlicht2014.pdb'
|
||||
Ignoring unknown argument '/TLBID:1'
|
||||
Ignoring unknown argument '/DYNAMICBASE'
|
||||
Ignoring unknown argument '/NXCOMPAT'
|
||||
Ignoring unknown argument '/IMPLIB:E:\blu-flame.org\nordlicht2014-intro\CompressFast\nordlicht2014.lib'
|
||||
Ignoring unknown argument '/MACHINE:X86'
|
||||
Ignoring unknown argument '/SAFESEH'
|
||||
Target: E:\blu-flame.org\nordlicht2014-intro\CompressFast\nordlicht2014.exe
|
||||
Subsystem type: WINDOWS
|
||||
Large address aware: YES
|
||||
Compression mode: FAST
|
||||
Hash size: 100 MB
|
||||
Hash tries: 50
|
||||
Order tries: 200
|
||||
Report: crinkler.html
|
||||
Transforms: CALLS
|
||||
Replace DLLs: NONE
|
||||
Range DLLs: NONE
|
||||
|
||||
Loading dxgi.lib...
|
||||
Loading d3d11.lib...
|
||||
Loading D3dcompiler.lib...
|
||||
Loading 4klang.obj...
|
||||
Loading winmm.lib...
|
||||
Loading kernel32.lib...
|
||||
Loading user32.lib...
|
||||
Loading gdi32.lib...
|
||||
Loading winspool.lib...
|
||||
Loading comdlg32.lib...
|
||||
Loading advapi32.lib...
|
||||
Loading shell32.lib...
|
||||
Loading ole32.lib...
|
||||
Loading oleaut32.lib...
|
||||
Loading uuid.lib...
|
||||
Loading odbc32.lib...
|
||||
Loading odbccp32.lib...
|
||||
Loading 4klang.obj...
|
||||
Loading CompressFast\data.obj...
|
||||
Loading CompressFast\device.obj...
|
||||
Loading CompressFast\track.obj...
|
||||
Loading CompressFast\usync.obj...
|
||||
Loading CompressFast\main.obj...
|
||||
Loading 4klang.obj...
|
||||
|
||||
Linking...
|
||||
|
||||
|
||||
Calls transformed: 70
|
||||
|
||||
Uncompressed size of code: 7566
|
||||
Uncompressed size of data: 28631
|
||||
|
||||
|-- Estimating models for code ----------------------------|
|
||||
............................................................ 0m00s
|
||||
Ideal compressed size: 2896.03
|
||||
|
||||
|-- Estimating models for data ----------------------------|
|
||||
............................................................ 0m01s
|
||||
Ideal compressed size: 7043.51
|
||||
|
||||
Estimated ideal compressed total size: 9939.54
|
||||
|
||||
|
||||
Reordering sections...
|
||||
Iteration: 10 Size: 9973.23
|
||||
Iteration: 11 Size: 9971.52
|
||||
Iteration: 19 Size: 9968.58
|
||||
Iteration: 27 Size: 9965.71
|
||||
Iteration: 29 Size: 9963.98
|
||||
Iteration: 39 Size: 9961.47
|
||||
Iteration: 43 Size: 9944.12
|
||||
Iteration: 49 Size: 9942.43
|
||||
Iteration: 51 Size: 9942.27
|
||||
Iteration: 57 Size: 9936.35
|
||||
Iteration: 68 Size: 9936.31
|
||||
Iteration: 81 Size: 9934.06
|
||||
Iteration: 99 Size: 9932.52
|
||||
Iteration: 122 Size: 9931.72
|
||||
Iteration: 127 Size: 9931.33
|
||||
Iteration: 131 Size: 9926.10
|
||||
Iteration: 137 Size: 9925.37
|
||||
Iteration: 147 Size: 9925.11
|
||||
Iteration: 151 Size: 9922.61
|
||||
Iteration: 152 Size: 9921.90
|
||||
Time spent: 0m02s
|
||||
|
||||
Calls transformed: 70
|
||||
|
||||
|-- Reestimating models for code --------------------------|
|
||||
............................................................ 0m00s
|
||||
Ideal compressed size: 2842.82
|
||||
|
||||
|-- Reestimating models for data --------------------------|
|
||||
............................................................ 0m01s
|
||||
Ideal compressed size: 7041.44
|
||||
|
||||
Reestimated ideal compressed total size: 9884.26
|
||||
|
||||
|-- Optimizing hash table size ----------------------------|
|
||||
............................................................ 0m06s
|
||||
Real compressed total size: 9961
|
||||
Bytes lost to hashing: 76.74
|
||||
|
||||
Final file size: 10323
|
||||
|
||||
time spent: 0m19s
|
||||
nordlicht2014.vcxproj -> E:\blu-flame.org\nordlicht2014-intro\CompressFast\nordlicht2014.exe
|
||||
1>Done Building Project "E:\blu-flame.org\nordlicht2014-intro\nordlicht2014\nordlicht2014.vcxproj" (Build target(s)).
|
||||
|
||||
Build succeeded.
|
||||
|
||||
Time Elapsed 00:00:20.03
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,2 @@
|
||||
#TargetFrameworkVersion=v4.0:PlatformToolSet=v120:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit
|
||||
CompressFast|Win32|E:\blu-flame.org\nordlicht2014-intro\|
|
||||
BIN
nordlicht2014-intro/nordlicht2014/CompressFast/track.obj
Normal file
BIN
nordlicht2014-intro/nordlicht2014/CompressFast/track.obj
Normal file
Binary file not shown.
BIN
nordlicht2014-intro/nordlicht2014/CompressFast/usync.obj
Normal file
BIN
nordlicht2014-intro/nordlicht2014/CompressFast/usync.obj
Normal file
Binary file not shown.
49
nordlicht2014-intro/nordlicht2014/Debug/Engine.log
Normal file
49
nordlicht2014-intro/nordlicht2014/Debug/Engine.log
Normal file
@@ -0,0 +1,49 @@
|
||||
Build started 03.05.2014 18:22:14.
|
||||
1>Project "E:\blu-flame.org\hgplus\bliss\Engine\Engine.vcxproj" on node 2 (Build target(s)).
|
||||
1>ClCompile:
|
||||
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\CL.exe /c /ZI /nologo /W3 /WX- /Od /Oy- /D WIN32 /D _DEBUG /D _WINDOWS /Gm /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"Debug\\" /Fd"Debug\vc120.pdb" /Gd /TP /analyze- /errorReport:prompt main.cpp
|
||||
main.cpp
|
||||
1>e:\blu-flame.org\hgplus\bliss\engine\analysis.h(102): warning C4244: 'initializing' : conversion from 'float' to 'int', possible loss of data
|
||||
1>e:\blu-flame.org\hgplus\bliss\engine\analysis.h(103): warning C4244: 'initializing' : conversion from 'float' to 'int', possible loss of data
|
||||
1>e:\blu-flame.org\hgplus\bliss\engine\analysis.h(129): warning C4244: '=' : conversion from 'unsigned int' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\hgplus\bliss\engine\analysis.h(131): warning C4244: '=' : conversion from 'unsigned int' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\hgplus\bliss\engine\analysis.h(133): warning C4244: '=' : conversion from 'unsigned int' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\hgplus\bliss\engine\analysis.h(138): warning C4244: '=' : conversion from 'unsigned int' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\hgplus\bliss\engine\analysis.h(140): warning C4244: '=' : conversion from 'unsigned int' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\hgplus\bliss\engine\analysis.h(142): warning C4244: '=' : conversion from 'unsigned int' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\hgplus\bliss\engine\analysis.h(144): warning C4244: '=' : conversion from 'unsigned int' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\hgplus\bliss\engine\analysis.h(150): warning C4244: '=' : conversion from 'unsigned int' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\hgplus\bliss\engine\analysis.h(168): warning C4244: 'argument' : conversion from 'unsigned int' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\hgplus\bliss\engine\analysis.h(169): warning C4244: 'argument' : conversion from 'unsigned int' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\hgplus\bliss\engine\analysis.h(170): warning C4244: 'argument' : conversion from 'unsigned int' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\hgplus\bliss\engine\analysis.h(225): warning C4244: 'argument' : conversion from 'unsigned int' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\hgplus\bliss\engine\analysis.h(226): warning C4244: 'argument' : conversion from 'unsigned int' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\hgplus\bliss\engine\analysis.h(227): warning C4244: 'argument' : conversion from 'unsigned int' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\hgplus\bliss\engine\analysis.h(228): warning C4244: 'argument' : conversion from 'unsigned int' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\hgplus\bliss\engine\analysis.h(245): warning C4244: 'argument' : conversion from 'unsigned int' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\hgplus\bliss\engine\analysis.h(256): warning C4244: 'initializing' : conversion from 'float' to 'int', possible loss of data
|
||||
1>e:\blu-flame.org\hgplus\bliss\engine\analysis.h(257): warning C4244: 'initializing' : conversion from 'float' to 'int', possible loss of data
|
||||
1>e:\blu-flame.org\hgplus\bliss\engine\analysis.h(258): warning C4244: 'initializing' : conversion from 'float' to 'int', possible loss of data
|
||||
1>e:\blu-flame.org\hgplus\bliss\engine\timeline.h(86): warning C4244: 'initializing' : conversion from 'float' to 'int', possible loss of data
|
||||
1>e:\blu-flame.org\hgplus\bliss\engine\timeline.h(105): warning C4244: '=' : conversion from 'float' to 'int', possible loss of data
|
||||
1>e:\blu-flame.org\hgplus\bliss\engine\main.cpp(691): warning C4800: 'SHORT' : forcing value to bool 'true' or 'false' (performance warning)
|
||||
1>e:\blu-flame.org\hgplus\bliss\engine\main.cpp(692): warning C4800: 'SHORT' : forcing value to bool 'true' or 'false' (performance warning)
|
||||
1>e:\blu-flame.org\hgplus\bliss\engine\main.cpp(693): warning C4800: 'SHORT' : forcing value to bool 'true' or 'false' (performance warning)
|
||||
1>e:\blu-flame.org\hgplus\bliss\engine\main.cpp(694): warning C4800: 'SHORT' : forcing value to bool 'true' or 'false' (performance warning)
|
||||
1>e:\blu-flame.org\hgplus\bliss\engine\main.cpp(695): warning C4800: 'SHORT' : forcing value to bool 'true' or 'false' (performance warning)
|
||||
1>e:\blu-flame.org\hgplus\bliss\engine\main.cpp(696): warning C4800: 'SHORT' : forcing value to bool 'true' or 'false' (performance warning)
|
||||
1>e:\blu-flame.org\hgplus\bliss\engine\main.cpp(697): warning C4800: 'SHORT' : forcing value to bool 'true' or 'false' (performance warning)
|
||||
Link:
|
||||
E:\blu-flame.org\hgplus\bliss\link.exe /ERRORREPORT:PROMPT /OUT:"E:\blu-flame.org\hgplus\bliss\Debug\Engine.exe" /INCREMENTAL /NOLOGO dxgi.lib d3d11.lib D3dcompiler.lib winmm.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"E:\blu-flame.org\hgplus\bliss\Debug\Engine.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"E:\blu-flame.org\hgplus\bliss\Debug\Engine.lib" /MACHINE:X86 4klang.obj
|
||||
Debug\main.obj
|
||||
Crinkler 1.4 (Jan 19 2013) (c) 2005-2013 Aske Simon Christensen & Rune Stubbe
|
||||
|
||||
Launching default linker at 'C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO 12.0\VC\BIN\LINK.EXE'
|
||||
|
||||
1>E:\blu-flame.org\hgplus\bliss\Debug\Engine.exe : warning LNK4072: section count 115 exceeds max (96); image may not run
|
||||
Engine.vcxproj -> E:\blu-flame.org\hgplus\bliss\Debug\Engine.exe
|
||||
1>Done Building Project "E:\blu-flame.org\hgplus\bliss\Engine\Engine.vcxproj" (Build target(s)).
|
||||
|
||||
Build succeeded.
|
||||
|
||||
Time Elapsed 00:00:00.65
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,2 @@
|
||||
#TargetFrameworkVersion=v4.0:PlatformToolSet=v120:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit
|
||||
Debug|Win32|E:\blu-flame.org\hgplus\bliss\|
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
nordlicht2014-intro/nordlicht2014/Debug/data.obj
Normal file
BIN
nordlicht2014-intro/nordlicht2014/Debug/data.obj
Normal file
Binary file not shown.
BIN
nordlicht2014-intro/nordlicht2014/Debug/device.obj
Normal file
BIN
nordlicht2014-intro/nordlicht2014/Debug/device.obj
Normal file
Binary file not shown.
BIN
nordlicht2014-intro/nordlicht2014/Debug/main.obj
Normal file
BIN
nordlicht2014-intro/nordlicht2014/Debug/main.obj
Normal file
Binary file not shown.
@@ -0,0 +1,21 @@
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\debug\vc120.pdb
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\debug\vc120.idb
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\debug\data.obj
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\debug\device.obj
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\debug\track.obj
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\debug\usync.obj
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\debug\main.obj
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\4klang.obj
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\shader.h
|
||||
e:\blu-flame.org\nordlicht2014-intro\debug\nordlicht2014.ilk
|
||||
e:\blu-flame.org\nordlicht2014-intro\debug\nordlicht2014.exe
|
||||
e:\blu-flame.org\nordlicht2014-intro\debug\nordlicht2014.pdb
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\debug\nordlicht2014.tlog\cl.command.1.tlog
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\debug\nordlicht2014.tlog\cl.read.1.tlog
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\debug\nordlicht2014.tlog\cl.write.1.tlog
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\debug\nordlicht2014.tlog\custombuild.command.1.tlog
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\debug\nordlicht2014.tlog\custombuild.read.1.tlog
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\debug\nordlicht2014.tlog\custombuild.write.1.tlog
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\debug\nordlicht2014.tlog\link.3956.write.1.tlog
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\debug\nordlicht2014.tlog\link.command.1.tlog
|
||||
e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\debug\nordlicht2014.tlog\link.read.1.tlog
|
||||
70
nordlicht2014-intro/nordlicht2014/Debug/nordlicht2014.log
Normal file
70
nordlicht2014-intro/nordlicht2014/Debug/nordlicht2014.log
Normal file
@@ -0,0 +1,70 @@
|
||||
Build started 26.07.2014 21:47:10.
|
||||
1>Project "E:\blu-flame.org\nordlicht2014-intro\nordlicht2014\nordlicht2014.vcxproj" on node 2 (Build target(s)).
|
||||
1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppBuild.targets(381,5): warning MSB8028: The intermediate directory (Debug\) contains files shared from another project (Engine.vcxproj). This can lead to incorrect clean and rebuild behavior.
|
||||
1>CustomBuild:
|
||||
Compiling shaders...
|
||||
"Not happening, Debug."
|
||||
ClCompile:
|
||||
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\CL.exe /c /ZI /nologo /W3 /WX- /Od /Oy- /D WIN32 /D _DEBUG /D _WINDOWS /D EXTERNAL_ROCKET_CONTROL /Gm /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"Debug\\" /Fd"Debug\vc120.pdb" /Gd /TP /analyze- /errorReport:prompt main.cpp
|
||||
main.cpp
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\sound.h(93): warning C4244: '=' : conversion from 'float' to 'long', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(26): warning C4800: 'int' : forcing value to bool 'true' or 'false' (performance warning)
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(277): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(278): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(279): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(280): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(281): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(282): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(283): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(284): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(285): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(286): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(287): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(288): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(289): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(290): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(291): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(292): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(293): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(294): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(295): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(296): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(297): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(298): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(299): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(300): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(301): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(302): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(303): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(304): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(305): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(306): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(307): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(308): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(309): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(310): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(311): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(312): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(313): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(314): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(315): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(363): warning C4244: 'initializing' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(364): warning C4244: 'initializing' : conversion from 'float' to 'int', possible loss of data
|
||||
Link:
|
||||
E:\blu-flame.org\nordlicht2014-intro\link.exe /ERRORREPORT:PROMPT /OUT:"E:\blu-flame.org\nordlicht2014-intro\Debug\nordlicht2014.exe" /INCREMENTAL /NOLOGO dxgi.lib d3d11.lib D3dcompiler.lib ws2_32.lib winmm.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"E:\blu-flame.org\nordlicht2014-intro\Debug\nordlicht2014.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"E:\blu-flame.org\nordlicht2014-intro\Debug\nordlicht2014.lib" /MACHINE:X86 4klang.obj
|
||||
Debug\data.obj
|
||||
Debug\device.obj
|
||||
Debug\track.obj
|
||||
Debug\usync.obj
|
||||
Debug\main.obj
|
||||
4klang.obj
|
||||
Crinkler 1.4 (Jan 19 2013) (c) 2005-2013 Aske Simon Christensen & Rune Stubbe
|
||||
|
||||
Launching default linker at 'C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO 12.0\VC\BIN\LINK.EXE'
|
||||
|
||||
nordlicht2014.vcxproj -> E:\blu-flame.org\nordlicht2014-intro\Debug\nordlicht2014.exe
|
||||
1>Done Building Project "E:\blu-flame.org\nordlicht2014-intro\nordlicht2014\nordlicht2014.vcxproj" (Build target(s)).
|
||||
|
||||
Build succeeded.
|
||||
|
||||
Time Elapsed 00:00:00.87
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,2 @@
|
||||
#TargetFrameworkVersion=v4.0:PlatformToolSet=v120:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit
|
||||
Debug|Win32|E:\blu-flame.org\nordlicht2014-intro\|
|
||||
BIN
nordlicht2014-intro/nordlicht2014/Debug/track.obj
Normal file
BIN
nordlicht2014-intro/nordlicht2014/Debug/track.obj
Normal file
Binary file not shown.
BIN
nordlicht2014-intro/nordlicht2014/Debug/usync.obj
Normal file
BIN
nordlicht2014-intro/nordlicht2014/Debug/usync.obj
Normal file
Binary file not shown.
BIN
nordlicht2014-intro/nordlicht2014/Debug/vc120.idb
Normal file
BIN
nordlicht2014-intro/nordlicht2014/Debug/vc120.idb
Normal file
Binary file not shown.
BIN
nordlicht2014-intro/nordlicht2014/Debug/vc120.pdb
Normal file
BIN
nordlicht2014-intro/nordlicht2014/Debug/vc120.pdb
Normal file
Binary file not shown.
BIN
nordlicht2014-intro/nordlicht2014/DebugShader/data.obj
Normal file
BIN
nordlicht2014-intro/nordlicht2014/DebugShader/data.obj
Normal file
Binary file not shown.
BIN
nordlicht2014-intro/nordlicht2014/DebugShader/device.obj
Normal file
BIN
nordlicht2014-intro/nordlicht2014/DebugShader/device.obj
Normal file
Binary file not shown.
BIN
nordlicht2014-intro/nordlicht2014/DebugShader/main.obj
Normal file
BIN
nordlicht2014-intro/nordlicht2014/DebugShader/main.obj
Normal file
Binary file not shown.
117
nordlicht2014-intro/nordlicht2014/DebugShader/nordlicht2014.log
Normal file
117
nordlicht2014-intro/nordlicht2014/DebugShader/nordlicht2014.log
Normal file
@@ -0,0 +1,117 @@
|
||||
Build started 26.07.2014 21:46:06.
|
||||
1>Project "E:\blu-flame.org\nordlicht2014-intro\nordlicht2014\nordlicht2014.vcxproj" on node 2 (Build target(s)).
|
||||
1>CustomBuild:
|
||||
Compiling shaders...
|
||||
compilation PDB save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\starInit.pdb
|
||||
compilation object save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\starInit.cso
|
||||
compilation PDB save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\event1.pdb
|
||||
compilation object save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\event1.cso
|
||||
compilation PDB save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\event2.pdb
|
||||
compilation object save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\event2.cso
|
||||
compilation PDB save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\update.pdb
|
||||
compilation object save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\update.cso
|
||||
compilation PDB save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\pvs.pdb
|
||||
compilation object save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\pvs.cso
|
||||
compilation PDB save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\pgs.pdb
|
||||
compilation object save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\pgs.cso
|
||||
compilation PDB save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\pps.pdb
|
||||
compilation object save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\pps.cso
|
||||
1>E:\blu-flame.org\nordlicht2014-intro\nordlicht2014\test.hlsl(588,25): warning X4000: use of potentially uninitialized variable (pulse)
|
||||
|
||||
compilation PDB save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\csDistortChroma.pdb
|
||||
compilation object save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\csDistortChroma.cso
|
||||
compilation PDB save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\csRadialBlur.pdb
|
||||
compilation object save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\csRadialBlur.cso
|
||||
compilation PDB save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\csCircumferentialBlur.pdb
|
||||
compilation object save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\csCircumferentialBlur.cso
|
||||
compilation PDB save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\csStreaks.pdb
|
||||
compilation object save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\csStreaks.cso
|
||||
compilation PDB save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\csLensDirt.pdb
|
||||
compilation object save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\csLensDirt.cso
|
||||
compilation PDB save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\csBlurH.pdb
|
||||
compilation object save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\csBlurH.cso
|
||||
compilation PDB save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\csBlurV.pdb
|
||||
compilation object save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\csBlurV.cso
|
||||
compilation PDB save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\csGhosts.pdb
|
||||
compilation object save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\csGhosts.cso
|
||||
compilation PDB save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\csMerge.pdb
|
||||
compilation object save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\csMerge.cso
|
||||
compilation PDB save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\VSCB.pdb
|
||||
compilation object save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\VSCB.cso
|
||||
compilation PDB save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\csNoise.pdb
|
||||
compilation object save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\csNoise.cso
|
||||
compilation PDB save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\csFbm.pdb
|
||||
compilation object save succeeded; see E:\blu-flame.org\nordlicht2014-intro\DebugShader\csFbm.cso
|
||||
ClCompile:
|
||||
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\CL.exe /c /ZI /nologo /W3 /WX- /Od /Oy- /D WIN32 /D EXTERNAL_ROCKET_CONTROL /D _DEBUG /D _WINDOWS /D SHADER_DEBUG /Gm /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"DebugShader\\" /Fd"DebugShader\vc120.pdb" /Gd /TC /analyze- /errorReport:prompt ..\3rdparty\usync.c
|
||||
usync.c
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\3rdparty\usync.c(92): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
|
||||
c:\program files (x86)\microsoft visual studio 12.0\vc\include\stdio.h(211) : see declaration of 'fopen'
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\3rdparty\usync.c(101): warning C4018: '<' : signed/unsigned mismatch
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\3rdparty\usync.c(109): warning C4018: '<' : signed/unsigned mismatch
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\3rdparty\usync.c(117): warning C4018: '<' : signed/unsigned mismatch
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\3rdparty\usync.c(124): warning C4018: '<' : signed/unsigned mismatch
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\3rdparty\usync.c(133): warning C4018: '<' : signed/unsigned mismatch
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\3rdparty\usync.c(142): warning C4018: '<' : signed/unsigned mismatch
|
||||
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\CL.exe /c /ZI /nologo /W3 /WX- /Od /Oy- /D WIN32 /D EXTERNAL_ROCKET_CONTROL /D _DEBUG /D _WINDOWS /D SHADER_DEBUG /Gm /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"DebugShader\\" /Fd"DebugShader\vc120.pdb" /Gd /TP /analyze- /errorReport:prompt main.cpp
|
||||
main.cpp
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\sound.h(93): warning C4244: '=' : conversion from 'float' to 'long', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(26): warning C4800: 'int' : forcing value to bool 'true' or 'false' (performance warning)
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(277): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(278): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(279): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(280): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(281): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(282): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(283): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(284): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(285): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(286): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(287): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(288): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(289): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(290): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(291): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(292): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(293): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(294): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(295): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(296): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(297): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(298): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(299): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(300): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(301): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(302): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(303): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(304): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(305): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(306): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(307): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(308): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(309): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(310): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(311): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(312): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(313): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(314): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(315): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(363): warning C4244: 'initializing' : conversion from 'double' to 'float', possible loss of data
|
||||
1>e:\blu-flame.org\nordlicht2014-intro\nordlicht2014\main.cpp(364): warning C4244: 'initializing' : conversion from 'float' to 'int', possible loss of data
|
||||
Link:
|
||||
E:\blu-flame.org\nordlicht2014-intro\link.exe /ERRORREPORT:PROMPT /OUT:"E:\blu-flame.org\nordlicht2014-intro\DebugShader\nordlicht2014.exe" /INCREMENTAL /NOLOGO dxgi.lib d3d11.lib D3dcompiler.lib ws2_32.lib winmm.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"E:\blu-flame.org\nordlicht2014-intro\DebugShader\nordlicht2014.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"E:\blu-flame.org\nordlicht2014-intro\DebugShader\nordlicht2014.lib" /MACHINE:X86 DebugShader\data.obj
|
||||
DebugShader\device.obj
|
||||
DebugShader\track.obj
|
||||
DebugShader\usync.obj
|
||||
DebugShader\main.obj
|
||||
4klang.obj
|
||||
Crinkler 1.4 (Jan 19 2013) (c) 2005-2013 Aske Simon Christensen & Rune Stubbe
|
||||
|
||||
Launching default linker at 'C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO 12.0\VC\BIN\LINK.EXE'
|
||||
|
||||
nordlicht2014.vcxproj -> E:\blu-flame.org\nordlicht2014-intro\DebugShader\nordlicht2014.exe
|
||||
1>Done Building Project "E:\blu-flame.org\nordlicht2014-intro\nordlicht2014\nordlicht2014.vcxproj" (Build target(s)).
|
||||
|
||||
Build succeeded.
|
||||
|
||||
Time Elapsed 00:00:03.16
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user