Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Colors #2

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions example_color/addons.make
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ofxGpuParticles
Empty file added example_color/bin/data/.gitkeep
Empty file.
Binary file added example_color/bin/data/colors.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions example_color/bin/data/draw.frag
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#version 120
#extension GL_ARB_texture_rectangle : enable

void main()
{
gl_FragColor = gl_Color;
}
12 changes: 12 additions & 0 deletions example_color/bin/data/draw.vert
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#version 120
#extension GL_ARB_texture_rectangle : enable

uniform sampler2DRect particles0;
uniform sampler2DRect particles1;

void main()
{
gl_TexCoord[0] = gl_MultiTexCoord0;
gl_FrontColor = gl_Color;
gl_Position = gl_ModelViewProjectionMatrix * vec4(texture2DRect(particles0, gl_TexCoord[0].st).xyz, 1.0);
}
41 changes: 41 additions & 0 deletions example_color/bin/data/update.frag
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
#version 120
#extension GL_ARB_texture_rectangle : enable

// ping pong inputs
uniform sampler2DRect particles0;
uniform sampler2DRect particles1;

uniform vec3 mouse;
uniform float radiusSquared;
uniform float elapsed;

void main()
{
vec3 pos = texture2DRect(particles0, gl_TexCoord[0].st).xyz;
vec3 vel = texture2DRect(particles1, gl_TexCoord[0].st).xyz;

// mouse attraction
vec3 direction = mouse - pos.xyz;
float distSquared = dot(direction, direction);
float magnitude = 500.0 * (1.0 - distSquared / radiusSquared);
vec3 force = step(distSquared, radiusSquared) * magnitude * normalize(direction);

// gravity
force += vec3(0.0, -0.5, 0.0);

// accelerate
vel += elapsed * force;

// bounce off the sides
vel.x *= step(abs(pos.x), 512.0) * 2.0 - 1.0;
vel.y *= step(abs(pos.y), 384.0) * 2.0 - 1.0;

// damping
vel *= 0.995;

// move
pos += elapsed * vel;

gl_FragData[0] = vec4(pos, 1.0);
gl_FragData[1] = vec4(vel, 0.0);
}
8 changes: 8 additions & 0 deletions example_color/bin/data/update.vert
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#version 120
#extension GL_ARB_texture_rectangle : enable

