From eefd6a10f587d2eca688a4910956284d1928dd4c Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 4 Dec 2019 23:48:57 -0500 Subject: [PATCH] VideoCommon/FramebufferShaderGen: Add missing initial source file comments Makes the source files consistent with the rest of the VideoCommon code. --- Source/Core/VideoCommon/FramebufferShaderGen.cpp | 6 ++++++ Source/Core/VideoCommon/FramebufferShaderGen.h | 5 +++++ 2 files changed, 11 insertions(+) diff --git a/Source/Core/VideoCommon/FramebufferShaderGen.cpp b/Source/Core/VideoCommon/FramebufferShaderGen.cpp index b3e641a14e..e2b712b115 100644 --- a/Source/Core/VideoCommon/FramebufferShaderGen.cpp +++ b/Source/Core/VideoCommon/FramebufferShaderGen.cpp @@ -1,5 +1,11 @@ +// Copyright 2019 Dolphin Emulator Project +// Licensed under GPLv2+ +// Refer to the license.txt file included. + #include "VideoCommon/FramebufferShaderGen.h" + #include + #include "VideoCommon/FramebufferManager.h" #include "VideoCommon/TextureDecoder.h" #include "VideoCommon/VertexShaderGen.h" diff --git a/Source/Core/VideoCommon/FramebufferShaderGen.h b/Source/Core/VideoCommon/FramebufferShaderGen.h index c6186a4aa3..6c937ab71e 100644 --- a/Source/Core/VideoCommon/FramebufferShaderGen.h +++ b/Source/Core/VideoCommon/FramebufferShaderGen.h @@ -1,4 +1,9 @@ +// Copyright 2019 Dolphin Emulator Project +// Licensed under GPLv2+ +// Refer to the license.txt file included. + #pragma once + #include #include "VideoCommon/VideoCommon.h"