Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit bc3ba02

Browse files
committed
[[ RefactorGraphics ]] Moved spread code to separate file as it is licensed differently.
[[ RefactorGraphics ]] Added community license header to all source files.
1 parent 8141c1d commit bc3ba02

File tree

17 files changed

+563
-392
lines changed

17 files changed

+563
-392
lines changed

libgraphics/include/graphics.h

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/* Copyright (C) 2003-2013 Runtime Revolution Ltd.
2+
3+
This file is part of LiveCode.
4+
5+
LiveCode is free software; you can redistribute it and/or modify it under
6+
the terms of the GNU General Public License v3 as published by the Free
7+
Software Foundation.
8+
9+
LiveCode is distributed in the hope that it will be useful, but WITHOUT ANY
10+
WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
for more details.
13+
14+
You should have received a copy of the GNU General Public License
15+
along with LiveCode. If not see <http://www.gnu.org/licenses/>. */
16+
117
#ifndef __MC_GRAPHICS__
218
#define __MC_GRAPHICS__
319

libgraphics/libgraphics.xcodeproj/project.pbxproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
4CAFB58E17C5041E0076F2ED /* osxtext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4CAFB58C17C504100076F2ED /* osxtext.cpp */; };
1717
4CF7963617D6249F009DDCC2 /* legacyblendmodes.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4CF7963517D6249F009DDCC2 /* legacyblendmodes.cpp */; };
1818
4D6762EC17C3B3D600EE62C2 /* blur.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D6762EB17C3B3D600EE62C2 /* blur.cpp */; };
19+
4D67C5C918159D99007DE3B2 /* spread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D67C5C818159D99007DE3B2 /* spread.cpp */; };
1920
/* End PBXBuildFile section */
2021

2122
/* Begin PBXCopyFilesBuildPhase section */
@@ -46,6 +47,7 @@
4647
4CAFB58D17C504100076F2ED /* w32text.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = w32text.cpp; path = src/w32text.cpp; sourceTree = "<group>"; };
4748
4CF7963517D6249F009DDCC2 /* legacyblendmodes.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = legacyblendmodes.cpp; path = src/legacyblendmodes.cpp; sourceTree = "<group>"; };
4849
4D6762EB17C3B3D600EE62C2 /* blur.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = blur.cpp; path = src/blur.cpp; sourceTree = "<group>"; };
50+
4D67C5C818159D99007DE3B2 /* spread.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = spread.cpp; path = src/spread.cpp; sourceTree = "<group>"; };
4951
4DCDCA230B80890D0040D436 /* Release.xcconfig */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = ../rules/Release.xcconfig; sourceTree = SOURCE_ROOT; };
5052
4DCDCA240B80890D0040D436 /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = ../rules/Debug.xcconfig; sourceTree = SOURCE_ROOT; };
5153
4DCDCA320B8089D00040D436 /* Global.xcconfig */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.xcconfig; name = Global.xcconfig; path = ../rules/Global.xcconfig; sourceTree = SOURCE_ROOT; };
@@ -91,6 +93,7 @@
9193
4C03161A17D4D7BB00D6BDB7 /* cachetable.cpp */,
9294
4CF7963517D6249F009DDCC2 /* legacyblendmodes.cpp */,
9395
4C313A9418059BE1004232E1 /* legacygradients.cpp */,
96+
4D67C5C818159D99007DE3B2 /* spread.cpp */,
9497
);
9598
name = Source;
9699
sourceTree = "<group>";
@@ -179,6 +182,7 @@
179182
4C03161B17D4D7BB00D6BDB7 /* cachetable.cpp in Sources */,
180183
4CF7963617D6249F009DDCC2 /* legacyblendmodes.cpp in Sources */,
181184
4C313A9518059BE1004232E1 /* legacygradients.cpp in Sources */,
185+
4D67C5C918159D99007DE3B2 /* spread.cpp in Sources */,
182186
);
183187
runOnlyForDeploymentPostprocessing = 0;
184188
};

0 commit comments

Comments
 (0)