소스 검색

* Add license header

Michaël Van Canneyt 1 년 전
부모
커밋
dca1368a19
5개의 변경된 파일76개의 추가작업 그리고 0개의 파일을 삭제
  1. 16 0
      src/wasm/fresnel.wasm.api.pp
  2. 15 0
      src/wasm/fresnel.wasm.app.pp
  3. 15 0
      src/wasm/fresnel.wasm.font.pp
  4. 15 0
      src/wasm/fresnel.wasm.render.pp
  5. 15 0
      src/wasm/fresnel.wasm.shared.pp

+ 16 - 0
src/wasm/fresnel.wasm.api.pp

@@ -1,3 +1,19 @@
+{
+    This file is part of the Fresnel Library.
+    Copyright (c) 2024 by the FPC & Lazarus teams.
+
+    Webassembly browser rendering API for Fresnel
+
+    See the file COPYING.modifiedLGPL.txt, included in this distribution,
+    for details about the copyright.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+
+ **********************************************************************}
+
+
 unit fresnel.wasm.api;
 
 {$mode objfpc}{$H+}

+ 15 - 0
src/wasm/fresnel.wasm.app.pp

@@ -1,3 +1,18 @@
+{
+    This file is part of the Fresnel Library.
+    Copyright (c) 2024 by the FPC & Lazarus teams.
+
+    Webassembly application & widgetset classes for Fresnel
+
+    See the file COPYING.modifiedLGPL.txt, included in this distribution,
+    for details about the copyright.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+
+ **********************************************************************}
+
 unit fresnel.wasm.app;
 
 {$mode objfpc}{$H+}

+ 15 - 0
src/wasm/fresnel.wasm.font.pp

@@ -1,3 +1,18 @@
+{
+    This file is part of the Fresnel Library.
+    Copyright (c) 2024 by the FPC & Lazarus teams.
+
+    Webassembly font handling classes for Fresnel
+
+    See the file COPYING.modifiedLGPL.txt, included in this distribution,
+    for details about the copyright.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+
+ **********************************************************************}
+
 unit fresnel.wasm.font;
 
 {$mode objfpc}{$H+}

+ 15 - 0
src/wasm/fresnel.wasm.render.pp

@@ -1,3 +1,18 @@
+{
+    This file is part of the Fresnel Library.
+    Copyright (c) 2024 by the FPC & Lazarus teams.
+
+    Webassembly rendering classes for Fresnel
+
+    See the file COPYING.modifiedLGPL.txt, included in this distribution,
+    for details about the copyright.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+
+ **********************************************************************}
+
 unit fresnel.wasm.render;
 
 {$mode objfpc}{$H+}

+ 15 - 0
src/wasm/fresnel.wasm.shared.pp

@@ -1,3 +1,18 @@
+{
+    This file is part of the Fresnel Library.
+    Copyright (c) 2024 by the FPC & Lazarus teams.
+
+    Webassembly rendering - common consts for Fresnel
+
+    See the file COPYING.modifiedLGPL.txt, included in this distribution,
+    for details about the copyright.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+
+ **********************************************************************}
+
 unit fresnel.wasm.shared;
 
 {$mode objfpc}{$H+}