From 460e071bdad76243da07523f480c62852ef71cce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Ansel?= Date: Sun, 11 Jan 2015 02:21:52 +0100 Subject: [PATCH] Add LICENSE --- LICENSE.txt | 21 +++++++++++++++++++++ impl11/ddraw/BackbufferSurface.cpp | 3 +++ impl11/ddraw/BackbufferSurface.h | 3 +++ impl11/ddraw/ComPtr.h | 3 +++ impl11/ddraw/DepthSurface.cpp | 3 +++ impl11/ddraw/DepthSurface.h | 3 +++ impl11/ddraw/DeviceResources.cpp | 3 +++ impl11/ddraw/DeviceResources.h | 3 +++ impl11/ddraw/Direct3D.cpp | 3 +++ impl11/ddraw/Direct3D.h | 3 +++ impl11/ddraw/Direct3DDevice.cpp | 3 +++ impl11/ddraw/Direct3DDevice.h | 3 +++ impl11/ddraw/Direct3DExecuteBuffer.cpp | 3 +++ impl11/ddraw/Direct3DExecuteBuffer.h | 3 +++ impl11/ddraw/Direct3DTexture.cpp | 3 +++ impl11/ddraw/Direct3DTexture.h | 3 +++ impl11/ddraw/Direct3DViewport.cpp | 3 +++ impl11/ddraw/Direct3DViewport.h | 3 +++ impl11/ddraw/DirectDraw.cpp | 3 +++ impl11/ddraw/DirectDraw.h | 3 +++ impl11/ddraw/DirectDraw2.cpp | 3 +++ impl11/ddraw/DirectDraw2.h | 3 +++ impl11/ddraw/ExecuteBufferDumper.cpp | 3 +++ impl11/ddraw/ExecuteBufferDumper.h | 3 +++ impl11/ddraw/FrontbufferSurface.cpp | 3 +++ impl11/ddraw/FrontbufferSurface.h | 3 +++ impl11/ddraw/MipmapSurface.cpp | 3 +++ impl11/ddraw/MipmapSurface.h | 3 +++ impl11/ddraw/OffscreenSurface.cpp | 3 +++ impl11/ddraw/OffscreenSurface.h | 3 +++ impl11/ddraw/PrimarySurface.cpp | 3 +++ impl11/ddraw/PrimarySurface.h | 3 +++ impl11/ddraw/TextureSurface.cpp | 3 +++ impl11/ddraw/TextureSurface.h | 3 +++ impl11/ddraw/common.h | 3 +++ impl11/ddraw/config.cpp | 3 +++ impl11/ddraw/config.h | 3 +++ impl11/ddraw/ddraw.cpp | 3 +++ impl11/ddraw/ddraw.rc | Bin 4598 -> 4598 bytes impl11/ddraw/dllmain.cpp | 3 +++ impl11/ddraw/logger.cpp | 3 +++ impl11/ddraw/logger.h | 3 +++ impl11/ddraw/targetver.h | 3 +++ impl11/ddraw/utils.cpp | 3 +++ impl11/ddraw/utils.h | 3 +++ impl11/shaders/MainPixelShader.hlsl | 3 +++ impl11/shaders/MainVertexShader.hlsl | 3 +++ impl11/shaders/PixelShaderSolid.hlsl | 3 +++ impl11/shaders/PixelShaderTexture.hlsl | 3 +++ impl11/shaders/VertexShader.hlsl | 3 +++ impl11/tests/ComPtr.h | 3 +++ impl11/tests/main.cpp | 3 +++ impl11/tests/targetver.h | 3 +++ readme.txt | 7 +++++-- 54 files changed, 179 insertions(+), 2 deletions(-) create mode 100644 LICENSE.txt diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 00000000..78ecc346 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Jérémy Ansel + +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. diff --git a/impl11/ddraw/BackbufferSurface.cpp b/impl11/ddraw/BackbufferSurface.cpp index 1c3dea5c..b88155bb 100644 --- a/impl11/ddraw/BackbufferSurface.cpp +++ b/impl11/ddraw/BackbufferSurface.cpp @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #include "common.h" #include "DeviceResources.h" #include "BackbufferSurface.h" diff --git a/impl11/ddraw/BackbufferSurface.h b/impl11/ddraw/BackbufferSurface.h index b05ea308..95b1f6a3 100644 --- a/impl11/ddraw/BackbufferSurface.h +++ b/impl11/ddraw/BackbufferSurface.h @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #pragma once class BackbufferSurface : public IDirectDrawSurface diff --git a/impl11/ddraw/ComPtr.h b/impl11/ddraw/ComPtr.h index f0382f50..97609e86 100644 --- a/impl11/ddraw/ComPtr.h +++ b/impl11/ddraw/ComPtr.h @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #pragma once template diff --git a/impl11/ddraw/DepthSurface.cpp b/impl11/ddraw/DepthSurface.cpp index 439b1a37..88e53601 100644 --- a/impl11/ddraw/DepthSurface.cpp +++ b/impl11/ddraw/DepthSurface.cpp @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #include "common.h" #include "DeviceResources.h" #include "DepthSurface.h" diff --git a/impl11/ddraw/DepthSurface.h b/impl11/ddraw/DepthSurface.h index be994da3..f7c552eb 100644 --- a/impl11/ddraw/DepthSurface.h +++ b/impl11/ddraw/DepthSurface.h @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #pragma once class DepthSurface : public IDirectDrawSurface diff --git a/impl11/ddraw/DeviceResources.cpp b/impl11/ddraw/DeviceResources.cpp index c32ef251..fa775bd2 100644 --- a/impl11/ddraw/DeviceResources.cpp +++ b/impl11/ddraw/DeviceResources.cpp @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #include "common.h" #include "DeviceResources.h" diff --git a/impl11/ddraw/DeviceResources.h b/impl11/ddraw/DeviceResources.h index f51ee3f9..09334f0c 100644 --- a/impl11/ddraw/DeviceResources.h +++ b/impl11/ddraw/DeviceResources.h @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #pragma once class PrimarySurface; diff --git a/impl11/ddraw/Direct3D.cpp b/impl11/ddraw/Direct3D.cpp index 85b300d8..86b45ed2 100644 --- a/impl11/ddraw/Direct3D.cpp +++ b/impl11/ddraw/Direct3D.cpp @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #include "common.h" #include "DeviceResources.h" #include "Direct3D.h" diff --git a/impl11/ddraw/Direct3D.h b/impl11/ddraw/Direct3D.h index 87d26959..235e5eb9 100644 --- a/impl11/ddraw/Direct3D.h +++ b/impl11/ddraw/Direct3D.h @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #pragma once class Direct3D : public IDirect3D diff --git a/impl11/ddraw/Direct3DDevice.cpp b/impl11/ddraw/Direct3DDevice.cpp index 5db9240c..d17b227e 100644 --- a/impl11/ddraw/Direct3DDevice.cpp +++ b/impl11/ddraw/Direct3DDevice.cpp @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #include "common.h" #include "DeviceResources.h" #include "Direct3DDevice.h" diff --git a/impl11/ddraw/Direct3DDevice.h b/impl11/ddraw/Direct3DDevice.h index 4fe6845d..2be91550 100644 --- a/impl11/ddraw/Direct3DDevice.h +++ b/impl11/ddraw/Direct3DDevice.h @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #pragma once class RenderStates; diff --git a/impl11/ddraw/Direct3DExecuteBuffer.cpp b/impl11/ddraw/Direct3DExecuteBuffer.cpp index 3d61c2ce..b5b2fc2f 100644 --- a/impl11/ddraw/Direct3DExecuteBuffer.cpp +++ b/impl11/ddraw/Direct3DExecuteBuffer.cpp @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #include "common.h" #include "DeviceResources.h" #include "Direct3DExecuteBuffer.h" diff --git a/impl11/ddraw/Direct3DExecuteBuffer.h b/impl11/ddraw/Direct3DExecuteBuffer.h index 52ca4a86..009b9064 100644 --- a/impl11/ddraw/Direct3DExecuteBuffer.h +++ b/impl11/ddraw/Direct3DExecuteBuffer.h @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #pragma once class Direct3DExecuteBuffer : public IDirect3DExecuteBuffer diff --git a/impl11/ddraw/Direct3DTexture.cpp b/impl11/ddraw/Direct3DTexture.cpp index e290e31f..db10de4f 100644 --- a/impl11/ddraw/Direct3DTexture.cpp +++ b/impl11/ddraw/Direct3DTexture.cpp @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #include "common.h" #include "DeviceResources.h" #include "Direct3DTexture.h" diff --git a/impl11/ddraw/Direct3DTexture.h b/impl11/ddraw/Direct3DTexture.h index d021af88..9c38197d 100644 --- a/impl11/ddraw/Direct3DTexture.h +++ b/impl11/ddraw/Direct3DTexture.h @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #pragma once class TextureSurface; diff --git a/impl11/ddraw/Direct3DViewport.cpp b/impl11/ddraw/Direct3DViewport.cpp index cc965d9a..b9410923 100644 --- a/impl11/ddraw/Direct3DViewport.cpp +++ b/impl11/ddraw/Direct3DViewport.cpp @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #include "common.h" #include "DeviceResources.h" #include "Direct3DViewport.h" diff --git a/impl11/ddraw/Direct3DViewport.h b/impl11/ddraw/Direct3DViewport.h index 47afba01..1a943f2c 100644 --- a/impl11/ddraw/Direct3DViewport.h +++ b/impl11/ddraw/Direct3DViewport.h @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #pragma once class Direct3DViewport : public IDirect3DViewport3 diff --git a/impl11/ddraw/DirectDraw.cpp b/impl11/ddraw/DirectDraw.cpp index 3dfbe584..201c27df 100644 --- a/impl11/ddraw/DirectDraw.cpp +++ b/impl11/ddraw/DirectDraw.cpp @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #include "common.h" #include "DeviceResources.h" #include "DirectDraw.h" diff --git a/impl11/ddraw/DirectDraw.h b/impl11/ddraw/DirectDraw.h index 95bac9cc..a6aa28f7 100644 --- a/impl11/ddraw/DirectDraw.h +++ b/impl11/ddraw/DirectDraw.h @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #pragma once class DirectDraw : public IDirectDraw diff --git a/impl11/ddraw/DirectDraw2.cpp b/impl11/ddraw/DirectDraw2.cpp index 392179de..68f0aeec 100644 --- a/impl11/ddraw/DirectDraw2.cpp +++ b/impl11/ddraw/DirectDraw2.cpp @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #include "common.h" #include "DeviceResources.h" #include "DirectDraw2.h" diff --git a/impl11/ddraw/DirectDraw2.h b/impl11/ddraw/DirectDraw2.h index c181f68a..8c300fcc 100644 --- a/impl11/ddraw/DirectDraw2.h +++ b/impl11/ddraw/DirectDraw2.h @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #pragma once class DirectDraw2 : public IDirectDraw2 diff --git a/impl11/ddraw/ExecuteBufferDumper.cpp b/impl11/ddraw/ExecuteBufferDumper.cpp index ab70c5b3..eb49a24f 100644 --- a/impl11/ddraw/ExecuteBufferDumper.cpp +++ b/impl11/ddraw/ExecuteBufferDumper.cpp @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #include "common.h" #include "DeviceResources.h" #include "Direct3DExecuteBuffer.h" diff --git a/impl11/ddraw/ExecuteBufferDumper.h b/impl11/ddraw/ExecuteBufferDumper.h index b3d5db37..e5e08274 100644 --- a/impl11/ddraw/ExecuteBufferDumper.h +++ b/impl11/ddraw/ExecuteBufferDumper.h @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #pragma once #if LOGGER diff --git a/impl11/ddraw/FrontbufferSurface.cpp b/impl11/ddraw/FrontbufferSurface.cpp index 5eae6d23..d3950366 100644 --- a/impl11/ddraw/FrontbufferSurface.cpp +++ b/impl11/ddraw/FrontbufferSurface.cpp @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #include "common.h" #include "DeviceResources.h" #include "FrontbufferSurface.h" diff --git a/impl11/ddraw/FrontbufferSurface.h b/impl11/ddraw/FrontbufferSurface.h index 5846fbfd..f5f7fd1e 100644 --- a/impl11/ddraw/FrontbufferSurface.h +++ b/impl11/ddraw/FrontbufferSurface.h @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #pragma once class FrontbufferSurface : public IDirectDrawSurface diff --git a/impl11/ddraw/MipmapSurface.cpp b/impl11/ddraw/MipmapSurface.cpp index b1b79e40..2644517b 100644 --- a/impl11/ddraw/MipmapSurface.cpp +++ b/impl11/ddraw/MipmapSurface.cpp @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #include "common.h" #include "DeviceResources.h" #include "MipmapSurface.h" diff --git a/impl11/ddraw/MipmapSurface.h b/impl11/ddraw/MipmapSurface.h index f05673ec..960a500c 100644 --- a/impl11/ddraw/MipmapSurface.h +++ b/impl11/ddraw/MipmapSurface.h @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #pragma once class MipmapSurface : public IDirectDrawSurface diff --git a/impl11/ddraw/OffscreenSurface.cpp b/impl11/ddraw/OffscreenSurface.cpp index dcdb0b73..bdaeb7bd 100644 --- a/impl11/ddraw/OffscreenSurface.cpp +++ b/impl11/ddraw/OffscreenSurface.cpp @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #include "common.h" #include "DeviceResources.h" #include "OffscreenSurface.h" diff --git a/impl11/ddraw/OffscreenSurface.h b/impl11/ddraw/OffscreenSurface.h index 8eda94bc..3a2cb485 100644 --- a/impl11/ddraw/OffscreenSurface.h +++ b/impl11/ddraw/OffscreenSurface.h @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #pragma once class OffscreenSurface : public IDirectDrawSurface diff --git a/impl11/ddraw/PrimarySurface.cpp b/impl11/ddraw/PrimarySurface.cpp index 1e246e2d..f75ce39b 100644 --- a/impl11/ddraw/PrimarySurface.cpp +++ b/impl11/ddraw/PrimarySurface.cpp @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #include "common.h" #include "DeviceResources.h" #include "PrimarySurface.h" diff --git a/impl11/ddraw/PrimarySurface.h b/impl11/ddraw/PrimarySurface.h index 89368e3d..90a98ea5 100644 --- a/impl11/ddraw/PrimarySurface.h +++ b/impl11/ddraw/PrimarySurface.h @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #pragma once class BackbufferSurface; diff --git a/impl11/ddraw/TextureSurface.cpp b/impl11/ddraw/TextureSurface.cpp index f5d68dd4..f8a34c47 100644 --- a/impl11/ddraw/TextureSurface.cpp +++ b/impl11/ddraw/TextureSurface.cpp @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #include "common.h" #include "DeviceResources.h" #include "TextureSurface.h" diff --git a/impl11/ddraw/TextureSurface.h b/impl11/ddraw/TextureSurface.h index c09123dc..2808e217 100644 --- a/impl11/ddraw/TextureSurface.h +++ b/impl11/ddraw/TextureSurface.h @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #pragma once class MipmapSurface; diff --git a/impl11/ddraw/common.h b/impl11/ddraw/common.h index bade7847..a8d57a9a 100644 --- a/impl11/ddraw/common.h +++ b/impl11/ddraw/common.h @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #pragma once #include "targetver.h" diff --git a/impl11/ddraw/config.cpp b/impl11/ddraw/config.cpp index 94e77b87..5d8ebd97 100644 --- a/impl11/ddraw/config.cpp +++ b/impl11/ddraw/config.cpp @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #include "config.h" #include diff --git a/impl11/ddraw/config.h b/impl11/ddraw/config.h index 3f0e6500..e54f094a 100644 --- a/impl11/ddraw/config.h +++ b/impl11/ddraw/config.h @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #pragma once class Config diff --git a/impl11/ddraw/ddraw.cpp b/impl11/ddraw/ddraw.cpp index 5ee272a7..85ab0bb4 100644 --- a/impl11/ddraw/ddraw.cpp +++ b/impl11/ddraw/ddraw.cpp @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #include "common.h" #include "DeviceResources.h" #include "DirectDraw.h" diff --git a/impl11/ddraw/ddraw.rc b/impl11/ddraw/ddraw.rc index 2b7e0af3e8ed75bd95e53ea35d25c13a1290b999..2345f999b85c869b9c948305190b22f78e03f84e 100644 GIT binary patch delta 42 wcmeyS{7rd71qY+iYXATM diff --git a/impl11/ddraw/dllmain.cpp b/impl11/ddraw/dllmain.cpp index 24813c13..3301a833 100644 --- a/impl11/ddraw/dllmain.cpp +++ b/impl11/ddraw/dllmain.cpp @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #include "targetver.h" #define WIN32_LEAN_AND_MEAN diff --git a/impl11/ddraw/logger.cpp b/impl11/ddraw/logger.cpp index a9dc30de..2a9befb8 100644 --- a/impl11/ddraw/logger.cpp +++ b/impl11/ddraw/logger.cpp @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #include "logger.h" #if LOGGER diff --git a/impl11/ddraw/logger.h b/impl11/ddraw/logger.h index 1ebc54b3..291ef601 100644 --- a/impl11/ddraw/logger.h +++ b/impl11/ddraw/logger.h @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #pragma once #ifdef _DEBUG diff --git a/impl11/ddraw/targetver.h b/impl11/ddraw/targetver.h index 6a53362d..26b73a3a 100644 --- a/impl11/ddraw/targetver.h +++ b/impl11/ddraw/targetver.h @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #pragma once #include diff --git a/impl11/ddraw/utils.cpp b/impl11/ddraw/utils.cpp index 3db37b4a..e99d43eb 100644 --- a/impl11/ddraw/utils.cpp +++ b/impl11/ddraw/utils.cpp @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #include "common.h" #include "utils.h" diff --git a/impl11/ddraw/utils.h b/impl11/ddraw/utils.h index 2f22458d..5d56138a 100644 --- a/impl11/ddraw/utils.h +++ b/impl11/ddraw/utils.h @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #pragma once std::string wchar_tostring(LPCWSTR text); diff --git a/impl11/shaders/MainPixelShader.hlsl b/impl11/shaders/MainPixelShader.hlsl index 6d455798..e7c45dde 100644 --- a/impl11/shaders/MainPixelShader.hlsl +++ b/impl11/shaders/MainPixelShader.hlsl @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + Texture2D texture0 : register(t0); SamplerState sampler0 : register(s0); diff --git a/impl11/shaders/MainVertexShader.hlsl b/impl11/shaders/MainVertexShader.hlsl index 31e25c9b..57b41e2b 100644 --- a/impl11/shaders/MainVertexShader.hlsl +++ b/impl11/shaders/MainVertexShader.hlsl @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + struct VertexShaderInput { diff --git a/impl11/shaders/PixelShaderSolid.hlsl b/impl11/shaders/PixelShaderSolid.hlsl index bae0dd9a..b6388d58 100644 --- a/impl11/shaders/PixelShaderSolid.hlsl +++ b/impl11/shaders/PixelShaderSolid.hlsl @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + Texture2D texture0 : register(t0); SamplerState sampler0 : register(s0); diff --git a/impl11/shaders/PixelShaderTexture.hlsl b/impl11/shaders/PixelShaderTexture.hlsl index bfec88d6..5c1a34a9 100644 --- a/impl11/shaders/PixelShaderTexture.hlsl +++ b/impl11/shaders/PixelShaderTexture.hlsl @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + Texture2D texture0 : register(t0); SamplerState sampler0 : register(s0); diff --git a/impl11/shaders/VertexShader.hlsl b/impl11/shaders/VertexShader.hlsl index 342a7ead..e5584a4a 100644 --- a/impl11/shaders/VertexShader.hlsl +++ b/impl11/shaders/VertexShader.hlsl @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + cbuffer ConstantBuffer : register(b0) { diff --git a/impl11/tests/ComPtr.h b/impl11/tests/ComPtr.h index f0382f50..97609e86 100644 --- a/impl11/tests/ComPtr.h +++ b/impl11/tests/ComPtr.h @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #pragma once template diff --git a/impl11/tests/main.cpp b/impl11/tests/main.cpp index 355d5fa8..753671cb 100644 --- a/impl11/tests/main.cpp +++ b/impl11/tests/main.cpp @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #pragma once #include "targetver.h" diff --git a/impl11/tests/targetver.h b/impl11/tests/targetver.h index 5f8a9967..ff93dd0c 100644 --- a/impl11/tests/targetver.h +++ b/impl11/tests/targetver.h @@ -1,3 +1,6 @@ +// Copyright (c) 2014 Jérémy Ansel +// Licensed under the MIT license. See LICENSE.txt + #pragma once #include diff --git a/readme.txt b/readme.txt index fbd6dc1e..4471dc7e 100644 --- a/readme.txt +++ b/readme.txt @@ -1,8 +1,9 @@ -This is an implementation of ddraw.dll using Direct3D 11. +This is an implementation of ddraw.dll using Direct3D 11. It is intented to be used with the X-Wing Alliance game. More info at xwaupgrade.com: http://www.xwaupgrade.com/phpBB3008/viewtopic.php?f=10&t=11167 + *** Requirements *** This dll requires: @@ -28,7 +29,9 @@ Note: You may want to use XWA Hacker by Reimar (http://sourceforge.net/projects/xwahacker/files/) to set the resolution. -*** Known issues *** +*** License *** + +xwa_ddraw_d3d11 is licensed under the MIT license. See LICENSE.txt *** Credits ***