Skip to content

Commit 53859d3

Browse files
FIX: Update License and comments
1 parent c114fb2 commit 53859d3

File tree

2 files changed

+52
-30
lines changed

2 files changed

+52
-30
lines changed

OpenGL/uopengl_graphikengine.pas

Lines changed: 27 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
(******************************************************************************)
2-
(* OpenGLGraphikEngine ver. 0.09 *)
2+
(* uOpenGLGraphikEngine.pas ??.??.???? *)
33
(* *)
4-
(* Autor : by Corpsman *)
4+
(* Version : 0.09 *)
55
(* *)
6-
(* Support : www.Corpsman.de *)
6+
(* Author : Uwe Schächterle (Corpsman) *)
77
(* *)
8-
(* License : This Unit is Freeware for non Commercial use only. *)
9-
(* *)
10-
(* Warranty : There is no warranty. *)
8+
(* Support : www.Corpsman.de *)
119
(* *)
1210
(* Description : This unit tries to help the user to use graphiks with OpenGL *)
1311
(* without the need of special knowlege in bitmanipulations. *)
@@ -16,16 +14,29 @@
1614
(* work not correct, please read the implementation part *)
1715
(* carefully before use. *)
1816
(* *)
19-
(* History : 0.01 - Initial version ( exported from balanced ) *)
20-
(* 0.02 - Hinzufügen der RenderBillboard Routine *)
21-
(* 0.03 - Ändern RenderQuad zur unterstützung für negative Width *)
22-
(* Damit Bugfix Spiegelungsbug für 180° rotation *)
23-
(* 0.04 - added glcolor() *)
24-
(* 0.05 - neuer Stretch mode Nearest Neighbour interpolation *)
25-
(* 0.06 - Methode RemoveGraphik *)
26-
(* 0.07 - LoadAlphaPNGGraphik *)
27-
(* 0.08 - Fix Memleaks *)
28-
(* 0.09 - Fix LoadAlphaColorGraphik *)
17+
(* License : See the file license.md, located under: *)
18+
(* https://github.com/PascalCorpsman/Software_Licenses/blob/main/license.md *)
19+
(* for details about the license. *)
20+
(* *)
21+
(* It is not allowed to change or remove this text from any *)
22+
(* source file of the project. *)
23+
(* *)
24+
(* Warranty : There is no warranty, neither in correctness of the *)
25+
(* implementation, nor anything other that could happen *)
26+
(* or go wrong, use at your own risk. *)
27+
(* *)
28+
(* Known Issues: none *)
29+
(* *)
30+
(* History : 0.01 - Initial version ( exported from balanced ) *)
31+
(* 0.02 - Hinzufügen der RenderBillboard Routine *)
32+
(* 0.03 - Ändern RenderQuad zur unterstützung für negative Width*)
33+
(* Damit Bugfix Spiegelungsbug für 180° rotation *)
34+
(* 0.04 - added glcolor() *)
35+
(* 0.05 - neuer Stretch mode Nearest Neighbour interpolation *)
36+
(* 0.06 - Methode RemoveGraphik *)
37+
(* 0.07 - LoadAlphaPNGGraphik *)
38+
(* 0.08 - Fix Memleaks *)
39+
(* 0.09 - Fix LoadAlphaColorGraphik *)
2940
(* *)
3041
(******************************************************************************)
3142
Unit uopengl_graphikengine;

graphics/ugraphics.pas

Lines changed: 25 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,36 @@
11
(******************************************************************************)
2-
(* uGraphiks ver. 0.08 *)
2+
(* uGraphiks.pas ??.??.???? *)
33
(* *)
4-
(* Autor : by Corpsman *)
4+
(* Version : 0.08 *)
55
(* *)
6-
(* Support : www.Corpsman.de *)
6+
(* Author : Uwe Schächterle (Corpsman) *)
77
(* *)
8-
(* License : This Unit is Freeware for non Commercial use only. *)
9-
(* *)
10-
(* Warranty : There is no warranty. *)
8+
(* Support : www.Corpsman.de *)
119
(* *)
1210
(* Description : This unit gives a lot of usefull helper functions for *)
1311
(* handling with bitmaps, canvas and color routines. *)
1412
(* *)
15-
(* History : 0.01 - initial version *)
16-
(* 0.02 - added "SwapColor", "Stretchdraw" *)
17-
(* 0.03 - added "ColorToRGBA" *)
18-
(* 0.04 - added "Color565ToRGB" *)
19-
(* 0.05 - Bugfix in Stretchdraw *)
20-
(* 0.06 - added Rotate*Degrees *)
21-
(* 0.07 - added LeftToRight *)
22-
(* 0.08 - added MulImage *)
13+
(* License : See the file license.md, located under: *)
14+
(* https://github.com/PascalCorpsman/Software_Licenses/blob/main/license.md *)
15+
(* for details about the license. *)
16+
(* *)
17+
(* It is not allowed to change or remove this text from any *)
18+
(* source file of the project. *)
19+
(* *)
20+
(* Warranty : There is no warranty, neither in correctness of the *)
21+
(* implementation, nor anything other that could happen *)
22+
(* or go wrong, use at your own risk. *)
23+
(* *)
24+
(* Known Issues: none *)
25+
(* *)
26+
(* History : 0.01 - initial version *)
27+
(* 0.02 - added "SwapColor", "Stretchdraw" *)
28+
(* 0.03 - added "ColorToRGBA" *)
29+
(* 0.04 - added "Color565ToRGB" *)
30+
(* 0.05 - Bugfix in Stretchdraw *)
31+
(* 0.06 - added Rotate*Degrees *)
32+
(* 0.07 - added LeftToRight *)
33+
(* 0.08 - added MulImage *)
2334
(* added aberation *)
2435
(* added vignetting *)
2536
(* added foldImage *)

0 commit comments

Comments
 (0)