Skip to content

Commit

Permalink
* Fixed "CallbackOnCollectedDelegate" bug in demos
Browse files Browse the repository at this point in the history
* Added "CubeMapping" textures
* Added texture loading target and preprocessing options in TextureManager
* Removed unnecessary textures from old/experimental demos
  • Loading branch information
taylaninan committed Jun 16, 2017
1 parent 7db6bbe commit c96eb9d
Show file tree
Hide file tree
Showing 28 changed files with 382 additions and 20,645 deletions.
10 changes: 8 additions & 2 deletions .gitignore
Expand Up @@ -6,8 +6,14 @@
/OpenGLDotNet.VC.VC.opendb
*.suo
*.user
Debug/
Release/
*.sdf
*.exp
*.iobj
*.ipdb
*.pdb
/bin/debug/
/debug/
/release/
obj/
.git/
.vs/
4 changes: 2 additions & 2 deletions Assembler.vcxproj
Expand Up @@ -22,15 +22,15 @@
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<CharacterSet>Unicode</CharacterSet>
<PlatformToolset>v140</PlatformToolset>
<PlatformToolset>v140_xp</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
<PlatformToolset>v140</PlatformToolset>
<PlatformToolset>v140_xp</PlatformToolset>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
Expand Down
46 changes: 37 additions & 9 deletions OpenGLDemos.csproj
Expand Up @@ -12,6 +12,21 @@
<AssemblyName>OpenGLDemos</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
<UpdateEnabled>false</UpdateEnabled>
<UpdateMode>Foreground</UpdateMode>
<UpdateInterval>7</UpdateInterval>
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<IsWebBootstrapper>false</IsWebBootstrapper>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<PlatformTarget>x86</PlatformTarget>
Expand All @@ -27,16 +42,19 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<PlatformTarget>x86</PlatformTarget>
<DebugType>pdbonly</DebugType>
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<UseVSHostingProcess>false</UseVSHostingProcess>
</PropertyGroup>
<PropertyGroup>
<StartupObject>OpenGLDemos.OpenGLDemos</StartupObject>
<StartupObject>Quake2DotNet.Quake2Main</StartupObject>
</PropertyGroup>
<PropertyGroup />
<ItemGroup>
<Reference Include="NAudio">
<HintPath>D:\Development\Windows\Projects\Quake2DotNet\bin\Release\NAudio.dll</HintPath>
Expand All @@ -53,20 +71,30 @@
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\OpenGLDemos.AssemblyInfo.cs" />
<Compile Include="Source\Demos\Quake2ConsoleDemo\Q2CommandManager.cs" />
<Compile Include="Source\Demos\Quake2ConsoleDemo\Q2ConsoleManager.cs" />
<Compile Include="Source\Demos\Quake2ConsoleDemo\Q2ConsoleVarManager.cs" />
<Compile Include="Source\Demos\Quake2ConsoleDemo\Q2ConsoleMain.cs" />
<Compile Include="Source\Demos\Quake2ConsoleDemo\Q2TextureManager.cs" />
<Compile Include="Source\Demos\GLDemoMain.cs" />
<Compile Include="Source\Demos\Q2CommandManager.cs" />
<Compile Include="Source\Demos\Q2ConsoleManager.cs" />
<Compile Include="Source\Demos\Q2ConsoleVarManager.cs" />
<Compile Include="Source\Demos\Q2ConsoleMain.cs" />
<Compile Include="Source\Demos\Q2TextureManager.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="OpenGLDotNet.csproj">
<Project>{51991C31-1314-4726-9544-D37E228F5D60}</Project>
<Name>OpenGLDotNet</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup />
<ItemGroup>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1</ProductName>
<Install>true</Install>
</BootstrapperPackage>
</ItemGroup>
<ItemGroup>
<None Include="Source\app.config">
<SubType>Designer</SubType>
</None>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
Expand Down
14 changes: 7 additions & 7 deletions OpenGLDotNet.csproj
Expand Up @@ -44,13 +44,14 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<PlatformTarget>x86</PlatformTarget>
<DebugType>pdbonly</DebugType>
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<UseVSHostingProcess>false</UseVSHostingProcess>
</PropertyGroup>
<PropertyGroup>
<StartupObject>
Expand Down Expand Up @@ -110,11 +111,6 @@
<Compile Include="Source\OpenGL\GLUT.Functions.cs" />
<Compile Include="Properties\OpenGLDotNet.AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="app.config">
<SubType>Designer</SubType>
</None>
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
<Visible>False</Visible>
Expand All @@ -135,7 +131,11 @@
<ItemGroup>
<Service Include="{508349B6-6B84-4DF5-91F0-309BEEBAD82D}" />
</ItemGroup>
<ItemGroup />
<ItemGroup>
<None Include="app.config">
<SubType>Designer</SubType>
</None>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
Expand Down
29 changes: 0 additions & 29 deletions Source/Demos/GLDemoMain.cs

This file was deleted.

File renamed without changes.

0 comments on commit c96eb9d

Please sign in to comment.