void main()
{
gl_TexCoord[0] = gl_MultiTexCoord0;
gl_Position = gl_Vertex;
}
25 changes: 25 additions & 0 deletions example_color/example_color.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_color", "example_color.vcxproj", "{7FD42DF7-442E-479A-BA76-D0022F99702A}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "openframeworksLib", "..\..\..\libs\openFrameworksCompiled\project\vs\openframeworksLib.vcxproj", "{5837595D-ACA9-485C-8E76-729040CE4B0B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Win32 = Debug|Win32
Release|Win32 = Release|Win32
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|Win32.ActiveCfg = Debug|Win32
{7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|Win32.Build.0 = Debug|Win32
{7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|Win32.ActiveCfg = Release|Win32
{7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|Win32.Build.0 = Release|Win32
{5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|Win32.ActiveCfg = Debug|Win32
{5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|Win32.Build.0 = Debug|Win32
{5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|Win32.ActiveCfg = Release|Win32
{5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|Win32.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
Binary file added example_color/example_color.v11.suo
Binary file not shown.
115 changes: 115 additions & 0 deletions example_color/example_color.vcxproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
<?xml version="1.0"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{7FD42DF7-442E-479A-BA76-D0022F99702A}</ProjectGuid>
<Keyword>Win32Proj</Keyword>
<RootNamespace>example_color</RootNamespace>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<CharacterSet>Unicode</CharacterSet>
<PlatformToolset>v110</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<CharacterSet>Unicode</CharacterSet>
<WholeProgramOptimization>true</WholeProgramOptimization>
<PlatformToolset>v110</PlatformToolset>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="..\..\..\libs\openFrameworksCompiled\project\vs\openFrameworksRelease.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="..\..\..\libs\openFrameworksCompiled\project\vs\openFrameworksDebug.props" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<OutDir>bin\</OutDir>
<IntDir>obj\$(Configuration)\</IntDir>
<TargetName>$(ProjectName)_debug</TargetName>
<LinkIncremental>true</LinkIncremental>
<GenerateManifest>true</GenerateManifest>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<OutDir>bin\</OutDir>
<IntDir>obj\$(Configuration)\</IntDir>
<LinkIncremental>false</LinkIncremental>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<Optimization>Disabled</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
<PreprocessorDefinitions>%(PreprocessorDefinitions)</PreprocessorDefinitions>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<WarningLevel>Level3</WarningLevel>
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories);..\..\..\addons\ofxGpuParticles\libs;..\..\..\addons\ofxGpuParticles\src</AdditionalIncludeDirectories>
<CompileAs>CompileAsCpp</CompileAs>
</ClCompile>
<Link>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SubSystem>Console</SubSystem>
<RandomizedBaseAddress>false</RandomizedBaseAddress>
<AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<WholeProgramOptimization>false</WholeProgramOptimization>
<PreprocessorDefinitions>%(PreprocessorDefinitions)</PreprocessorDefinitions>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<WarningLevel>Level3</WarningLevel>
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories);..\..\..\addons\ofxGpuParticles\libs;..\..\..\addons\ofxGpuParticles\src</AdditionalIncludeDirectories>
<CompileAs>CompileAsCpp</CompileAs>
</ClCompile>
<Link>
<IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
<GenerateDebugInformation>false</GenerateDebugInformation>
<SubSystem>Console</SubSystem>
<OptimizeReferences>true</OptimizeReferences>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<RandomizedBaseAddress>false</RandomizedBaseAddress>
<AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="src\main.cpp" />
<ClCompile Include="src\ofApp.cpp" />
<ClCompile Include="..\..\..\addons\ofxGpuParticles\src\GpuParticles.cpp" />
<ClCompile Include="..\..\..\addons\ofxGpuParticles\src\GpuParticles.cpp~" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\ofApp.h" />
<ClInclude Include="..\..\..\addons\ofxGpuParticles\src\GpuParticles.h" />
<ClInclude Include="..\..\..\addons\ofxGpuParticles\src\GpuParticles.h~" />
<ClInclude Include="..\..\..\addons\ofxGpuParticles\src\ofxGpuParticles.h" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\libs\openFrameworksCompiled\project\vs\openframeworksLib.vcxproj">
<Project>{5837595d-aca9-485c-8e76-729040ce4b0b}</Project>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="icon.rc">
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">/D_DEBUG %(AdditionalOptions)</AdditionalOptions>
</ResourceCompile>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
</Project>
48 changes: 48 additions & 0 deletions example_color/example_color.vcxproj.filters
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<?xml version="1.0"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<ClCompile Include="src\ofApp.cpp">
<Filter>src</Filter>
</ClCompile>
<ClCompile Include="src\main.cpp">
<Filter>src</Filter>
</ClCompile>
<ClCompile Include="..\..\..\addons\ofxGpuParticles\src\GpuParticles.cpp">
<Filter>addons\ofxGpuParticles\src</Filter>
</ClCompile>
<ClCompile Include="..\..\..\addons\ofxGpuParticles\src\GpuParticles.cpp~">
<Filter>addons\ofxGpuParticles\src</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<Filter Include="src">
<UniqueIdentifier>{d8376475-7454-4a24-b08a-aac121d3ad6f}</UniqueIdentifier>
</Filter>
<Filter Include="addons">
<UniqueIdentifier>{71834F65-F3A9-211E-73B8-DC85}</UniqueIdentifier>
</Filter>
<Filter Include="addons\ofxGpuParticles">
<UniqueIdentifier>{B7A3A1F0-9289-7823-A037-9F40}</UniqueIdentifier>
</Filter>
<Filter Include="addons\ofxGpuParticles\src">
<UniqueIdentifier>{4DDEE1DE-620F-6E3F-FC5F-A25F}</UniqueIdentifier>
</Filter>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\ofApp.h">
<Filter>src</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxGpuParticles\src\GpuParticles.h">
<Filter>addons\ofxGpuParticles\src</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxGpuParticles\src\GpuParticles.h~">
<Filter>addons\ofxGpuParticles\src</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxGpuParticles\src\ofxGpuParticles.h">
<Filter>addons\ofxGpuParticles\src</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="icon.rc" />
</ItemGroup>
</Project>
11 changes: 11 additions & 0 deletions example_color/example_color.vcxproj.user
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<LocalDebuggerWorkingDirectory>$(ProjectDir)/bin</LocalDebuggerWorkingDirectory>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<LocalDebuggerWorkingDirectory>$(ProjectDir)/bin</LocalDebuggerWorkingDirectory>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
</Project>
8 changes: 8 additions & 0 deletions example_color/icon.rc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// Icon Resource Definition
#define MAIN_ICON 102

#if defined(_DEBUG)
MAIN_ICON ICON "..\..\..\libs\openFrameworksCompiled\project\vs\icon_debug.ico"
#else
MAIN_ICON ICON "..\..\..\libs\openFrameworksCompiled\project\vs\icon.ico"
#endif
Binary file added example_color/obj/Debug/CL.read.1.tlog
Binary file not shown.
Binary file added example_color/obj/Debug/CL.write.1.tlog
Binary file not shown.
Binary file added example_color/obj/Debug/GpuParticles.obj
Binary file not shown.
Binary file added example_color/obj/Debug/cl.command.1.tlog
Binary file not shown.
2 changes: 2 additions & 0 deletions example_color/obj/Debug/example_color.lastbuildstate
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#v4.0:v110:false
Debug|Win32|C:\Users\chris\Documents\Projects\of_v0.8.4_vs_release\addons\ofxGpuParticles\example_color\|
55 changes: 55 additions & 0 deletions example_color/obj/Debug/example_color.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
Build started 5/18/2015 5:01:57 PM.
1>Project "C:\Users\chris\Documents\Projects\of_v0.8.4_vs_release\addons\ofxGpuParticles\example_color\example_color.vcxproj" on node 2 (Build target(s)).
1>ClCompile:
C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\bin\CL.exe /c /I..\..\..\libs\openFrameworks /I..\..\..\libs\openFrameworks\graphics /I..\..\..\libs\openFrameworks\app /I..\..\..\libs\openFrameworks\sound /I..\..\..\libs\openFrameworks\utils /I..\..\..\libs\openFrameworks\communication /I..\..\..\libs\openFrameworks\video /I..\..\..\libs\openFrameworks\types /I..\..\..\libs\openFrameworks\math /I..\..\..\libs\openFrameworks\3d /I..\..\..\libs\openFrameworks\gl /I..\..\..\libs\openFrameworks\events /I..\..\..\libs\glut\include /I..\..\..\libs\rtAudio\include /I..\..\..\libs\quicktime\include /I..\..\..\libs\freetype\include /I..\..\..\libs\freetype\include\freetype2 /I..\..\..\libs\freeImage\include /I..\..\..\libs\fmodex\include /I..\..\..\libs\videoInput\include /I..\..\..\libs\glew\include\ /I..\..\..\libs\glu\include /I..\..\..\libs\tess2\include /I..\..\..\libs\cairo\include\cairo /I..\..\..\libs\poco\include /I..\..\..\libs\glfw\include /I..\..\..\libs\openssl\include /I..\..\..\addons /I..\..\..\addons\ofxGpuParticles\libs /I..\..\..\addons\ofxGpuParticles\src /ZI /nologo /W3 /WX- /Od /Oy- /D WIN32 /D _DEBUG /D _CONSOLE /D POCO_STATIC /D CAIRO_WIN32_STATIC_BUILD /D DISABLE_SOME_FLOATING_POINT /D _UNICODE /D UNICODE /Gm /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"obj\Debug\\" /Fd"obj\Debug\vc110.pdb" /Gd /TP /analyze- /errorReport:prompt src\ofApp.cpp
ofApp.cpp
1>c:\users\chris\documents\projects\of_v0.8.4_vs_release\libs\poco\include\poco\streamconverter.h(126): warning C4250: 'Poco::InputStreamConverter' : inherits 'std::basic_istream<_Elem,_Traits>::std::basic_istream<_Elem,_Traits>::_Add_vtordisp1' via dominance
with
[
_Elem=char,
_Traits=std::char_traits<char>
]
c:\program files (x86)\microsoft visual studio 11.0\vc\include\istream(74) : see declaration of 'std::basic_istream<_Elem,_Traits>::_Add_vtordisp1'
with
[
_Elem=char,
_Traits=std::char_traits<char>
]
1>c:\users\chris\documents\projects\of_v0.8.4_vs_release\libs\poco\include\poco\streamconverter.h(144): warning C4250: 'Poco::OutputStreamConverter' : inherits 'std::basic_ostream<_Elem,_Traits>::std::basic_ostream<_Elem,_Traits>::_Add_vtordisp2' via dominance
with
[
_Elem=char,
_Traits=std::char_traits<char>
]
c:\program files (x86)\microsoft visual studio 11.0\vc\include\ostream(90) : see declaration of 'std::basic_ostream<_Elem,_Traits>::_Add_vtordisp2'
with
[
_Elem=char,
_Traits=std::char_traits<char>
]
Link:
C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\bin\link.exe /ERRORREPORT:PROMPT /OUT:"bin\example_color_debug.exe" /INCREMENTAL /NOLOGO /LIBPATH:..\..\..\libs\glut\lib\vs /LIBPATH:..\..\..\libs\glfw\lib\vs /LIBPATH:..\..\..\libs\rtAudio\lib\vs /LIBPATH:..\..\..\libs\FreeImage\lib\vs /LIBPATH:..\..\..\libs\freetype\lib\vs /LIBPATH:..\..\..\libs\quicktime\lib\vs /LIBPATH:..\..\..\libs\fmodex\lib\vs /LIBPATH:..\..\..\libs\videoInput\lib\vs /LIBPATH:..\..\..\libs\cairo\lib\vs /LIBPATH:..\..\..\libs\glew\lib\vs /LIBPATH:..\..\..\libs\glu\lib\vs /LIBPATH:..\..\..\libs\openssl\lib\vs /LIBPATH:..\..\..\libs\Poco\lib\vs /LIBPATH:..\..\..\libs\tess2\lib\vs "cairo-static.lib" "pixman-1.lib" msimg32.lib OpenGL32.lib GLu32.lib kernel32.lib setupapi.lib Vfw32.lib comctl32.lib glut32.lib rtAudioD.lib videoInputD.lib libfreetype.lib FreeImage.lib qtmlClient.lib dsound.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib glew32s.lib fmodex_vc.lib glu32.lib ssleay32MD.lib libeay32MD.lib crypt32.lib PocoFoundationmdd.lib PocoNetmdd.lib PocoUtilmdd.lib PocoXMLmdd.lib Ws2_32.lib tess2.lib glfw3.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 /NODEFAULTLIB:PocoFoundationmdd.lib /NODEFAULTLIB:atlthunk.lib /NODEFAULTLIB:msvcrt /NODEFAULTLIB:libcmt /NODEFAULTLIB:LIBC /NODEFAULTLIB:LIBCMTD /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"bin\example_color_debug.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE:NO /NXCOMPAT /IMPLIB:"bin\example_color_debug.lib" /MACHINE:X86 /SAFESEH obj\Debug\icon.res
obj\Debug\main.obj
obj\Debug\ofApp.obj
obj\Debug\GpuParticles.obj
obj\Debug\GpuParticles.obj
C:\Users\chris\Documents\Projects\of_v0.8.4_vs_release\libs\openFrameworksCompiled\lib\vs\openframeworksLib_debug.lib
example_color.vcxproj -> C:\Users\chris\Documents\Projects\of_v0.8.4_vs_release\addons\ofxGpuParticles\example_color\bin\example_color_debug.exe
PostBuildEvent:
xcopy /e /i /y "C:\Users\chris\Documents\Projects\of_v0.8.4_vs_release\addons\ofxGpuParticles\example_color\..\..\..\export\vs\*.dll" "C:\Users\chris\Documents\Projects\of_v0.8.4_vs_release\addons\ofxGpuParticles\example_color\bin"
:VCEnd
C:\Users\chris\Documents\Projects\of_v0.8.4_vs_release\addons\ofxGpuParticles\example_color\..\..\..\export\vs\Assimp32.dll
C:\Users\chris\Documents\Projects\of_v0.8.4_vs_release\addons\ofxGpuParticles\example_color\..\..\..\export\vs\fmodex.dll
C:\Users\chris\Documents\Projects\of_v0.8.4_vs_release\addons\ofxGpuParticles\example_color\..\..\..\export\vs\fmodexL.dll
C:\Users\chris\Documents\Projects\of_v0.8.4_vs_release\addons\ofxGpuParticles\example_color\..\..\..\export\vs\FreeImage.dll
C:\Users\chris\Documents\Projects\of_v0.8.4_vs_release\addons\ofxGpuParticles\example_color\..\..\..\export\vs\FreeType-6.dll
C:\Users\chris\Documents\Projects\of_v0.8.4_vs_release\addons\ofxGpuParticles\example_color\..\..\..\export\vs\glut32.dll
C:\Users\chris\Documents\Projects\of_v0.8.4_vs_release\addons\ofxGpuParticles\example_color\..\..\..\export\vs\libeay32.dll
C:\Users\chris\Documents\Projects\of_v0.8.4_vs_release\addons\ofxGpuParticles\example_color\..\..\..\export\vs\ssleay32.dll
C:\Users\chris\Documents\Projects\of_v0.8.4_vs_release\addons\ofxGpuParticles\example_color\..\..\..\export\vs\Zlib.dll
9 File(s) copied
1>Done Building Project "C:\Users\chris\Documents\Projects\of_v0.8.4_vs_release\addons\ofxGpuParticles\example_color\example_color.vcxproj" (Build target(s)).

Build succeeded.

Time Elapsed 00:00:03.08
Binary file not shown.
10 changes: 10 additions & 0 deletions example_color/obj/Debug/example_color.write.1.tlog
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
^C:\Users\chris\Documents\Projects\of_v0.8.4_vs_release\addons\ofxGpuParticles\example_color\example_color.vcxproj
C:\Users\chris\Documents\Projects\of_v0.8.4_vs_release\addons\ofxGpuParticles\example_color\bin\example_color_debug.lib
C:\Users\chris\Documents\Projects\of_v0.8.4_vs_release\addons\ofxGpuParticles\example_color\bin\example_color_debug.lib
C:\Users\chris\Documents\Projects\of_v0.8.4_vs_release\addons\ofxGpuParticles\example_color\bin\example_color_debug.exp
C:\Users\chris\Documents\Projects\of_v0.8.4_vs_release\addons\ofxGpuParticles\example_color\bin\example_color_debug.exp
^C:\Users\chris\Documents\Projects\of_v0.8.4_vs_release\addons\ofxGpuParticles\example_color\example_color.vcxproj
C:\Users\chris\Documents\Projects\of_v0.8.4_vs_release\addons\ofxGpuParticles\example_color\bin\example_color_debug.lib
C:\Users\chris\Documents\Projects\of_v0.8.4_vs_release\addons\ofxGpuParticles\example_color\bin\example_color_debug.lib
C:\Users\chris\Documents\Projects\of_v0.8.4_vs_release\addons\ofxGpuParticles\example_color\bin\example_color_debug.exp
C:\Users\chris\Documents\Projects\of_v0.8.4_vs_release\addons\ofxGpuParticles\example_color\bin\example_color_debug.exp
Binary file added example_color/obj/Debug/icon.res
Binary file not shown.
1 change: 1 addition & 0 deletions example_color/obj/Debug/link-cvtres.read.1.tlog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
��
1 change: 1 addition & 0 deletions example_color/obj/Debug/link-cvtres.write.1.tlog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
��
Loading