mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-09 20:15:40 +00:00
Removed documentation generation project.
This commit is contained in:
parent
8f229c0d72
commit
b02959cbeb
|
@ -1,96 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<PropertyGroup Condition="'$(Configuration)' == 'Documentation'">
|
|
||||||
<OutputPath>.\Source</OutputPath>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
|
|
||||||
<OutputPath>.\Source</OutputPath>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
|
||||||
<OutputPath>.\Source</OutputPath>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)' == 'Nsis'">
|
|
||||||
<OutputPath>.\Source</OutputPath>
|
|
||||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
||||||
<CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
|
|
||||||
<CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
|
|
||||||
<CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup>
|
|
||||||
<OutputPath>.\Source</OutputPath>
|
|
||||||
<LatexPath>$(OutputPath)\latex</LatexPath>
|
|
||||||
<HtmlPath>$(OutputPath)\html</HtmlPath>
|
|
||||||
<ProjectGuid>{650C6F3D-33B5-4216-9536-956AB42C0624}</ProjectGuid>
|
|
||||||
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
|
|
||||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
||||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
||||||
<ProductVersion>8.0.30703</ProductVersion>
|
|
||||||
<SchemaVersion>2.0</SchemaVersion>
|
|
||||||
<OutputType>Exe</OutputType>
|
|
||||||
<AssemblyName>Build.Docs</AssemblyName>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Documentation|AnyCPU' ">
|
|
||||||
<DebugType>none</DebugType>
|
|
||||||
<Optimize>False</Optimize>
|
|
||||||
<OutputPath>Source</OutputPath>
|
|
||||||
<WarningLevel>4</WarningLevel>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
||||||
<DebugType>none</DebugType>
|
|
||||||
<Optimize>False</Optimize>
|
|
||||||
<OutputPath>Source</OutputPath>
|
|
||||||
<WarningLevel>4</WarningLevel>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
||||||
<DebugType>none</DebugType>
|
|
||||||
<Optimize>False</Optimize>
|
|
||||||
<OutputPath>Source</OutputPath>
|
|
||||||
<WarningLevel>4</WarningLevel>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Nsis|AnyCPU' ">
|
|
||||||
<DebugType>none</DebugType>
|
|
||||||
<Optimize>False</Optimize>
|
|
||||||
<OutputPath>Source</OutputPath>
|
|
||||||
<WarningLevel>4</WarningLevel>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DebugMinimal|AnyCPU' ">
|
|
||||||
<DebugType>none</DebugType>
|
|
||||||
<Optimize>false</Optimize>
|
|
||||||
<OutputPath>Source</OutputPath>
|
|
||||||
<WarningLevel>4</WarningLevel>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'ReleaseMinimal|AnyCPU' ">
|
|
||||||
<DebugType>none</DebugType>
|
|
||||||
<Optimize>false</Optimize>
|
|
||||||
<OutputPath>Source</OutputPath>
|
|
||||||
<WarningLevel>4</WarningLevel>
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<None Include="Doxyfile" />
|
|
||||||
<None Include="..\README.md">
|
|
||||||
<Link>README.md</Link>
|
|
||||||
</None>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<None Include="Contributors.txt" />
|
|
||||||
<None Include="License.txt" />
|
|
||||||
<None Include="Todo.txt" />
|
|
||||||
</ItemGroup>
|
|
||||||
<Target Name="Build">
|
|
||||||
<Exec Command="doxygen" />
|
|
||||||
<Exec Command="pdflatex -interaction=batchmode refman.tex" WorkingDirectory="$(LatexPath)" />
|
|
||||||
<Exec Command="makeindex -q refman.idx" WorkingDirectory="$(LatexPath)" />
|
|
||||||
<Exec Command="pdflatex -interaction=batchmode refman.tex" WorkingDirectory="$(LatexPath)" />
|
|
||||||
<Copy SourceFiles="$(LatexPath)\refman.pdf" DestinationFiles="Reference.pdf" />
|
|
||||||
</Target>
|
|
||||||
<Target Name="Clean">
|
|
||||||
<Delete Files="Reference.pdf" />
|
|
||||||
<Delete Files="texput.log" />
|
|
||||||
<RemoveDir Directories="$(OutputPath)" Condition="'$(OS)' == 'Windows_NT'" />
|
|
||||||
<Exec Command="rm -rf $(OutputPath)" Condition="'$(OS)' != 'Windows_NT'" />
|
|
||||||
</Target>
|
|
||||||
<Target Name="Rebuild">
|
|
||||||
<CallTarget Targets="Clean" />
|
|
||||||
<CallTarget Targets="Build" />
|
|
||||||
</Target>
|
|
||||||
</Project>
|
|
|
@ -1,17 +0,0 @@
|
||||||
The Open Toolkit library team consists of:
|
|
||||||
|
|
||||||
Stefanos Apostolopoulos
|
|
||||||
Christoph Brandtner
|
|
||||||
Erik Ylvisaker
|
|
||||||
|
|
||||||
|
|
||||||
The following people have contributed code, art and support to the Open Toolkit library. Thank you!
|
|
||||||
|
|
||||||
Andy Gill
|
|
||||||
Beau Gunderson
|
|
||||||
James Talton
|
|
||||||
Kostas Soulakellis
|
|
||||||
Per
|
|
||||||
Pokemoen
|
|
||||||
Mincus
|
|
||||||
snocrash
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,52 +0,0 @@
|
||||||
The Open Toolkit library license
|
|
||||||
|
|
||||||
Copyright (c) 2006 - 2014 Stefanos Apostolopoulos <stapostol@gmail.com> for the Open Toolkit library.
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Third parties
|
|
||||||
|
|
||||||
|
|
||||||
OpenTK.Platform.Windows and OpenTK.Platform.X11 include portions of the Mono class library. These portions are covered by the following license:
|
|
||||||
|
|
||||||
Copyright (c) 2004 Novell, Inc.
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
OpenTK.Compatibility includes portions of the Tao Framework library (Tao.OpenGl, Tao.OpenAl and Tao.Platform.Windows.SimpleOpenGlControl). These portions are covered by the following license:
|
|
||||||
|
|
||||||
Copyright <20>2003-2007 Tao Framework Team
|
|
||||||
http://www.taoframework.com
|
|
||||||
All rights reserved.
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
OpenTK.Half offers Half-to-Single and Single-to-Half conversions based on OpenEXR source code, which is covered by the following license:
|
|
||||||
|
|
||||||
Copyright (c) 2002, Industrial Light & Magic, a division of Lucas Digital Ltd. LLC. All rights reserved.
|
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|
||||||
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
|
||||||
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
|
||||||
* Neither the name of Industrial Light & Magic nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
|
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
@ -1 +0,0 @@
|
||||||
<meta http-equiv="refresh" content="0; url=http://www.openal.org/documentation/openal-1.1-specification.pdf" />
|
|
|
@ -1 +0,0 @@
|
||||||
<meta http-equiv="refresh" content="0; url=http://www.khronos.org/files/opengl44-quick-reference-card.pdf" />
|
|
|
@ -1 +0,0 @@
|
||||||
<meta http-equiv="refresh" content="0; url=https://www.opengl.org/registry/doc/glspec44.compatibility.pdf" />
|
|
|
@ -1 +0,0 @@
|
||||||
<meta http-equiv="refresh" content="0; url=http://www.opengl.org/registry/doc/glspec44.core.pdf" />
|
|
|
@ -1 +0,0 @@
|
||||||
<meta http-equiv="refresh" content="0; url=http://www.opengl.org/registry/doc/GLSLangSpec.4.40.pdf" />
|
|
|
@ -1 +0,0 @@
|
||||||
<meta http-equiv="refresh" content="0; url=http://www.khronos.org/opengles/sdk/docs/reference_cards/OpenGL-ES-2_0-Reference-card.pdf" />
|
|
|
@ -1 +0,0 @@
|
||||||
<meta http-equiv="refresh" content="0; url=http://www.khronos.org/files/opengles_shading_language.pdf" />
|
|
|
@ -1 +0,0 @@
|
||||||
<meta http-equiv="refresh" content="0; url=https://www.khronos.org/registry/gles/specs/2.0/es_full_spec_2.0.25.pdf" />
|
|
|
@ -1 +0,0 @@
|
||||||
<meta http-equiv="refresh" content="0; url=https://www.khronos.org/files/opengles3-quick-reference-card.pdf" />
|
|
|
@ -1 +0,0 @@
|
||||||
<meta http-equiv="refresh" content="0; url=http://www.khronos.org/registry/gles/specs/3.0/GLSL_ES_Specification_3.00.3.pdf" />
|
|
|
@ -1 +0,0 @@
|
||||||
<meta http-equiv="refresh" content="0; url=http://www.khronos.org/registry/gles/specs/3.0/es_spec_3.0.0.pdf" />
|
|
|
@ -1 +0,0 @@
|
||||||
<meta http-equiv="refresh" content="0; url=http://www.opentk.com/files/doc/annotated.html" />
|
|
|
@ -1 +0,0 @@
|
||||||
<meta http-equiv="refresh" content="0; url=http://www.opentk.com/doc" />
|
|
|
@ -1,17 +0,0 @@
|
||||||
[Easy]
|
|
||||||
- Clean up warnings.
|
|
||||||
- Remove Example Browser in favor of separate projects.
|
|
||||||
- Speed up matrix Inverse() functions. (Patch exists in mono/opentk.)
|
|
||||||
|
|
||||||
[Moderate]
|
|
||||||
- Implement touch input API.
|
|
||||||
- Implement force feedback API.
|
|
||||||
- Add Portable Class Library (PCL) target.
|
|
||||||
- Add OpenCL support.
|
|
||||||
- Add OpenGL ES 3.1 support.
|
|
||||||
- Port to Linux/Wayland.
|
|
||||||
- Port to Blackberry (WIP at https://github.com/rcmaniac25/opentk).
|
|
||||||
- Port to Tizen.
|
|
||||||
|
|
||||||
[Hard]
|
|
||||||
- Merge with mono/opentk.
|
|
Loading…
Reference in a new issue