Changeset 1518 for trunk/tutorial
- Timestamp:
- Jun 24, 2012, 1:19:11 PM (10 years ago)
- Location:
- trunk/tutorial
- Files:
-
- 1 added
- 1 copied
- 9 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/tutorial/01_triangle.vcxproj
r1517 r1518 28 28 </ItemGroup> 29 29 <ItemGroup> 30 <ClCompile Include=" ..\test\tutorial\01_triangle.cpp" />30 <ClCompile Include="01_triangle.cpp" /> 31 31 </ItemGroup> 32 32 <ItemGroup> 33 <LolFxCompile Include=" ..\test\tutorial\01_triangle.lolfx" />33 <LolFxCompile Include="01_triangle.lolfx" /> 34 34 </ItemGroup> 35 35 <ItemGroup> -
trunk/tutorial/02_cube.vcxproj
r1517 r1518 28 28 </ItemGroup> 29 29 <ItemGroup> 30 <ClCompile Include=" ..\test\tutorial\02_cube.cpp" />30 <ClCompile Include="02_cube.cpp" /> 31 31 </ItemGroup> 32 32 <ItemGroup> 33 <LolFxCompile Include=" ..\test\tutorial\02_cube.lolfx" />33 <LolFxCompile Include="02_cube.lolfx" /> 34 34 </ItemGroup> 35 35 <ItemGroup> -
trunk/tutorial/11_fractal.cpp
r1517 r1518 36 36 #endif 37 37 38 extern char const *lolfx_ 03_fractal;38 extern char const *lolfx_11_fractal; 39 39 40 40 #if defined USE_D3D9 … … 479 479 #endif 480 480 481 m_shader = Shader::Create(lolfx_ 03_fractal);481 m_shader = Shader::Create(lolfx_11_fractal); 482 482 483 483 m_vertexattrib = m_shader->GetAttribLocation("a_Vertex", VertexUsage::Position, 0); -
trunk/tutorial/11_fractal.vcxproj
r1517 r1518 28 28 </ItemGroup> 29 29 <ItemGroup> 30 <ClCompile Include=" ..\test\tutorial\03_fractal.cpp" />30 <ClCompile Include="11_fractal.cpp" /> 31 31 </ItemGroup> 32 32 <ItemGroup> 33 <LolFxCompile Include=" ..\test\tutorial\03_fractal.lolfx" />33 <LolFxCompile Include="11_fractal.lolfx" /> 34 34 </ItemGroup> 35 35 <ItemGroup> -
trunk/tutorial/Makefile.am
r1517 r1518 19 19 echo ";") | $(CXXCOMPILE) -xc++ -c - -o $@ 20 20 21 noinst_PROGRAMS = 01_triangle 02_cube 03_fractal21 noinst_PROGRAMS = 01_triangle 02_cube 11_fractal 22 22 23 23 01_triangle_SOURCES = 01_triangle.cpp 01_triangle.lolfx … … 31 31 02_cube_DEPENDENCIES = $(top_builddir)/src/liblol.a 32 32 33 03_fractal_SOURCES = 03_fractal.cpp 03_fractal.lolfx34 03_fractal_CPPFLAGS = @LOL_CFLAGS@ @PIPI_CFLAGS@35 03_fractal_LDFLAGS = $(top_builddir)/src/liblol.a @LOL_LIBS@ @PIPI_LIBS@36 03_fractal_DEPENDENCIES = $(top_builddir)/src/liblol.a33 11_fractal_SOURCES = 11_fractal.cpp 11_fractal.lolfx 34 11_fractal_CPPFLAGS = @LOL_CFLAGS@ @PIPI_CFLAGS@ 35 11_fractal_LDFLAGS = $(top_builddir)/src/liblol.a @LOL_LIBS@ @PIPI_LIBS@ 36 11_fractal_DEPENDENCIES = $(top_builddir)/src/liblol.a 37 37
Note: See TracChangeset
for help on using the changeset viewer.