diff --git a/AGENTS.md b/AGENTS.md index 1d803d4e45..ca5e72474d 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -37,6 +37,8 @@ - TypeScript strict mode - We end lines with semicolons - Single quotes +- First-party source files with `SPDX-License-Identifier` must also declare each actual copyright holder using `SPDX-FileCopyrightText`. +- Preserve existing license expressions and upstream attribution; do not infer MIT licensing or ownership for generated, vendored, or third-party files. - Never abbreviate variables, always type out the full name in camelCase (variables, functions, fields), PascalCase (types), CAPITAL_CASE (constant) - Prefer verbNoun structure for function and method names. - Keep shipped runtime validation minimal to protect bundle size. Prefer static typing and simple assertions over heavy validation or verbose runtime error paths. diff --git a/docs/api-reference/shadertools/shader-modules/pbr-material.md b/docs/api-reference/shadertools/shader-modules/pbr-material.md index 66ddb85271..b5062d716b 100644 --- a/docs/api-reference/shadertools/shader-modules/pbr-material.md +++ b/docs/api-reference/shadertools/shader-modules/pbr-material.md @@ -22,9 +22,19 @@ details on how grouped bindings are declared and supplied. - [Real Shading in Unreal Engine 4](http://blog.selfshadow.com/publications/s2013-shading-course/karis/s2013_pbs_epic_notes_v2.pdf) - [Physically Based Shading at Disney](http://blog.selfshadow.com/publications/s2012-shading-course/burley/s2012_pbs_disney_brdf_notes_v3.pdf) -- [README.md - Environment Maps](https://github.com/KhronosGroup/glTF-WebGL-PBR/#environment-maps) +- [README.md - Environment Maps](https://github.com/KhronosGroup/glTF-Sample-Viewer/blob/88eda8c5358efe03128b72b6c5f5f6e5b6d023e1/README.md#environment-maps) - ["An Inexpensive BRDF Model for Physically based Rendering" by Christophe Schlick](https://www.cs.virginia.edu/~jdl/bib/appearance/analytic%20models/schlick94b.pdf) ## Attribution -This implementation of PBR (Physically-Based Rendering) is a fork of the [Khronos Reference Implementation](https://github.com/KhronosGroup/glTF-WebGL-PBR) under the Apache 2.0 license. +The GLSL and WGSL material shaders derive from the historical +[Khronos glTF-WebGL-PBR reference shader](https://github.com/KhronosGroup/glTF-Sample-Viewer/blob/88eda8c5358efe03128b72b6c5f5f6e5b6d023e1/shaders/pbr-frag.glsl). +The version incorporated into luma.gl was distributed under the +[MIT License](https://github.com/KhronosGroup/glTF-Sample-Viewer/blob/88eda8c5358efe03128b72b6c5f5f6e5b6d023e1/LICENSE.md) +with `Copyright (c) 2016-2017 Mohamad Moneimne and Contributors`. Both shaders preserve that +upstream copyright alongside the vis.gl contributors' additions and remain MIT-licensed. + +The upstream project has since been renamed +[glTF Sample Viewer](https://github.com/KhronosGroup/glTF-Sample-Viewer), and its current releases +use the [Apache License 2.0](https://github.com/KhronosGroup/glTF-Sample-Viewer/blob/main/LICENSE.md). +That later license does not replace the MIT terms attached to the historical version used here. diff --git a/examples/api/blending/app.ts b/examples/api/blending/app.ts index a6411e106d..59a4da1313 100644 --- a/examples/api/blending/app.ts +++ b/examples/api/blending/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { Texture, diff --git a/examples/api/cubemap/app.ts b/examples/api/cubemap/app.ts index 30d737a8a8..21698b1605 100644 --- a/examples/api/cubemap/app.ts +++ b/examples/api/cubemap/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {NumberArray3, NumberArray16} from '@math.gl/types'; import {Device} from '@luma.gl/core'; diff --git a/examples/api/cubemap/cubemap-cube.ts b/examples/api/cubemap/cubemap-cube.ts index e156a255dc..b205a30054 100644 --- a/examples/api/cubemap/cubemap-cube.ts +++ b/examples/api/cubemap/cubemap-cube.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright... +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Model, type ModelProps, DynamicTexture, CubeGeometry, ShaderInputs} from '@luma.gl/engine'; import type {Device, Texture} from '@luma.gl/core'; diff --git a/examples/api/multi-canvas/app.tsx b/examples/api/multi-canvas/app.tsx index adf6b79400..8a113b18e4 100644 --- a/examples/api/multi-canvas/app.tsx +++ b/examples/api/multi-canvas/app.tsx @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import React from 'react'; import {createRoot, type Root} from 'react-dom/client'; diff --git a/examples/api/render-bundles/app.ts b/examples/api/render-bundles/app.ts index 72240c16e7..21689059f4 100644 --- a/examples/api/render-bundles/app.ts +++ b/examples/api/render-bundles/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Bindings, BindingsByGroup, RenderBundle, RenderPass} from '@luma.gl/core'; import {Buffer, Device, normalizeBindingsByGroup} from '@luma.gl/core'; diff --git a/examples/api/texture-compressed/app.ts b/examples/api/texture-compressed/app.ts index b016860b80..67f9f6c761 100644 --- a/examples/api/texture-compressed/app.ts +++ b/examples/api/texture-compressed/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type { Device, diff --git a/examples/api/texture-sampling/app.ts b/examples/api/texture-sampling/app.ts index 5381f8d8eb..ada60f5e28 100644 --- a/examples/api/texture-sampling/app.ts +++ b/examples/api/texture-sampling/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { Texture, diff --git a/examples/api/texture-tester/app.tsx b/examples/api/texture-tester/app.tsx index 10ffa18ff1..94d80eae9e 100644 --- a/examples/api/texture-tester/app.tsx +++ b/examples/api/texture-tester/app.tsx @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import React from 'react'; import {createRoot, type Root} from 'react-dom/client'; diff --git a/examples/api/texture-tester/components/compressed-texture.tsx b/examples/api/texture-tester/components/compressed-texture.tsx index 8476165df4..2712d168f2 100644 --- a/examples/api/texture-tester/components/compressed-texture.tsx +++ b/examples/api/texture-tester/components/compressed-texture.tsx @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import * as React from 'react'; diff --git a/examples/api/texture-tester/textures-data.ts b/examples/api/texture-tester/textures-data.ts index 9bddfff1c1..79e864d3d4 100644 --- a/examples/api/texture-tester/textures-data.ts +++ b/examples/api/texture-tester/textures-data.ts @@ -1,6 +1,6 @@ // loaders.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export type TextureFormatsInfo = { formatName: string; diff --git a/examples/api/video-texture/app.ts b/examples/api/video-texture/app.ts index cc70500e2b..1b75d46021 100644 --- a/examples/api/video-texture/app.ts +++ b/examples/api/video-texture/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ExternalTexture, NumberArray, VariableShaderType} from '@luma.gl/core'; import {Texture, UniformStore} from '@luma.gl/core'; diff --git a/examples/arrow/arrow-columns/app.ts b/examples/arrow/arrow-columns/app.ts index 4cfb2df355..9f9382e275 100644 --- a/examples/arrow/arrow-columns/app.ts +++ b/examples/arrow/arrow-columns/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type Device, type Framebuffer, Texture} from '@luma.gl/core'; import type {AnimationProps} from '@luma.gl/engine'; diff --git a/examples/arrow/arrow-columns/arrow-column-data-source.ts b/examples/arrow/arrow-columns/arrow-column-data-source.ts index 4efceee4a4..ff5c238ce7 100644 --- a/examples/arrow/arrow-columns/arrow-column-data-source.ts +++ b/examples/arrow/arrow-columns/arrow-column-data-source.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {loadArrowColumnSourceData, type ArrowColumnSourceData} from './arrow-column-data'; import {formatArrowColumnRendererMetrics} from './arrow-column-metrics'; diff --git a/examples/arrow/arrow-columns/arrow-column-data.ts b/examples/arrow/arrow-columns/arrow-column-data.ts index 9ffdff66a2..be8b817b2f 100644 --- a/examples/arrow/arrow-columns/arrow-column-data.ts +++ b/examples/arrow/arrow-columns/arrow-column-data.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {packDggsH3CellKey} from '@luma.gl/arrow'; import * as arrow from 'apache-arrow'; diff --git a/examples/arrow/arrow-columns/arrow-column-metrics.ts b/examples/arrow/arrow-columns/arrow-column-metrics.ts index 1fcf5f4465..0d160a4e13 100644 --- a/examples/arrow/arrow-columns/arrow-column-metrics.ts +++ b/examples/arrow/arrow-columns/arrow-column-metrics.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ArrowColumnRendererMetrics} from './arrow-column-renderer'; diff --git a/examples/arrow/arrow-columns/arrow-column-renderer.ts b/examples/arrow/arrow-columns/arrow-column-renderer.ts index 828b530f95..cff4ae842f 100644 --- a/examples/arrow/arrow-columns/arrow-column-renderer.ts +++ b/examples/arrow/arrow-columns/arrow-column-renderer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { getRequiredArrowGPUVectorDataType, diff --git a/examples/arrow/arrow-columns/column-renderer-geometry.ts b/examples/arrow/arrow-columns/column-renderer-geometry.ts index e55d243ca7..806c5c4768 100644 --- a/examples/arrow/arrow-columns/column-renderer-geometry.ts +++ b/examples/arrow/arrow-columns/column-renderer-geometry.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {makeGPUVectorFromArrow} from '@luma.gl/arrow'; import {Buffer, type Binding, type Device, type ShaderLayout} from '@luma.gl/core'; diff --git a/examples/arrow/arrow-columns/column-renderer-shaders.ts b/examples/arrow/arrow-columns/column-renderer-shaders.ts index a794b255de..5c59ee9a42 100644 --- a/examples/arrow/arrow-columns/column-renderer-shaders.ts +++ b/examples/arrow/arrow-columns/column-renderer-shaders.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type ShaderLayout} from '@luma.gl/core'; import {type ShaderModule} from '@luma.gl/shadertools'; diff --git a/examples/arrow/arrow-columns/control-panel.ts b/examples/arrow/arrow-columns/control-panel.ts index 321d2cb47c..3359640d1e 100644 --- a/examples/arrow/arrow-columns/control-panel.ts +++ b/examples/arrow/arrow-columns/control-panel.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Panel, SettingsChangeDescriptor, SettingsSchema} from '@deck.gl-community/panels'; import { diff --git a/examples/arrow/arrow-dggs-polygons/app.ts b/examples/arrow/arrow-dggs-polygons/app.ts index aa40f859e1..06c836f5bc 100644 --- a/examples/arrow/arrow-dggs-polygons/app.ts +++ b/examples/arrow/arrow-dggs-polygons/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {AnimationProps} from '@luma.gl/engine'; import {ArrowDggsPolygonDataSourceController} from './arrow-dggs-polygon-data-source'; diff --git a/examples/arrow/arrow-dggs-polygons/arrow-dggs-polygon-data-source.ts b/examples/arrow/arrow-dggs-polygons/arrow-dggs-polygon-data-source.ts index 092302ef3b..14585f6197 100644 --- a/examples/arrow/arrow-dggs-polygons/arrow-dggs-polygon-data-source.ts +++ b/examples/arrow/arrow-dggs-polygons/arrow-dggs-polygon-data-source.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {DggsCellEncoding} from '@luma.gl/arrow'; import type {Device} from '@luma.gl/core'; diff --git a/examples/arrow/arrow-dggs-polygons/arrow-dggs-polygon-metrics.ts b/examples/arrow/arrow-dggs-polygons/arrow-dggs-polygon-metrics.ts index 4eebf5ccd9..dd8588e88d 100644 --- a/examples/arrow/arrow-dggs-polygons/arrow-dggs-polygon-metrics.ts +++ b/examples/arrow/arrow-dggs-polygons/arrow-dggs-polygon-metrics.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ArrowDggsPolygonRendererMetrics} from './arrow-dggs-polygon-renderer'; import type {ArrowDggsPolygonsControlPanelMetrics} from './control-panel'; diff --git a/examples/arrow/arrow-dggs-polygons/arrow-dggs-polygon-renderer.ts b/examples/arrow/arrow-dggs-polygons/arrow-dggs-polygon-renderer.ts index fa96c1e032..c919f9cc8e 100644 --- a/examples/arrow/arrow-dggs-polygons/arrow-dggs-polygon-renderer.ts +++ b/examples/arrow/arrow-dggs-polygons/arrow-dggs-polygon-renderer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { packDggsA5CellKey, diff --git a/examples/arrow/arrow-dggs-polygons/control-panel.ts b/examples/arrow/arrow-dggs-polygons/control-panel.ts index 33128b58f7..b282aca3d7 100644 --- a/examples/arrow/arrow-dggs-polygons/control-panel.ts +++ b/examples/arrow/arrow-dggs-polygons/control-panel.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {DggsCellEncoding} from '@luma.gl/arrow'; import { diff --git a/examples/arrow/arrow-dggs-polygons/dggs-polygon-model-shaders.ts b/examples/arrow/arrow-dggs-polygons/dggs-polygon-model-shaders.ts index 0f394327ad..6b8983f5c5 100644 --- a/examples/arrow/arrow-dggs-polygons/dggs-polygon-model-shaders.ts +++ b/examples/arrow/arrow-dggs-polygons/dggs-polygon-model-shaders.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderModule} from '@luma.gl/shadertools'; diff --git a/examples/arrow/arrow-dggs-polygons/dggs-polygon-model.ts b/examples/arrow/arrow-dggs-polygons/dggs-polygon-model.ts index 6a1a7e241a..d08dad7d97 100644 --- a/examples/arrow/arrow-dggs-polygons/dggs-polygon-model.ts +++ b/examples/arrow/arrow-dggs-polygons/dggs-polygon-model.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {PreparedDggsCellPathGPUVector} from '@luma.gl/arrow'; import type {Device} from '@luma.gl/core'; diff --git a/examples/arrow/arrow-example-input.ts b/examples/arrow/arrow-example-input.ts index bae9e05f92..981401ffd9 100644 --- a/examples/arrow/arrow-example-input.ts +++ b/examples/arrow/arrow-example-input.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** Arrow source shapes demonstrated by both luma.gl and deck.gl examples. */ export type ArrowExampleInputMode = 'stream' | 'table' | 'vectors'; diff --git a/examples/arrow/arrow-example-panels.ts b/examples/arrow/arrow-example-panels.ts index 6d4455f41a..77fe24425b 100644 --- a/examples/arrow/arrow-example-panels.ts +++ b/examples/arrow/arrow-example-panels.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { ArrowBatchesPanel, diff --git a/examples/arrow/arrow-filtering/app.ts b/examples/arrow/arrow-filtering/app.ts index 494052f7b0..e2d42bb720 100644 --- a/examples/arrow/arrow-filtering/app.ts +++ b/examples/arrow/arrow-filtering/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {AnimationProps} from '@luma.gl/engine'; import {AnimationLoopTemplate} from '@luma.gl/engine'; diff --git a/examples/arrow/arrow-filtering/arrow-filtering-data-source.ts b/examples/arrow/arrow-filtering/arrow-filtering-data-source.ts index 282f1f346c..0b08091987 100644 --- a/examples/arrow/arrow-filtering/arrow-filtering-data-source.ts +++ b/examples/arrow/arrow-filtering/arrow-filtering-data-source.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {makeArrowFilteringTable, type ArrowFilteringTable} from './arrow-filtering-data'; import {ArrowFilteringControlPanel, type ArrowFilteringControlState} from './control-panel'; diff --git a/examples/arrow/arrow-filtering/arrow-filtering-data.ts b/examples/arrow/arrow-filtering/arrow-filtering-data.ts index 9985904267..c1d42f6a64 100644 --- a/examples/arrow/arrow-filtering/arrow-filtering-data.ts +++ b/examples/arrow/arrow-filtering/arrow-filtering-data.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {makeArrowFixedSizeListVector} from '@luma.gl/arrow'; import * as arrow from 'apache-arrow'; diff --git a/examples/arrow/arrow-filtering/arrow-filtering-renderer.ts b/examples/arrow/arrow-filtering/arrow-filtering-renderer.ts index 853ef7d262..435f0be8a5 100644 --- a/examples/arrow/arrow-filtering/arrow-filtering-renderer.ts +++ b/examples/arrow/arrow-filtering/arrow-filtering-renderer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {makeGPUTableFromArrowTable} from '@luma.gl/arrow'; import type {Device, RenderPass, ShaderLayout} from '@luma.gl/core'; diff --git a/examples/arrow/arrow-filtering/control-panel.ts b/examples/arrow/arrow-filtering/control-panel.ts index 38c519c621..81451644a2 100644 --- a/examples/arrow/arrow-filtering/control-panel.ts +++ b/examples/arrow/arrow-filtering/control-panel.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Panel, SettingsChangeDescriptor, SettingsSchema} from '@deck.gl-community/panels'; import { diff --git a/examples/arrow/arrow-float64-precision/app.ts b/examples/arrow/arrow-float64-precision/app.ts index bdf6171c17..6c0c4a046d 100644 --- a/examples/arrow/arrow-float64-precision/app.ts +++ b/examples/arrow/arrow-float64-precision/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import type {AnimationProps} from '@luma.gl/engine'; diff --git a/examples/arrow/arrow-float64-precision/arrow-float64-precision-data-source.ts b/examples/arrow/arrow-float64-precision/arrow-float64-precision-data-source.ts index db9172c1d0..c04f56dc0e 100644 --- a/examples/arrow/arrow-float64-precision/arrow-float64-precision-data-source.ts +++ b/examples/arrow/arrow-float64-precision/arrow-float64-precision-data-source.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { makeArrowFloat64PrecisionSourceData, diff --git a/examples/arrow/arrow-float64-precision/arrow-float64-precision-data.ts b/examples/arrow/arrow-float64-precision/arrow-float64-precision-data.ts index 9d8aae1897..825e51e008 100644 --- a/examples/arrow/arrow-float64-precision/arrow-float64-precision-data.ts +++ b/examples/arrow/arrow-float64-precision/arrow-float64-precision-data.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {getArrowVectorByteLength, makeArrowFixedSizeListVector} from '@luma.gl/arrow'; import * as arrow from 'apache-arrow'; diff --git a/examples/arrow/arrow-float64-precision/arrow-float64-precision-renderer.ts b/examples/arrow/arrow-float64-precision/arrow-float64-precision-renderer.ts index dc5e40bafc..74cecbc881 100644 --- a/examples/arrow/arrow-float64-precision/arrow-float64-precision-renderer.ts +++ b/examples/arrow/arrow-float64-precision/arrow-float64-precision-renderer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { ArrowPathRenderer, diff --git a/examples/arrow/arrow-float64-precision/arrow-float64-precision-shaders.ts b/examples/arrow/arrow-float64-precision/arrow-float64-precision-shaders.ts index e590b0a34c..7cda1b1320 100644 --- a/examples/arrow/arrow-float64-precision/arrow-float64-precision-shaders.ts +++ b/examples/arrow/arrow-float64-precision/arrow-float64-precision-shaders.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderLayout} from '@luma.gl/core'; import {ShaderInputs} from '@luma.gl/engine'; diff --git a/examples/arrow/arrow-float64-precision/control-panel.ts b/examples/arrow/arrow-float64-precision/control-panel.ts index 0408f1a53c..13daaf61de 100644 --- a/examples/arrow/arrow-float64-precision/control-panel.ts +++ b/examples/arrow/arrow-float64-precision/control-panel.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { type Panel, diff --git a/examples/arrow/arrow-geoarrow/app.ts b/examples/arrow/arrow-geoarrow/app.ts index e50d24fb0b..f97fc584ea 100644 --- a/examples/arrow/arrow-geoarrow/app.ts +++ b/examples/arrow/arrow-geoarrow/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import type {AnimationProps} from '@luma.gl/engine'; diff --git a/examples/arrow/arrow-geoarrow/control-panel.ts b/examples/arrow/arrow-geoarrow/control-panel.ts index 3c7840bbee..4ac9ad38ea 100644 --- a/examples/arrow/arrow-geoarrow/control-panel.ts +++ b/examples/arrow/arrow-geoarrow/control-panel.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Panel} from '@deck.gl-community/panels'; import {makeHtmlCustomPanel} from '../../example-panels'; diff --git a/examples/arrow/arrow-geoarrow/geoarrow-data-source.ts b/examples/arrow/arrow-geoarrow/geoarrow-data-source.ts index d66f640cb2..35ba00dce9 100644 --- a/examples/arrow/arrow-geoarrow/geoarrow-data-source.ts +++ b/examples/arrow/arrow-geoarrow/geoarrow-data-source.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {makeGeoArrowExampleData, type GeoArrowExampleData} from './geoarrow-data'; import type {GeoArrowRenderer} from './geoarrow-renderer'; diff --git a/examples/arrow/arrow-geoarrow/geoarrow-data.ts b/examples/arrow/arrow-geoarrow/geoarrow-data.ts index 365174a960..f94c3d577d 100644 --- a/examples/arrow/arrow-geoarrow/geoarrow-data.ts +++ b/examples/arrow/arrow-geoarrow/geoarrow-data.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {getArrowVectorByteLength, makeArrowFixedSizeListVector} from '@luma.gl/arrow'; import * as arrow from 'apache-arrow'; diff --git a/examples/arrow/arrow-geoarrow/geoarrow-renderer.ts b/examples/arrow/arrow-geoarrow/geoarrow-renderer.ts index fefcd96de2..116f932f95 100644 --- a/examples/arrow/arrow-geoarrow/geoarrow-renderer.ts +++ b/examples/arrow/arrow-geoarrow/geoarrow-renderer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import * as arrow from 'apache-arrow'; import type {CommandEncoder, Device, RenderPass} from '@luma.gl/core'; diff --git a/examples/arrow/arrow-instancing/app.ts b/examples/arrow/arrow-instancing/app.ts index 2f8cc853b3..fca39a761e 100644 --- a/examples/arrow/arrow-instancing/app.ts +++ b/examples/arrow/arrow-instancing/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {AnimationProps} from '@luma.gl/engine'; import {ArrowInstancingDataSourceController} from './arrow-instancing-data-source'; diff --git a/examples/arrow/arrow-instancing/arrow-instanced-mesh-renderer.ts b/examples/arrow/arrow-instancing/arrow-instanced-mesh-renderer.ts index fe61c1fba6..6083321fe6 100644 --- a/examples/arrow/arrow-instancing/arrow-instanced-mesh-renderer.ts +++ b/examples/arrow/arrow-instancing/arrow-instanced-mesh-renderer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { createArrowPickingManager, diff --git a/examples/arrow/arrow-instancing/arrow-instancing-data-source.ts b/examples/arrow/arrow-instancing/arrow-instancing-data-source.ts index 88bbd6bc5c..087049bc1a 100644 --- a/examples/arrow/arrow-instancing/arrow-instancing-data-source.ts +++ b/examples/arrow/arrow-instancing/arrow-instancing-data-source.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import type {AnimationProps} from '@luma.gl/engine'; diff --git a/examples/arrow/arrow-instancing/control-panel.ts b/examples/arrow/arrow-instancing/control-panel.ts index e6c8c368d7..6c0269f296 100644 --- a/examples/arrow/arrow-instancing/control-panel.ts +++ b/examples/arrow/arrow-instancing/control-panel.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { type Panel, diff --git a/examples/arrow/arrow-lines/app.ts b/examples/arrow/arrow-lines/app.ts index 04716732fc..cb7a4abd1a 100644 --- a/examples/arrow/arrow-lines/app.ts +++ b/examples/arrow/arrow-lines/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {AnimationProps} from '@luma.gl/engine'; import {ArrowLineDataSourceController} from './arrow-line-data-source'; diff --git a/examples/arrow/arrow-lines/arrow-line-data-source.ts b/examples/arrow/arrow-lines/arrow-line-data-source.ts index 4b5b1a5e8f..a24a27304a 100644 --- a/examples/arrow/arrow-lines/arrow-line-data-source.ts +++ b/examples/arrow/arrow-lines/arrow-line-data-source.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import type {AnimationProps} from '@luma.gl/engine'; diff --git a/examples/arrow/arrow-lines/arrow-line-data.ts b/examples/arrow/arrow-lines/arrow-line-data.ts index b1d75bc567..8ed26fc826 100644 --- a/examples/arrow/arrow-lines/arrow-line-data.ts +++ b/examples/arrow/arrow-lines/arrow-line-data.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {getArrowVectorByteLength, makeArrowFixedSizeListVector} from '@luma.gl/arrow'; import * as arrow from 'apache-arrow'; diff --git a/examples/arrow/arrow-lines/arrow-line-metrics.ts b/examples/arrow/arrow-lines/arrow-line-metrics.ts index db7e5778c1..cdcfb6c168 100644 --- a/examples/arrow/arrow-lines/arrow-line-metrics.ts +++ b/examples/arrow/arrow-lines/arrow-line-metrics.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {PathStorageModel, PathTripsStorageModel, type GPUVector} from '@luma.gl/tables'; import type {ArrowLineControlPanelMetrics} from './control-panel'; diff --git a/examples/arrow/arrow-lines/arrow-line-renderer.ts b/examples/arrow/arrow-lines/arrow-line-renderer.ts index 7d0191acba..bb651048dc 100644 --- a/examples/arrow/arrow-lines/arrow-line-renderer.ts +++ b/examples/arrow/arrow-lines/arrow-line-renderer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { ArrowPathRenderer, diff --git a/examples/arrow/arrow-lines/arrow-line-shaders.ts b/examples/arrow/arrow-lines/arrow-line-shaders.ts index 1e55afee4f..21c295e97b 100644 --- a/examples/arrow/arrow-lines/arrow-line-shaders.ts +++ b/examples/arrow/arrow-lines/arrow-line-shaders.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderLayout} from '@luma.gl/core'; import {ShaderInputs} from '@luma.gl/engine'; diff --git a/examples/arrow/arrow-lines/control-panel.ts b/examples/arrow/arrow-lines/control-panel.ts index 8a052192b7..13b5fbd92e 100644 --- a/examples/arrow/arrow-lines/control-panel.ts +++ b/examples/arrow/arrow-lines/control-panel.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import { diff --git a/examples/arrow/arrow-mesh-geometry/app.ts b/examples/arrow/arrow-mesh-geometry/app.ts index e0abc96fea..6b3f610653 100644 --- a/examples/arrow/arrow-mesh-geometry/app.ts +++ b/examples/arrow/arrow-mesh-geometry/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {AnimationProps} from '@luma.gl/engine'; import {ArrowMeshGeometryDataSourceController} from './arrow-mesh-geometry-data-source'; diff --git a/examples/arrow/arrow-mesh-geometry/arrow-mesh-geometry-data-source.ts b/examples/arrow/arrow-mesh-geometry/arrow-mesh-geometry-data-source.ts index da44c97feb..2ff9dc341c 100644 --- a/examples/arrow/arrow-mesh-geometry/arrow-mesh-geometry-data-source.ts +++ b/examples/arrow/arrow-mesh-geometry/arrow-mesh-geometry-data-source.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import type {AnimationProps} from '@luma.gl/engine'; diff --git a/examples/arrow/arrow-mesh-geometry/arrow-mesh-geometry-renderer.ts b/examples/arrow/arrow-mesh-geometry/arrow-mesh-geometry-renderer.ts index aa0b77f6a2..fa33135518 100644 --- a/examples/arrow/arrow-mesh-geometry/arrow-mesh-geometry-renderer.ts +++ b/examples/arrow/arrow-mesh-geometry/arrow-mesh-geometry-renderer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { expandArrowVector, diff --git a/examples/arrow/arrow-mesh-geometry/control-panel.ts b/examples/arrow/arrow-mesh-geometry/control-panel.ts index 7412d2ce55..5a0cea1ba0 100644 --- a/examples/arrow/arrow-mesh-geometry/control-panel.ts +++ b/examples/arrow/arrow-mesh-geometry/control-panel.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export function makeArrowMeshGeometryControlPanelHtml(cubeCount: number): string { return ` diff --git a/examples/arrow/arrow-mesh-geometry/mesh-geometry-model-shaders.ts b/examples/arrow/arrow-mesh-geometry/mesh-geometry-model-shaders.ts index 308a3b6523..8152bd68e2 100644 --- a/examples/arrow/arrow-mesh-geometry/mesh-geometry-model-shaders.ts +++ b/examples/arrow/arrow-mesh-geometry/mesh-geometry-model-shaders.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderLayout} from '@luma.gl/core'; import type {ShaderModule} from '@luma.gl/shadertools'; diff --git a/examples/arrow/arrow-mesh-geometry/mesh-geometry-model.ts b/examples/arrow/arrow-mesh-geometry/mesh-geometry-model.ts index 7192be2f24..0445c58226 100644 --- a/examples/arrow/arrow-mesh-geometry/mesh-geometry-model.ts +++ b/examples/arrow/arrow-mesh-geometry/mesh-geometry-model.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { getArrowPickingModule, diff --git a/examples/arrow/arrow-particles/app.ts b/examples/arrow/arrow-particles/app.ts index 52f80e51ed..9d919f6a08 100644 --- a/examples/arrow/arrow-particles/app.ts +++ b/examples/arrow/arrow-particles/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import type {AnimationProps} from '@luma.gl/engine'; diff --git a/examples/arrow/arrow-particles/arrow-particle-data-source.ts b/examples/arrow/arrow-particles/arrow-particle-data-source.ts index cea7dcd3a1..4b212778fe 100644 --- a/examples/arrow/arrow-particles/arrow-particle-data-source.ts +++ b/examples/arrow/arrow-particles/arrow-particle-data-source.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { createStreamingParticleRecordBatchIterator, diff --git a/examples/arrow/arrow-particles/arrow-particle-data.ts b/examples/arrow/arrow-particles/arrow-particle-data.ts index cb7c4040cd..3de84c189a 100644 --- a/examples/arrow/arrow-particles/arrow-particle-data.ts +++ b/examples/arrow/arrow-particles/arrow-particle-data.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {makeArrowFixedSizeListVector} from '@luma.gl/arrow'; import * as arrow from 'apache-arrow'; diff --git a/examples/arrow/arrow-particles/arrow-particle-renderer.ts b/examples/arrow/arrow-particles/arrow-particle-renderer.ts index e67e5a2348..3f44f9ba29 100644 --- a/examples/arrow/arrow-particles/arrow-particle-renderer.ts +++ b/examples/arrow/arrow-particles/arrow-particle-renderer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { getArrowFixedSizeListValues, diff --git a/examples/arrow/arrow-particles/arrow-particle-shaders.ts b/examples/arrow/arrow-particles/arrow-particle-shaders.ts index 2c5159d4b5..2b31de5076 100644 --- a/examples/arrow/arrow-particles/arrow-particle-shaders.ts +++ b/examples/arrow/arrow-particles/arrow-particle-shaders.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ComputeShaderLayout, ShaderLayout} from '@luma.gl/core'; diff --git a/examples/arrow/arrow-particles/control-panel.ts b/examples/arrow/arrow-particles/control-panel.ts index 43320f86df..9d3979a3c2 100644 --- a/examples/arrow/arrow-particles/control-panel.ts +++ b/examples/arrow/arrow-particles/control-panel.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors const STREAMING_BATCH_STATUS_ROW_ID = 'arrow-particles-streaming-status-row'; const STREAMING_BATCH_FILL_ID = 'arrow-particles-streaming-fill'; diff --git a/examples/arrow/arrow-points/app.ts b/examples/arrow/arrow-points/app.ts index 49f0ff7464..7a2dc3acd8 100644 --- a/examples/arrow/arrow-points/app.ts +++ b/examples/arrow/arrow-points/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import type {AnimationProps} from '@luma.gl/engine'; diff --git a/examples/arrow/arrow-points/arrow-point-data-source.ts b/examples/arrow/arrow-points/arrow-point-data-source.ts index badf8bb93e..2f03bc2df7 100644 --- a/examples/arrow/arrow-points/arrow-point-data-source.ts +++ b/examples/arrow/arrow-points/arrow-point-data-source.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import type { diff --git a/examples/arrow/arrow-points/arrow-point-generator.ts b/examples/arrow/arrow-points/arrow-point-generator.ts index df9fc04007..3d2e4b0502 100644 --- a/examples/arrow/arrow-points/arrow-point-generator.ts +++ b/examples/arrow/arrow-points/arrow-point-generator.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {makeArrowFixedSizeListVector} from '@luma.gl/arrow'; import * as arrow from 'apache-arrow'; diff --git a/examples/arrow/arrow-points/arrow-point-renderer.ts b/examples/arrow/arrow-points/arrow-point-renderer.ts index ed410d7a63..a5b63386f6 100644 --- a/examples/arrow/arrow-points/arrow-point-renderer.ts +++ b/examples/arrow/arrow-points/arrow-point-renderer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { clearArrowPickingState, diff --git a/examples/arrow/arrow-points/control-panel.ts b/examples/arrow/arrow-points/control-panel.ts index 6b4b7bd7c8..99d8189228 100644 --- a/examples/arrow/arrow-points/control-panel.ts +++ b/examples/arrow/arrow-points/control-panel.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { CustomPanel, diff --git a/examples/arrow/arrow-points/point-model-shaders.ts b/examples/arrow/arrow-points/point-model-shaders.ts index c54f94e710..c29eea7e70 100644 --- a/examples/arrow/arrow-points/point-model-shaders.ts +++ b/examples/arrow/arrow-points/point-model-shaders.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderLayout} from '@luma.gl/core'; import type {ShaderModule} from '@luma.gl/shadertools'; diff --git a/examples/arrow/arrow-points/point-model.ts b/examples/arrow/arrow-points/point-model.ts index fad6ed2298..14087ebb35 100644 --- a/examples/arrow/arrow-points/point-model.ts +++ b/examples/arrow/arrow-points/point-model.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {getArrowPickingModule, supportsArrowIndexPicking} from '@luma.gl/arrow'; import type {Device} from '@luma.gl/core'; diff --git a/examples/arrow/arrow-polygons/app.ts b/examples/arrow/arrow-polygons/app.ts index 93d179d317..a80829a850 100644 --- a/examples/arrow/arrow-polygons/app.ts +++ b/examples/arrow/arrow-polygons/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import type {AnimationProps} from '@luma.gl/engine'; diff --git a/examples/arrow/arrow-polygons/arrow-polygon-data-source.ts b/examples/arrow/arrow-polygons/arrow-polygon-data-source.ts index 2d6572163e..92ec5a489e 100644 --- a/examples/arrow/arrow-polygons/arrow-polygon-data-source.ts +++ b/examples/arrow/arrow-polygons/arrow-polygon-data-source.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import { diff --git a/examples/arrow/arrow-polygons/arrow-polygon-data.ts b/examples/arrow/arrow-polygons/arrow-polygon-data.ts index e0ace29aa3..1aefb2b506 100644 --- a/examples/arrow/arrow-polygons/arrow-polygon-data.ts +++ b/examples/arrow/arrow-polygons/arrow-polygon-data.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import * as arrow from 'apache-arrow'; diff --git a/examples/arrow/arrow-polygons/control-panel.ts b/examples/arrow/arrow-polygons/control-panel.ts index 3eb3516f7e..47a2786fd3 100644 --- a/examples/arrow/arrow-polygons/control-panel.ts +++ b/examples/arrow/arrow-polygons/control-panel.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import { diff --git a/examples/arrow/arrow-temporal-starfield/app.ts b/examples/arrow/arrow-temporal-starfield/app.ts index fafb755203..c2e74154d1 100644 --- a/examples/arrow/arrow-temporal-starfield/app.ts +++ b/examples/arrow/arrow-temporal-starfield/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import type {AnimationProps} from '@luma.gl/engine'; diff --git a/examples/arrow/arrow-temporal-starfield/arrow-temporal-starfield-data-source.ts b/examples/arrow/arrow-temporal-starfield/arrow-temporal-starfield-data-source.ts index dd762eba30..bdd8a97e18 100644 --- a/examples/arrow/arrow-temporal-starfield/arrow-temporal-starfield-data-source.ts +++ b/examples/arrow/arrow-temporal-starfield/arrow-temporal-starfield-data-source.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import { diff --git a/examples/arrow/arrow-temporal-starfield/arrow-temporal-starfield-data.ts b/examples/arrow/arrow-temporal-starfield/arrow-temporal-starfield-data.ts index 75fb50330d..3193a51286 100644 --- a/examples/arrow/arrow-temporal-starfield/arrow-temporal-starfield-data.ts +++ b/examples/arrow/arrow-temporal-starfield/arrow-temporal-starfield-data.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {makeArrowFixedSizeListVector} from '@luma.gl/arrow'; import * as arrow from 'apache-arrow'; diff --git a/examples/arrow/arrow-temporal-starfield/arrow-temporal-starfield-renderer.ts b/examples/arrow/arrow-temporal-starfield/arrow-temporal-starfield-renderer.ts index 45effd670c..5813980a51 100644 --- a/examples/arrow/arrow-temporal-starfield/arrow-temporal-starfield-renderer.ts +++ b/examples/arrow/arrow-temporal-starfield/arrow-temporal-starfield-renderer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { getArrowFixedSizeListValues, diff --git a/examples/arrow/arrow-temporal-starfield/arrow-temporal-starfield-shaders.ts b/examples/arrow/arrow-temporal-starfield/arrow-temporal-starfield-shaders.ts index 48913179e3..b80d0a9be4 100644 --- a/examples/arrow/arrow-temporal-starfield/arrow-temporal-starfield-shaders.ts +++ b/examples/arrow/arrow-temporal-starfield/arrow-temporal-starfield-shaders.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type ShaderLayout} from '@luma.gl/core'; import {type ShaderModule} from '@luma.gl/shadertools'; diff --git a/examples/arrow/arrow-temporal-starfield/control-panel.ts b/examples/arrow/arrow-temporal-starfield/control-panel.ts index b4acee4a8a..7fd3cdfefb 100644 --- a/examples/arrow/arrow-temporal-starfield/control-panel.ts +++ b/examples/arrow/arrow-temporal-starfield/control-panel.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { type Panel, diff --git a/examples/arrow/arrow-text-2d/app.ts b/examples/arrow/arrow-text-2d/app.ts index 34e8807d2a..66c53aff01 100644 --- a/examples/arrow/arrow-text-2d/app.ts +++ b/examples/arrow/arrow-text-2d/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {AnimationProps} from '@luma.gl/engine'; import {ArrowText2DDataSourceController} from './arrow-text-data-source'; diff --git a/examples/arrow/arrow-text-2d/arrow-text-data-source.ts b/examples/arrow/arrow-text-2d/arrow-text-data-source.ts index e0f6db3607..e608fa3f04 100644 --- a/examples/arrow/arrow-text-2d/arrow-text-data-source.ts +++ b/examples/arrow/arrow-text-2d/arrow-text-data-source.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import { diff --git a/examples/arrow/arrow-text-2d/arrow-text-data.ts b/examples/arrow/arrow-text-2d/arrow-text-data.ts index 40c63eced4..5545d8b731 100644 --- a/examples/arrow/arrow-text-2d/arrow-text-data.ts +++ b/examples/arrow/arrow-text-2d/arrow-text-data.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { getArrowVectorByteLength, diff --git a/examples/arrow/arrow-text-2d/arrow-text-metrics.ts b/examples/arrow/arrow-text-2d/arrow-text-metrics.ts index f1191e28e2..bae6ecafb6 100644 --- a/examples/arrow/arrow-text-2d/arrow-text-metrics.ts +++ b/examples/arrow/arrow-text-2d/arrow-text-metrics.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { getArrowVectorByteLength, diff --git a/examples/arrow/arrow-text-2d/control-panel.ts b/examples/arrow/arrow-text-2d/control-panel.ts index 4891db29b3..d6472067ce 100644 --- a/examples/arrow/arrow-text-2d/control-panel.ts +++ b/examples/arrow/arrow-text-2d/control-panel.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import { diff --git a/examples/arrow/arrow-time-columns/app.ts b/examples/arrow/arrow-time-columns/app.ts index 81e59cb61f..b8cbdbb8be 100644 --- a/examples/arrow/arrow-time-columns/app.ts +++ b/examples/arrow/arrow-time-columns/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import type {AnimationProps} from '@luma.gl/engine'; diff --git a/examples/arrow/arrow-time-columns/arrow-time-columns-data-source.ts b/examples/arrow/arrow-time-columns/arrow-time-columns-data-source.ts index 9eff82ae98..f901cc9865 100644 --- a/examples/arrow/arrow-time-columns/arrow-time-columns-data-source.ts +++ b/examples/arrow/arrow-time-columns/arrow-time-columns-data-source.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import * as arrow from 'apache-arrow'; diff --git a/examples/arrow/arrow-time-columns/arrow-time-columns-data.ts b/examples/arrow/arrow-time-columns/arrow-time-columns-data.ts index 3db22c4726..c2423da06f 100644 --- a/examples/arrow/arrow-time-columns/arrow-time-columns-data.ts +++ b/examples/arrow/arrow-time-columns/arrow-time-columns-data.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {makeArrowFixedSizeListVector} from '@luma.gl/arrow'; import * as arrow from 'apache-arrow'; diff --git a/examples/arrow/arrow-time-columns/arrow-time-columns-renderer.ts b/examples/arrow/arrow-time-columns/arrow-time-columns-renderer.ts index 6af21af91d..51a3d787bb 100644 --- a/examples/arrow/arrow-time-columns/arrow-time-columns-renderer.ts +++ b/examples/arrow/arrow-time-columns/arrow-time-columns-renderer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { makeGPUVectorFromArrow, diff --git a/examples/arrow/arrow-time-columns/arrow-time-columns-shaders.ts b/examples/arrow/arrow-time-columns/arrow-time-columns-shaders.ts index 0dad3a1d6e..76c4b2c937 100644 --- a/examples/arrow/arrow-time-columns/arrow-time-columns-shaders.ts +++ b/examples/arrow/arrow-time-columns/arrow-time-columns-shaders.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type ShaderLayout} from '@luma.gl/core'; import {type ShaderModule} from '@luma.gl/shadertools'; diff --git a/examples/arrow/arrow-time-columns/control-panel.ts b/examples/arrow/arrow-time-columns/control-panel.ts index d5684740e0..40dcd82efa 100644 --- a/examples/arrow/arrow-time-columns/control-panel.ts +++ b/examples/arrow/arrow-time-columns/control-panel.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { type Panel, diff --git a/examples/arrow/utils/device-limits.ts b/examples/arrow/utils/device-limits.ts index de844fda53..65d1e82f73 100644 --- a/examples/arrow/utils/device-limits.ts +++ b/examples/arrow/utils/device-limits.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; diff --git a/examples/compact-dropdown.ts b/examples/compact-dropdown.ts index e8e6e037a2..01ce17d0f8 100644 --- a/examples/compact-dropdown.ts +++ b/examples/compact-dropdown.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export type CompactDropdownOption = Readonly<{ value: Value; diff --git a/examples/deck/arrow-deck.ts b/examples/deck/arrow-deck.ts index bb2942c8a6..55b1a82fbd 100644 --- a/examples/deck/arrow-deck.ts +++ b/examples/deck/arrow-deck.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Deck, type DeckProps, type View} from '@deck.gl/core'; import type {Device} from '@luma.gl/core'; diff --git a/examples/deck/arrow-example-source-panel.ts b/examples/deck/arrow-example-source-panel.ts index 7ded2e69ea..b465fe90c8 100644 --- a/examples/deck/arrow-example-source-panel.ts +++ b/examples/deck/arrow-example-source-panel.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {SettingsChangeDescriptor, SettingsSchema} from '@deck.gl-community/panels'; import * as arrow from 'apache-arrow'; diff --git a/examples/deck/arrow-layer-tooltip.ts b/examples/deck/arrow-layer-tooltip.ts index cce972365f..2c2b5c7088 100644 --- a/examples/deck/arrow-layer-tooltip.ts +++ b/examples/deck/arrow-layer-tooltip.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {PickingInfo} from '@deck.gl/core'; import type {ArrowLayerPickingInfo} from '@deck.gl-community/arrow-layers'; diff --git a/examples/deck/arrow-path-layer/app.ts b/examples/deck/arrow-path-layer/app.ts index ecd102b065..64dea10e82 100644 --- a/examples/deck/arrow-path-layer/app.ts +++ b/examples/deck/arrow-path-layer/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Deck, OrthographicView} from '@deck.gl/core'; import {ArrowPathLayer} from '@deck.gl-community/arrow-layers'; diff --git a/examples/deck/arrow-path-layer/arrow-path-data-source.ts b/examples/deck/arrow-path-layer/arrow-path-data-source.ts index b207885f3f..8187e27a13 100644 --- a/examples/deck/arrow-path-layer/arrow-path-data-source.ts +++ b/examples/deck/arrow-path-layer/arrow-path-data-source.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {SettingsSchema} from '@deck.gl-community/panels'; import type {ArrowPathLayerProps} from '@deck.gl-community/arrow-layers'; diff --git a/examples/deck/arrow-polygon-layer/app.ts b/examples/deck/arrow-polygon-layer/app.ts index b21c4e7867..61c815731c 100644 --- a/examples/deck/arrow-polygon-layer/app.ts +++ b/examples/deck/arrow-polygon-layer/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {OrthographicView} from '@deck.gl/core'; import {ArrowPolygonLayer, type ArrowLayerPickingInfo} from '@deck.gl-community/arrow-layers'; diff --git a/examples/deck/arrow-text-layer/app.ts b/examples/deck/arrow-text-layer/app.ts index 8dbc1a0f76..3db4a877c0 100644 --- a/examples/deck/arrow-text-layer/app.ts +++ b/examples/deck/arrow-text-layer/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Deck, OrthographicView} from '@deck.gl/core'; import {ArrowTextLayer} from '@deck.gl-community/arrow-layers'; diff --git a/examples/deck/arrow-text-layer/arrow-text-data-source.ts b/examples/deck/arrow-text-layer/arrow-text-data-source.ts index 1914b91cbd..461ba49167 100644 --- a/examples/deck/arrow-text-layer/arrow-text-data-source.ts +++ b/examples/deck/arrow-text-layer/arrow-text-data-source.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {SettingsSchema} from '@deck.gl-community/panels'; import type {ArrowTextLayerProps} from '@deck.gl-community/arrow-layers'; diff --git a/examples/deck/deck-example-device.ts b/examples/deck/deck-example-device.ts index 8205e0cda3..afed4931f2 100644 --- a/examples/deck/deck-example-device.ts +++ b/examples/deck/deck-example-device.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import {webgl2Adapter} from '@luma.gl/webgl'; diff --git a/examples/deck/gpu-culled-trace/app.ts b/examples/deck/gpu-culled-trace/app.ts index 069b291252..e35be179f4 100644 --- a/examples/deck/gpu-culled-trace/app.ts +++ b/examples/deck/gpu-culled-trace/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {OrthographicView, type PickingInfo, type ViewStateChangeParameters} from '@deck.gl/core'; import {buildSdfFontAtlas} from '@luma.gl/text'; diff --git a/examples/deck/gpu-culled-trace/gpu-culled-arrow-text-layer.ts b/examples/deck/gpu-culled-trace/gpu-culled-arrow-text-layer.ts index b5e5c86264..108f6f99e4 100644 --- a/examples/deck/gpu-culled-trace/gpu-culled-arrow-text-layer.ts +++ b/examples/deck/gpu-culled-trace/gpu-culled-arrow-text-layer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {ArrowTextLayer, type ArrowTextLayerProps} from '@deck.gl-community/arrow-layers'; import type {ArrowTextRenderer} from '@luma.gl/arrow'; diff --git a/examples/deck/gpu-culled-trace/gpu-culled-trace-layer.ts b/examples/deck/gpu-culled-trace/gpu-culled-trace-layer.ts index ca800b92d0..3f2575ce09 100644 --- a/examples/deck/gpu-culled-trace/gpu-culled-trace-layer.ts +++ b/examples/deck/gpu-culled-trace/gpu-culled-trace-layer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Layer, type LayerContext, type LayerProps, type PickingInfo} from '@deck.gl/core'; import {Buffer, type RenderPass} from '@luma.gl/core'; diff --git a/examples/deck/gpu-culled-trace/gpu-trace-culling-effect.ts b/examples/deck/gpu-culled-trace/gpu-trace-culling-effect.ts index 12d9106505..8b0a047af5 100644 --- a/examples/deck/gpu-culled-trace/gpu-trace-culling-effect.ts +++ b/examples/deck/gpu-culled-trace/gpu-trace-culling-effect.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Effect, EffectContext} from '@deck.gl/core'; import {Buffer, type Device} from '@luma.gl/core'; diff --git a/examples/deck/gpu-culled-trace/trace-data.ts b/examples/deck/gpu-culled-trace/trace-data.ts index 9d15ef3d80..d18b596a11 100644 --- a/examples/deck/gpu-culled-trace/trace-data.ts +++ b/examples/deck/gpu-culled-trace/trace-data.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {makeArrowFixedSizeListVector} from '@luma.gl/arrow'; import * as arrow from 'apache-arrow'; diff --git a/examples/deck/luspatial-taxi/app.ts b/examples/deck/luspatial-taxi/app.ts index 68a7893e41..b8c256480f 100644 --- a/examples/deck/luspatial-taxi/app.ts +++ b/examples/deck/luspatial-taxi/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { MapView, diff --git a/examples/deck/luspatial-taxi/luspatial-query-effect.ts b/examples/deck/luspatial-taxi/luspatial-query-effect.ts index 6732b923ce..b8e8149268 100644 --- a/examples/deck/luspatial-taxi/luspatial-query-effect.ts +++ b/examples/deck/luspatial-taxi/luspatial-query-effect.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Effect, EffectContext} from '@deck.gl/core'; import {Buffer, type Device} from '@luma.gl/core'; diff --git a/examples/deck/luspatial-taxi/taxi-data.ts b/examples/deck/luspatial-taxi/taxi-data.ts index 64e0ed99ec..76669a5f27 100644 --- a/examples/deck/luspatial-taxi/taxi-data.ts +++ b/examples/deck/luspatial-taxi/taxi-data.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { PAUL_TAYLOR_POINT_COUNT, diff --git a/examples/example-panels.ts b/examples/example-panels.ts index fdd4233c91..649be05863 100644 --- a/examples/example-panels.ts +++ b/examples/example-panels.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { CustomPanel, diff --git a/examples/example-theme.ts b/examples/example-theme.ts index 8b3aeaa42b..dc65901a36 100644 --- a/examples/example-theme.ts +++ b/examples/example-theme.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export type ExampleThemeAppearance = 'cinematic' | 'light'; diff --git a/examples/experimental/a-buffer/app.ts b/examples/experimental/a-buffer/app.ts index fd012a482b..68ae8d4594 100644 --- a/examples/experimental/a-buffer/app.ts +++ b/examples/experimental/a-buffer/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type Device, type Framebuffer, type RenderPipelineParameters, Texture} from '@luma.gl/core'; import type {AnimationProps} from '@luma.gl/engine'; diff --git a/examples/experimental/advanced-effects/app.ts b/examples/experimental/advanced-effects/app.ts index 39cfda04a7..3850f57fe2 100644 --- a/examples/experimental/advanced-effects/app.ts +++ b/examples/experimental/advanced-effects/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Device} from '@luma.gl/core'; import type {AnimationProps} from '@luma.gl/engine'; diff --git a/examples/experimental/advanced-effects/city-shadows.ts b/examples/experimental/advanced-effects/city-shadows.ts index 937cafb623..5aee94b3eb 100644 --- a/examples/experimental/advanced-effects/city-shadows.ts +++ b/examples/experimental/advanced-effects/city-shadows.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Buffer, Device} from '@luma.gl/core'; import {CubeGeometry, Model, ShaderInputs} from '@luma.gl/engine'; diff --git a/examples/experimental/advanced-effects/comparison-splitter.ts b/examples/experimental/advanced-effects/comparison-splitter.ts index 20f0cb4cd3..e534a267e0 100644 --- a/examples/experimental/advanced-effects/comparison-splitter.ts +++ b/examples/experimental/advanced-effects/comparison-splitter.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors type ComparisonSplitterProps = { canvas: HTMLCanvasElement; diff --git a/examples/experimental/antialiasing/app.ts b/examples/experimental/antialiasing/app.ts index 2f0f452d38..7325071b7e 100644 --- a/examples/experimental/antialiasing/app.ts +++ b/examples/experimental/antialiasing/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Framebuffer, Sampler, SamplerProps, Texture, TextureView} from '@luma.gl/core'; import {Texture as TextureResource, UniformStore} from '@luma.gl/core'; diff --git a/examples/experimental/bloom/app.ts b/examples/experimental/bloom/app.ts index 83ca462ae6..2967ebdd12 100644 --- a/examples/experimental/bloom/app.ts +++ b/examples/experimental/bloom/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device, Framebuffer, TextureFormatColor} from '@luma.gl/core'; import {bloom, createBloomShaderPassPipeline, toneMapping} from '@luma.gl/effects'; diff --git a/examples/experimental/deferred-rendering/app.ts b/examples/experimental/deferred-rendering/app.ts index b47b1144ca..c9bbe72a82 100644 --- a/examples/experimental/deferred-rendering/app.ts +++ b/examples/experimental/deferred-rendering/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, Device, Texture} from '@luma.gl/core'; import type {AnimationProps} from '@luma.gl/engine'; diff --git a/examples/experimental/fluid-foundry/app.ts b/examples/experimental/fluid-foundry/app.ts index 41b78daa80..47d73b2794 100644 --- a/examples/experimental/fluid-foundry/app.ts +++ b/examples/experimental/fluid-foundry/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { Buffer, diff --git a/examples/experimental/fp64/app.tsx b/examples/experimental/fp64/app.tsx index ce2e09ed99..7d76b49db2 100644 --- a/examples/experimental/fp64/app.tsx +++ b/examples/experimental/fp64/app.tsx @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import React from 'react'; import {createRoot, type Root} from 'react-dom/client'; diff --git a/examples/experimental/fp64/fp64-compute-benchmark.ts b/examples/experimental/fp64/fp64-compute-benchmark.ts index 6dbee2135a..2163d6d3aa 100644 --- a/examples/experimental/fp64/fp64-compute-benchmark.ts +++ b/examples/experimental/fp64/fp64-compute-benchmark.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type ComputeShaderLayout, type Device, type QuerySet} from '@luma.gl/core'; import {Computation, ShaderInputs} from '@luma.gl/engine'; diff --git a/examples/experimental/gpu-data-analysis/src/app.ts b/examples/experimental/gpu-data-analysis/src/app.ts index 749941b656..325093d442 100644 --- a/examples/experimental/gpu-data-analysis/src/app.ts +++ b/examples/experimental/gpu-data-analysis/src/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {makeArrowFixedSizeListVector, makeGPUVectorFromArrow} from '@luma.gl/arrow'; import {Buffer, luma, type Device} from '@luma.gl/core'; diff --git a/examples/experimental/gpu-frustum-culling/app.ts b/examples/experimental/gpu-frustum-culling/app.ts index 23d629dcb9..dfc48567b0 100644 --- a/examples/experimental/gpu-frustum-culling/app.ts +++ b/examples/experimental/gpu-frustum-culling/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, Texture, type Device, type RenderBundle} from '@luma.gl/core'; import type {AnimationProps} from '@luma.gl/engine'; diff --git a/examples/experimental/gpu-frustum-culling/culling-data.ts b/examples/experimental/gpu-frustum-culling/culling-data.ts index 65840a58b9..e01b70c272 100644 --- a/examples/experimental/gpu-frustum-culling/culling-data.ts +++ b/examples/experimental/gpu-frustum-culling/culling-data.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors const INSTANCE_WORD_COUNT = 8; diff --git a/examples/experimental/gpu-frustum-culling/culling-shaders.ts b/examples/experimental/gpu-frustum-culling/culling-shaders.ts index d8573ad6b6..720ec0c318 100644 --- a/examples/experimental/gpu-frustum-culling/culling-shaders.ts +++ b/examples/experimental/gpu-frustum-culling/culling-shaders.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export const CULLING_RENDER_SHADER = /* wgsl */ ` struct CullingInstance { diff --git a/examples/experimental/gpu-scene-graph/app.ts b/examples/experimental/gpu-scene-graph/app.ts index 26ad074ea8..4879286603 100644 --- a/examples/experimental/gpu-scene-graph/app.ts +++ b/examples/experimental/gpu-scene-graph/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Device, type RenderBundle} from '@luma.gl/core'; import {AnimationLoopTemplate, Computation, Model, type AnimationProps} from '@luma.gl/engine'; diff --git a/examples/experimental/gpu-scene-graph/scene-graph-data.ts b/examples/experimental/gpu-scene-graph/scene-graph-data.ts index 31e0c2c588..e25afdf4f3 100644 --- a/examples/experimental/gpu-scene-graph/scene-graph-data.ts +++ b/examples/experimental/gpu-scene-graph/scene-graph-data.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {GPUSceneRecord} from '@luma.gl/experimental'; diff --git a/examples/experimental/gpu-scene-graph/scene-graph-shaders.ts b/examples/experimental/gpu-scene-graph/scene-graph-shaders.ts index b510aebe03..ff3ed2fbe8 100644 --- a/examples/experimental/gpu-scene-graph/scene-graph-shaders.ts +++ b/examples/experimental/gpu-scene-graph/scene-graph-shaders.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** Draws generic scene bounds and stable application IDs without domain-specific scene fields. */ export const SCENE_GRAPH_RENDER_SHADER = /* wgsl */ ` diff --git a/examples/experimental/gpu-sort/src/app.ts b/examples/experimental/gpu-sort/src/app.ts index 5434c36d82..8c34743918 100644 --- a/examples/experimental/gpu-sort/src/app.ts +++ b/examples/experimental/gpu-sort/src/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {makeGPUVectorFromArrow} from '@luma.gl/arrow'; import {Buffer, luma, type Device} from '@luma.gl/core'; diff --git a/examples/experimental/gpu-trace-scene/app.ts b/examples/experimental/gpu-trace-scene/app.ts index 26bfa2f72a..8b24f45832 100644 --- a/examples/experimental/gpu-trace-scene/app.ts +++ b/examples/experimental/gpu-trace-scene/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Device, type RenderBundle} from '@luma.gl/core'; import {AnimationLoopTemplate, Computation, Model, type AnimationProps} from '@luma.gl/engine'; diff --git a/examples/experimental/gpu-trace-scene/trace-scene-shaders.ts b/examples/experimental/gpu-trace-scene/trace-scene-shaders.ts index 29d37c4c62..7dc087271e 100644 --- a/examples/experimental/gpu-trace-scene/trace-scene-shaders.ts +++ b/examples/experimental/gpu-trace-scene/trace-scene-shaders.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {TRACE_ERROR_SPAN_FLAG, TRACE_LANES_PER_THREAD} from '../gpu-trace-viewer/trace-data'; diff --git a/examples/experimental/gpu-trace-viewer/app.ts b/examples/experimental/gpu-trace-viewer/app.ts index 41239861f7..63d034a684 100644 --- a/examples/experimental/gpu-trace-viewer/app.ts +++ b/examples/experimental/gpu-trace-viewer/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Binding, type Device, type RenderBundle} from '@luma.gl/core'; import type {AnimationProps} from '@luma.gl/engine'; diff --git a/examples/experimental/gpu-trace-viewer/trace-data.ts b/examples/experimental/gpu-trace-viewer/trace-data.ts index 5d5681746f..e756875d5f 100644 --- a/examples/experimental/gpu-trace-viewer/trace-data.ts +++ b/examples/experimental/gpu-trace-viewer/trace-data.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { GPU_TRACE_LINK_RECORD_WORD_LENGTH, diff --git a/examples/experimental/gpu-trace-viewer/trace-shaders.ts b/examples/experimental/gpu-trace-viewer/trace-shaders.ts index 5d304f8ce4..0f73762859 100644 --- a/examples/experimental/gpu-trace-viewer/trace-shaders.ts +++ b/examples/experimental/gpu-trace-viewer/trace-shaders.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { TRACE_DENSITY_BIN_COUNT, diff --git a/examples/experimental/html-ui-prism/app.ts b/examples/experimental/html-ui-prism/app.ts index b2302c36ba..9a96af58b6 100644 --- a/examples/experimental/html-ui-prism/app.ts +++ b/examples/experimental/html-ui-prism/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {NumberArray, VariableShaderType} from '@luma.gl/core'; import {luma, UniformStore} from '@luma.gl/core'; diff --git a/examples/experimental/shadow-map/app.ts b/examples/experimental/shadow-map/app.ts index 5de435b102..01587240e4 100644 --- a/examples/experimental/shadow-map/app.ts +++ b/examples/experimental/shadow-map/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Buffer, Device} from '@luma.gl/core'; import type {AnimationProps} from '@luma.gl/engine'; diff --git a/examples/experimental/spectral-caustics/app.ts b/examples/experimental/spectral-caustics/app.ts index 2cd7276bd9..d2b9cac5ba 100644 --- a/examples/experimental/spectral-caustics/app.ts +++ b/examples/experimental/spectral-caustics/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type Buffer, type Device, type Framebuffer, Texture} from '@luma.gl/core'; import { diff --git a/examples/experimental/text-space-crawl/app.ts b/examples/experimental/text-space-crawl/app.ts index 0087d2b708..fd1070c859 100644 --- a/examples/experimental/text-space-crawl/app.ts +++ b/examples/experimental/text-space-crawl/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import type {AnimationProps} from '@luma.gl/engine'; diff --git a/examples/experimental/text-space-crawl/atlas-text-renderer.ts b/examples/experimental/text-space-crawl/atlas-text-renderer.ts index 1f5fff110d..ab4cf61ade 100644 --- a/examples/experimental/text-space-crawl/atlas-text-renderer.ts +++ b/examples/experimental/text-space-crawl/atlas-text-renderer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { ArrowTextRenderer, diff --git a/examples/experimental/text-space-crawl/control-panel.ts b/examples/experimental/text-space-crawl/control-panel.ts index 826c06e283..6c847ba1d4 100644 --- a/examples/experimental/text-space-crawl/control-panel.ts +++ b/examples/experimental/text-space-crawl/control-panel.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { type Panel, diff --git a/examples/experimental/text-space-crawl/crawl-renderer.ts b/examples/experimental/text-space-crawl/crawl-renderer.ts index a80dddc36c..4516685a26 100644 --- a/examples/experimental/text-space-crawl/crawl-renderer.ts +++ b/examples/experimental/text-space-crawl/crawl-renderer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {CommandEncoder, RenderPass} from '@luma.gl/core'; import type {Text3DBounds} from '@luma.gl/text/text-3d'; diff --git a/examples/experimental/text-space-crawl/crawl-text.ts b/examples/experimental/text-space-crawl/crawl-text.ts index 628a90d8ca..756d9103c7 100644 --- a/examples/experimental/text-space-crawl/crawl-text.ts +++ b/examples/experimental/text-space-crawl/crawl-text.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** Rows displayed by the text rendering comparison. */ export const CRAWL_TEXT_ROWS = [ diff --git a/examples/experimental/text-space-crawl/extruded-text-renderer.ts b/examples/experimental/text-space-crawl/extruded-text-renderer.ts index 659ad91351..3d768aaff2 100644 --- a/examples/experimental/text-space-crawl/extruded-text-renderer.ts +++ b/examples/experimental/text-space-crawl/extruded-text-renderer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {CommandEncoder, Device, RenderPass} from '@luma.gl/core'; import {Model, ShaderInputs} from '@luma.gl/engine'; diff --git a/examples/experimental/virtual-geometry-canyon/app.ts b/examples/experimental/virtual-geometry-canyon/app.ts index 0f3c4c8236..62d516c742 100644 --- a/examples/experimental/virtual-geometry-canyon/app.ts +++ b/examples/experimental/virtual-geometry-canyon/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, Texture, type Device} from '@luma.gl/core'; import {AnimationLoopTemplate, Geometry, Model, type AnimationProps} from '@luma.gl/engine'; diff --git a/examples/experimental/virtual-geometry-canyon/canyon-camera.ts b/examples/experimental/virtual-geometry-canyon/canyon-camera.ts index 2744d43036..56aa17911f 100644 --- a/examples/experimental/virtual-geometry-canyon/canyon-camera.ts +++ b/examples/experimental/virtual-geometry-canyon/canyon-camera.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {getCanyonCenterX, getCanyonTerrainHeight} from './canyon-data'; diff --git a/examples/experimental/virtual-geometry-canyon/canyon-data.ts b/examples/experimental/virtual-geometry-canyon/canyon-data.ts index 959b5f9d47..9f8d496731 100644 --- a/examples/experimental/virtual-geometry-canyon/canyon-data.ts +++ b/examples/experimental/virtual-geometry-canyon/canyon-data.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export const CANYON_ROOT_GRID_SIZE = 4; export const CANYON_REFINEMENT_DEPTH = 6; diff --git a/examples/experimental/virtual-geometry-canyon/canyon-shaders.ts b/examples/experimental/virtual-geometry-canyon/canyon-shaders.ts index a30e7aa8b7..b41793a240 100644 --- a/examples/experimental/virtual-geometry-canyon/canyon-shaders.ts +++ b/examples/experimental/virtual-geometry-canyon/canyon-shaders.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { CANYON_CLUSTER_GRID_SEGMENTS, diff --git a/examples/experimental/virtual-geometry-canyon/canyon-wind.ts b/examples/experimental/virtual-geometry-canyon/canyon-wind.ts index 05200b61a2..8cd7091d9b 100644 --- a/examples/experimental/virtual-geometry-canyon/canyon-wind.ts +++ b/examples/experimental/virtual-geometry-canyon/canyon-wind.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors const MINIMUM_GAIN = 0.0001; const WIND_NOISE_DURATION_SECONDS = 10; diff --git a/examples/experimental/volumetric-fire-forge/app.ts b/examples/experimental/volumetric-fire-forge/app.ts index ea4b301e95..44d9ef26c4 100644 --- a/examples/experimental/volumetric-fire-forge/app.ts +++ b/examples/experimental/volumetric-fire-forge/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Texture, type Device} from '@luma.gl/core'; import type {AnimationProps} from '@luma.gl/engine'; diff --git a/examples/experimental/volumetric-fire-forge/volumetric-fire-forge-audio.ts b/examples/experimental/volumetric-fire-forge/volumetric-fire-forge-audio.ts index cc18324d5b..c443c010d9 100644 --- a/examples/experimental/volumetric-fire-forge/volumetric-fire-forge-audio.ts +++ b/examples/experimental/volumetric-fire-forge/volumetric-fire-forge-audio.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export type VolumetricFireForgeSoundOptions = { intensity: number; diff --git a/examples/experimental/volumetric-fire-forge/volumetric-fire-forge-flares.ts b/examples/experimental/volumetric-fire-forge/volumetric-fire-forge-flares.ts index d5e4a4b482..40a0e6ee91 100644 --- a/examples/experimental/volumetric-fire-forge/volumetric-fire-forge-flares.ts +++ b/examples/experimental/volumetric-fire-forge/volumetric-fire-forge-flares.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {VolumetricFireEmitter} from '@luma.gl/experimental'; diff --git a/examples/experimental/volumetric-fire-forge/volumetric-fire-forge-renderer.ts b/examples/experimental/volumetric-fire-forge/volumetric-fire-forge-renderer.ts index dec1b8166a..00b11b02c1 100644 --- a/examples/experimental/volumetric-fire-forge/volumetric-fire-forge-renderer.ts +++ b/examples/experimental/volumetric-fire-forge/volumetric-fire-forge-renderer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { Buffer, diff --git a/examples/experimental/volumetric-fire-forge/volumetric-fire-forge-scene.ts b/examples/experimental/volumetric-fire-forge/volumetric-fire-forge-scene.ts index 0d08709b13..df372a685b 100644 --- a/examples/experimental/volumetric-fire-forge/volumetric-fire-forge-scene.ts +++ b/examples/experimental/volumetric-fire-forge/volumetric-fire-forge-scene.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type { VolumetricFireEmitter, diff --git a/examples/experimental/volumetric-fire-forge/volumetric-fire-forge-shaders.ts b/examples/experimental/volumetric-fire-forge/volumetric-fire-forge-shaders.ts index 5f2e5f7e9f..03e0da02d1 100644 --- a/examples/experimental/volumetric-fire-forge/volumetric-fire-forge-shaders.ts +++ b/examples/experimental/volumetric-fire-forge/volumetric-fire-forge-shaders.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Sampler, Texture} from '@luma.gl/core'; import type {ShaderModule, ShaderPass, ShaderPassPipeline} from '@luma.gl/shadertools'; diff --git a/examples/experimental/webxr-kaleidoscope/app.ts b/examples/experimental/webxr-kaleidoscope/app.ts index 2d60023d28..92ab817f80 100644 --- a/examples/experimental/webxr-kaleidoscope/app.ts +++ b/examples/experimental/webxr-kaleidoscope/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device, Framebuffer, NumberArray, Texture, VariableShaderType} from '@luma.gl/core'; import {UniformStore} from '@luma.gl/core'; diff --git a/examples/gpu-command-graph-inspector-panel.ts b/examples/gpu-command-graph-inspector-panel.ts index bba7e37d09..20f914ab32 100644 --- a/examples/gpu-command-graph-inspector-panel.ts +++ b/examples/gpu-command-graph-inspector-panel.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {GPUCommandGraphInspectorSnapshot} from '@luma.gl/experimental'; import {CompactDropdown} from './compact-dropdown'; diff --git a/examples/integrations/hello-react/app.tsx b/examples/integrations/hello-react/app.tsx index 5d1449271d..3bc9fb47b1 100644 --- a/examples/integrations/hello-react/app.tsx +++ b/examples/integrations/hello-react/app.tsx @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {useState} from 'react'; import {RotatingCube} from './rotating-cube'; diff --git a/examples/integrations/hello-react/cube-animation.ts b/examples/integrations/hello-react/cube-animation.ts index e43c531961..e3e035f7ba 100644 --- a/examples/integrations/hello-react/cube-animation.ts +++ b/examples/integrations/hello-react/cube-animation.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {NumberArray} from '@luma.gl/core'; import {AnimationLoopTemplate, Model, CubeGeometry, ShaderInputs} from '@luma.gl/engine'; diff --git a/examples/integrations/hello-react/main.tsx b/examples/integrations/hello-react/main.tsx index 97983f655a..ae2cf12a53 100644 --- a/examples/integrations/hello-react/main.tsx +++ b/examples/integrations/hello-react/main.tsx @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import React from 'react'; import {createRoot} from 'react-dom/client'; diff --git a/examples/integrations/hello-react/rotating-cube.tsx b/examples/integrations/hello-react/rotating-cube.tsx index eb6a0e3447..f85b9538ea 100644 --- a/examples/integrations/hello-react/rotating-cube.tsx +++ b/examples/integrations/hello-react/rotating-cube.tsx @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {useEffect, useRef} from 'react'; import {Device, luma, log} from '@luma.gl/core'; diff --git a/examples/orbit-controller.ts b/examples/orbit-controller.ts index 2f792f30dd..6ac2448125 100644 --- a/examples/orbit-controller.ts +++ b/examples/orbit-controller.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export type OrbitPosition = [number, number, number]; diff --git a/examples/showcase/billion-point-spatial-atlas/app.ts b/examples/showcase/billion-point-spatial-atlas/app.ts index 13933c958a..8ff75a56de 100644 --- a/examples/showcase/billion-point-spatial-atlas/app.ts +++ b/examples/showcase/billion-point-spatial-atlas/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Panel} from '@deck.gl-community/panels'; import {Buffer, type Device, type RenderBundle, Texture} from '@luma.gl/core'; diff --git a/examples/showcase/billion-point-spatial-atlas/ept-source.ts b/examples/showcase/billion-point-spatial-atlas/ept-source.ts index c75bb13c8a..ef6846ba0b 100644 --- a/examples/showcase/billion-point-spatial-atlas/ept-source.ts +++ b/examples/showcase/billion-point-spatial-atlas/ept-source.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {load} from '@loaders.gl/core'; import {LASLoader} from '@loaders.gl/las'; diff --git a/examples/showcase/billion-point-spatial-atlas/lidar-tile-cache.ts b/examples/showcase/billion-point-spatial-atlas/lidar-tile-cache.ts index 9f4c09d023..f698b03878 100644 --- a/examples/showcase/billion-point-spatial-atlas/lidar-tile-cache.ts +++ b/examples/showcase/billion-point-spatial-atlas/lidar-tile-cache.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Device} from '@luma.gl/core'; diff --git a/examples/showcase/billion-point-spatial-atlas/scripts/benchmark.mjs b/examples/showcase/billion-point-spatial-atlas/scripts/benchmark.mjs index 722096c479..fa93123b0d 100644 --- a/examples/showcase/billion-point-spatial-atlas/scripts/benchmark.mjs +++ b/examples/showcase/billion-point-spatial-atlas/scripts/benchmark.mjs @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import assert from 'node:assert/strict'; import {dirname} from 'node:path'; diff --git a/examples/showcase/billion-point-spatial-atlas/scripts/preprocess-paul-taxi.mjs b/examples/showcase/billion-point-spatial-atlas/scripts/preprocess-paul-taxi.mjs index cb6327f9dc..532076a2e0 100644 --- a/examples/showcase/billion-point-spatial-atlas/scripts/preprocess-paul-taxi.mjs +++ b/examples/showcase/billion-point-spatial-atlas/scripts/preprocess-paul-taxi.mjs @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {createReadStream, createWriteStream} from 'node:fs'; import {mkdir, mkdtemp, readFile, rm, writeFile} from 'node:fs/promises'; diff --git a/examples/showcase/billion-point-spatial-atlas/scripts/visual-smoke.mjs b/examples/showcase/billion-point-spatial-atlas/scripts/visual-smoke.mjs index 3168832ac3..59a65bec18 100644 --- a/examples/showcase/billion-point-spatial-atlas/scripts/visual-smoke.mjs +++ b/examples/showcase/billion-point-spatial-atlas/scripts/visual-smoke.mjs @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import assert from 'node:assert/strict'; import {stat, writeFile} from 'node:fs/promises'; diff --git a/examples/showcase/billion-point-spatial-atlas/spatial-atlas-data.ts b/examples/showcase/billion-point-spatial-atlas/spatial-atlas-data.ts index 8016d6b074..84465700c1 100644 --- a/examples/showcase/billion-point-spatial-atlas/spatial-atlas-data.ts +++ b/examples/showcase/billion-point-spatial-atlas/spatial-atlas-data.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; diff --git a/examples/showcase/billion-point-spatial-atlas/spatial-atlas-shaders.ts b/examples/showcase/billion-point-spatial-atlas/spatial-atlas-shaders.ts index bf9e3b00cb..2a9a4a4358 100644 --- a/examples/showcase/billion-point-spatial-atlas/spatial-atlas-shaders.ts +++ b/examples/showcase/billion-point-spatial-atlas/spatial-atlas-shaders.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors const SPATIAL_ATLAS_SHADER_HEADER = /* wgsl */ ` struct SpatialAtlasUniforms { diff --git a/examples/showcase/billion-point-spatial-atlas/taxi-resident-window.ts b/examples/showcase/billion-point-spatial-atlas/taxi-resident-window.ts index 3bf6a67f61..870db973b2 100644 --- a/examples/showcase/billion-point-spatial-atlas/taxi-resident-window.ts +++ b/examples/showcase/billion-point-spatial-atlas/taxi-resident-window.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type { TaxiPointSource, diff --git a/examples/showcase/billion-point-spatial-atlas/taxi-source.ts b/examples/showcase/billion-point-spatial-atlas/taxi-source.ts index 95ddc5fe8b..2b312c481c 100644 --- a/examples/showcase/billion-point-spatial-atlas/taxi-source.ts +++ b/examples/showcase/billion-point-spatial-atlas/taxi-source.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** Selective read options shared by packed-shard and future columnar taxi sources. */ export type TaxiPointSourceReadOptions = { diff --git a/examples/showcase/dof/app.ts b/examples/showcase/dof/app.ts index 55a0ce281c..a29bd8fd54 100644 --- a/examples/showcase/dof/app.ts +++ b/examples/showcase/dof/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /* Based on: https://github.com/tsherif/picogl.js/blob/master/examples/dof.html diff --git a/examples/showcase/gaussian-splats/app.ts b/examples/showcase/gaussian-splats/app.ts index fa32caeb85..882f1df3df 100644 --- a/examples/showcase/gaussian-splats/app.ts +++ b/examples/showcase/gaussian-splats/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {PanelSelect, type PanelSelectOption} from '@deck.gl-community/panels'; import {makeGPUSplatDataFromArrowStream} from '@luma.gl/arrow'; diff --git a/examples/showcase/gaussian-splats/gaussian-splat-scene.ts b/examples/showcase/gaussian-splats/gaussian-splat-scene.ts index 732b860f19..703c64a54f 100644 --- a/examples/showcase/gaussian-splats/gaussian-splat-scene.ts +++ b/examples/showcase/gaussian-splats/gaussian-splat-scene.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {SplatSource} from '@luma.gl/splats'; diff --git a/examples/showcase/gaussian-splats/local-loaders.ts b/examples/showcase/gaussian-splats/local-loaders.ts index 31a0649d9a..84af06240b 100644 --- a/examples/showcase/gaussian-splats/local-loaders.ts +++ b/examples/showcase/gaussian-splats/local-loaders.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {GPUSplatArrowRecordBatchLike, GPUSplatArrowSource} from '@luma.gl/arrow'; diff --git a/examples/showcase/globe/app.ts b/examples/showcase/globe/app.ts index f819219fb0..c11e7852c1 100644 --- a/examples/showcase/globe/app.ts +++ b/examples/showcase/globe/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import { diff --git a/examples/showcase/gltf/app.ts b/examples/showcase/gltf/app.ts index dc1ade3bec..4ac1fc1ffc 100644 --- a/examples/showcase/gltf/app.ts +++ b/examples/showcase/gltf/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {RenderPass, log} from '@luma.gl/core'; import {AnimationProps, ClipSpace} from '@luma.gl/engine'; diff --git a/examples/showcase/gltf/gltf-catalog-app.ts b/examples/showcase/gltf/gltf-catalog-app.ts index d114d88be1..5437aa1675 100644 --- a/examples/showcase/gltf/gltf-catalog-app.ts +++ b/examples/showcase/gltf/gltf-catalog-app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {AnimationLoopTemplate, AnimationProps, ModelNode} from '@luma.gl/engine'; import {Color, Device, RenderPass, log} from '@luma.gl/core'; diff --git a/examples/showcase/gltf/gltf-extension-demos.ts b/examples/showcase/gltf/gltf-extension-demos.ts index 46841d65e0..d7a619932b 100644 --- a/examples/showcase/gltf/gltf-extension-demos.ts +++ b/examples/showcase/gltf/gltf-extension-demos.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {GLTFModelReference} from './gltf-catalog-app'; diff --git a/examples/showcase/instancing/app.ts b/examples/showcase/instancing/app.ts index 2997ffbb1b..a21fb98b4f 100644 --- a/examples/showcase/instancing/app.ts +++ b/examples/showcase/instancing/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, Device} from '@luma.gl/core'; import type {AnimationProps, ModelProps} from '@luma.gl/engine'; diff --git a/examples/showcase/lightstorm-megacity/app.ts b/examples/showcase/lightstorm-megacity/app.ts index 75c06d18b6..b630b0a46a 100644 --- a/examples/showcase/lightstorm-megacity/app.ts +++ b/examples/showcase/lightstorm-megacity/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Device, type RenderBundle, type TextureFormatColor} from '@luma.gl/core'; import { diff --git a/examples/showcase/lightstorm-megacity/lightstorm-camera.ts b/examples/showcase/lightstorm-megacity/lightstorm-camera.ts index 8eea5beffb..486456bb0c 100644 --- a/examples/showcase/lightstorm-megacity/lightstorm-camera.ts +++ b/examples/showcase/lightstorm-megacity/lightstorm-camera.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { LIGHTSTORM_GRID_SPACING, diff --git a/examples/showcase/lightstorm-megacity/lightstorm-data.ts b/examples/showcase/lightstorm-megacity/lightstorm-data.ts index 3ff798b844..52a9a5184f 100644 --- a/examples/showcase/lightstorm-megacity/lightstorm-data.ts +++ b/examples/showcase/lightstorm-megacity/lightstorm-data.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export const LIGHTSTORM_INSTANCE_WORD_COUNT = 12; export const LIGHTSTORM_GRID_SPACING = 3.2; diff --git a/examples/showcase/lightstorm-megacity/lightstorm-lighting.ts b/examples/showcase/lightstorm-megacity/lightstorm-lighting.ts index 361f233239..c683b4ad17 100644 --- a/examples/showcase/lightstorm-megacity/lightstorm-lighting.ts +++ b/examples/showcase/lightstorm-megacity/lightstorm-lighting.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {DeferredPointLight} from '@luma.gl/experimental'; import type {Matrix4} from '@math.gl/core'; diff --git a/examples/showcase/lightstorm-megacity/lightstorm-lightning.ts b/examples/showcase/lightstorm-megacity/lightstorm-lightning.ts index e168cea258..2f6204ebc5 100644 --- a/examples/showcase/lightstorm-megacity/lightstorm-lightning.ts +++ b/examples/showcase/lightstorm-megacity/lightstorm-lightning.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { getLightstormGuidedCameraSample, diff --git a/examples/showcase/lightstorm-megacity/lightstorm-shaders.ts b/examples/showcase/lightstorm-megacity/lightstorm-shaders.ts index 66ea7a2333..aef412e552 100644 --- a/examples/showcase/lightstorm-megacity/lightstorm-shaders.ts +++ b/examples/showcase/lightstorm-megacity/lightstorm-shaders.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Texture, TextureFormatColor} from '@luma.gl/core'; import {clusteredDeferredLighting} from '@luma.gl/experimental'; diff --git a/examples/showcase/lightstorm-megacity/lightstorm-thunder.ts b/examples/showcase/lightstorm-megacity/lightstorm-thunder.ts index 5ce9ff7418..962780aeb6 100644 --- a/examples/showcase/lightstorm-megacity/lightstorm-thunder.ts +++ b/examples/showcase/lightstorm-megacity/lightstorm-thunder.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { LIGHTSTORM_LIGHTNING_SCHEDULE, diff --git a/examples/showcase/million-row-crossfilter/app.ts b/examples/showcase/million-row-crossfilter/app.ts index c616c71ddf..587cd7c102 100644 --- a/examples/showcase/million-row-crossfilter/app.ts +++ b/examples/showcase/million-row-crossfilter/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import {AnimationLoopTemplate, type AnimationProps} from '@luma.gl/engine'; diff --git a/examples/showcase/million-row-crossfilter/crossfilter-data.ts b/examples/showcase/million-row-crossfilter/crossfilter-data.ts index 44d7c9cbd1..26ca8900c0 100644 --- a/examples/showcase/million-row-crossfilter/crossfilter-data.ts +++ b/examples/showcase/million-row-crossfilter/crossfilter-data.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** Resident row count used when the showcase does not request a larger population. */ export const DEFAULT_CROSSFILTER_ROW_COUNT = 262_144; diff --git a/examples/showcase/million-row-crossfilter/crossfilter-engine.ts b/examples/showcase/million-row-crossfilter/crossfilter-engine.ts index 158dcd5e43..a2393a1ba7 100644 --- a/examples/showcase/million-row-crossfilter/crossfilter-engine.ts +++ b/examples/showcase/million-row-crossfilter/crossfilter-engine.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Device} from '@luma.gl/core'; import { diff --git a/examples/showcase/million-row-crossfilter/crossfilter-interface.ts b/examples/showcase/million-row-crossfilter/crossfilter-interface.ts index 522e9d0fed..9a84263d8c 100644 --- a/examples/showcase/million-row-crossfilter/crossfilter-interface.ts +++ b/examples/showcase/million-row-crossfilter/crossfilter-interface.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {CROSSFILTER_STYLES} from './crossfilter-styles'; diff --git a/examples/showcase/million-row-crossfilter/crossfilter-renderer.ts b/examples/showcase/million-row-crossfilter/crossfilter-renderer.ts index 9211467d88..a9820c8cb4 100644 --- a/examples/showcase/million-row-crossfilter/crossfilter-renderer.ts +++ b/examples/showcase/million-row-crossfilter/crossfilter-renderer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type CanvasContext, type Device} from '@luma.gl/core'; import {Model} from '@luma.gl/engine'; diff --git a/examples/showcase/million-row-crossfilter/crossfilter-styles.ts b/examples/showcase/million-row-crossfilter/crossfilter-styles.ts index fb2db20a4e..8a9f9674fd 100644 --- a/examples/showcase/million-row-crossfilter/crossfilter-styles.ts +++ b/examples/showcase/million-row-crossfilter/crossfilter-styles.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** Scoped presentation for the GPU-resident crossfilter intelligence surface. */ export const CROSSFILTER_STYLES = ` diff --git a/examples/showcase/million-row-crossfilter/scripts/visual-smoke.mjs b/examples/showcase/million-row-crossfilter/scripts/visual-smoke.mjs index 4b908d1986..6d63507976 100644 --- a/examples/showcase/million-row-crossfilter/scripts/visual-smoke.mjs +++ b/examples/showcase/million-row-crossfilter/scripts/visual-smoke.mjs @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import assert from 'node:assert/strict'; import {mkdir, stat} from 'node:fs/promises'; diff --git a/examples/showcase/packet-spraying/app.ts b/examples/showcase/packet-spraying/app.ts index 10a6748da0..30851c5b99 100644 --- a/examples/showcase/packet-spraying/app.ts +++ b/examples/showcase/packet-spraying/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Texture} from '@luma.gl/core'; import type { diff --git a/examples/showcase/packet-spraying/network.ts b/examples/showcase/packet-spraying/network.ts index 944e3308af..db6aebd687 100644 --- a/examples/showcase/packet-spraying/network.ts +++ b/examples/showcase/packet-spraying/network.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export type Vector3 = [number, number, number]; export type Color = [number, number, number, number]; diff --git a/examples/showcase/packet-spraying/optics.ts b/examples/showcase/packet-spraying/optics.ts index 934fbb271d..edc0808ebf 100644 --- a/examples/showcase/packet-spraying/optics.ts +++ b/examples/showcase/packet-spraying/optics.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Vector3} from './network'; diff --git a/examples/showcase/packet-spraying/story.ts b/examples/showcase/packet-spraying/story.ts index b7be5ab201..fb0775321c 100644 --- a/examples/showcase/packet-spraying/story.ts +++ b/examples/showcase/packet-spraying/story.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { AGGREGATION_POSITIONS, diff --git a/examples/showcase/persistence/app.ts b/examples/showcase/persistence/app.ts index 0864097192..1b6fd73393 100644 --- a/examples/showcase/persistence/app.ts +++ b/examples/showcase/persistence/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {NumberArray, VariableShaderType} from '@luma.gl/core'; import type {NumericArray} from '@math.gl/types'; diff --git a/examples/showcase/postprocessing/app.ts b/examples/showcase/postprocessing/app.ts index da6c0ce122..767b22b719 100644 --- a/examples/showcase/postprocessing/app.ts +++ b/examples/showcase/postprocessing/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device, Texture} from '@luma.gl/core'; import {AnimationLoopTemplate, ShaderPassRenderer, type AnimationProps} from '@luma.gl/engine'; diff --git a/examples/showcase/postprocessing/effect-catalog.ts b/examples/showcase/postprocessing/effect-catalog.ts index 41f2bdfb5c..75e5d8e303 100644 --- a/examples/showcase/postprocessing/effect-catalog.ts +++ b/examples/showcase/postprocessing/effect-catalog.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { bloom, diff --git a/examples/showcase/postprocessing/kinetic-scene-pass.ts b/examples/showcase/postprocessing/kinetic-scene-pass.ts index 09aebec4ba..8570450598 100644 --- a/examples/showcase/postprocessing/kinetic-scene-pass.ts +++ b/examples/showcase/postprocessing/kinetic-scene-pass.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderPass} from '@luma.gl/shadertools'; diff --git a/examples/showcase/tempest-ocean/app.ts b/examples/showcase/tempest-ocean/app.ts index 4717801296..2279f733f2 100644 --- a/examples/showcase/tempest-ocean/app.ts +++ b/examples/showcase/tempest-ocean/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Device, type Framebuffer, Texture} from '@luma.gl/core'; import { diff --git a/examples/showcase/tempest-ocean/tempest-ocean-audio.ts b/examples/showcase/tempest-ocean/tempest-ocean-audio.ts index 44789cbc37..a3e302c50e 100644 --- a/examples/showcase/tempest-ocean/tempest-ocean-audio.ts +++ b/examples/showcase/tempest-ocean/tempest-ocean-audio.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors const MINIMUM_GAIN = 0.0001; const OCEAN_NOISE_DURATION_SECONDS = 12; diff --git a/examples/showcase/tempest-ocean/tempest-ocean-camera.ts b/examples/showcase/tempest-ocean/tempest-ocean-camera.ts index def3a8fbbe..a91c440136 100644 --- a/examples/showcase/tempest-ocean/tempest-ocean-camera.ts +++ b/examples/showcase/tempest-ocean/tempest-ocean-camera.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {OrbitControllerProps} from '../../orbit-controller'; diff --git a/examples/showcase/tempest-ocean/tempest-ocean-capture.ts b/examples/showcase/tempest-ocean/tempest-ocean-capture.ts index d906e017f6..3744777973 100644 --- a/examples/showcase/tempest-ocean/tempest-ocean-capture.ts +++ b/examples/showcase/tempest-ocean/tempest-ocean-capture.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {fromHalfFloat} from '@luma.gl/shadertools'; diff --git a/examples/showcase/tempest-ocean/tempest-ocean-grid.ts b/examples/showcase/tempest-ocean/tempest-ocean-grid.ts index 6827920b93..d0fab4c55e 100644 --- a/examples/showcase/tempest-ocean/tempest-ocean-grid.ts +++ b/examples/showcase/tempest-ocean/tempest-ocean-grid.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** Immutable draw plan for the procedural tiled ocean mesh. */ export type TempestOceanGridPlan = { diff --git a/examples/showcase/tempest-ocean/tempest-ocean-shaders.ts b/examples/showcase/tempest-ocean/tempest-ocean-shaders.ts index cf0077e016..3ee2a01a6c 100644 --- a/examples/showcase/tempest-ocean/tempest-ocean-shaders.ts +++ b/examples/showcase/tempest-ocean/tempest-ocean-shaders.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors const TEMPEST_OCEAN_SCENE_PARAMETERS = /* wgsl */ `\ struct TempestOceanSceneParameters { diff --git a/examples/text-space-crawl-color.ts b/examples/text-space-crawl-color.ts index 7d17c9e793..b9390600a8 100644 --- a/examples/text-space-crawl-color.ts +++ b/examples/text-space-crawl-color.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {NumberArray4} from '@math.gl/types'; diff --git a/examples/tutorials/hello-cube/app.ts b/examples/tutorials/hello-cube/app.ts index 43d2a4af33..22e654a2a3 100644 --- a/examples/tutorials/hello-cube/app.ts +++ b/examples/tutorials/hello-cube/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {NumberArray, VariableShaderType} from '@luma.gl/core'; import {Texture, UniformStore} from '@luma.gl/core'; diff --git a/examples/tutorials/hello-gltf/app.ts b/examples/tutorials/hello-gltf/app.ts index a5fb84c828..185915326f 100644 --- a/examples/tutorials/hello-gltf/app.ts +++ b/examples/tutorials/hello-gltf/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {AnimationLoopTemplate, AnimationProps, ModelNode} from '@luma.gl/engine'; import {Color, Device, log} from '@luma.gl/core'; diff --git a/examples/tutorials/hello-instanced-cubes/app.ts b/examples/tutorials/hello-instanced-cubes/app.ts index 88166f9961..a9cd85fc42 100644 --- a/examples/tutorials/hello-instanced-cubes/app.ts +++ b/examples/tutorials/hello-instanced-cubes/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer} from '@luma.gl/core'; import {AnimationLoopTemplate, AnimationProps, Model, CubeGeometry} from '@luma.gl/engine'; diff --git a/examples/tutorials/hello-instancing/app.ts b/examples/tutorials/hello-instancing/app.ts index 672598d5cf..406bb4e8ad 100644 --- a/examples/tutorials/hello-instancing/app.ts +++ b/examples/tutorials/hello-instancing/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer} from '@luma.gl/core'; import {AnimationLoopTemplate, AnimationProps, Model} from '@luma.gl/engine'; diff --git a/examples/tutorials/hello-triangle-geometry/app.ts b/examples/tutorials/hello-triangle-geometry/app.ts index b33185053c..faefe94caa 100644 --- a/examples/tutorials/hello-triangle-geometry/app.ts +++ b/examples/tutorials/hello-triangle-geometry/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer} from '@luma.gl/core'; import {AnimationLoopTemplate, AnimationProps, Model} from '@luma.gl/engine'; diff --git a/examples/tutorials/hello-two-cubes/app.ts b/examples/tutorials/hello-two-cubes/app.ts index f38b174fa0..e8bd8b4949 100644 --- a/examples/tutorials/hello-two-cubes/app.ts +++ b/examples/tutorials/hello-two-cubes/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer} from '@luma.gl/core'; import {AnimationLoopTemplate, AnimationProps, Model, CubeGeometry} from '@luma.gl/engine'; diff --git a/examples/tutorials/lighting/app.ts b/examples/tutorials/lighting/app.ts index 6e0861d22e..4cdf81b08f 100644 --- a/examples/tutorials/lighting/app.ts +++ b/examples/tutorials/lighting/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {NumberArray} from '@luma.gl/core'; import type {AnimationProps} from '@luma.gl/engine'; diff --git a/examples/tutorials/shader-hooks/app.ts b/examples/tutorials/shader-hooks/app.ts index ef579f2b55..06f796cf76 100644 --- a/examples/tutorials/shader-hooks/app.ts +++ b/examples/tutorials/shader-hooks/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, NumberArray, UniformStore} from '@luma.gl/core'; import {AnimationLoopTemplate, AnimationProps, Model} from '@luma.gl/engine'; diff --git a/examples/tutorials/shader-modules/app.ts b/examples/tutorials/shader-modules/app.ts index 7efc5dfcb5..c2da56efa1 100644 --- a/examples/tutorials/shader-modules/app.ts +++ b/examples/tutorials/shader-modules/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {NumberArray3} from '@math.gl/types'; import {Buffer} from '@luma.gl/core'; diff --git a/examples/tutorials/shader-plugins/app.ts b/examples/tutorials/shader-plugins/app.ts index d024a47301..4b7b481cb5 100644 --- a/examples/tutorials/shader-plugins/app.ts +++ b/examples/tutorials/shader-plugins/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer} from '@luma.gl/core'; import {AnimationLoopTemplate, AnimationProps, Model} from '@luma.gl/engine'; diff --git a/examples/tutorials/transform-feedback/app.ts b/examples/tutorials/transform-feedback/app.ts index 7c0eff8d28..287e1e9df4 100644 --- a/examples/tutorials/transform-feedback/app.ts +++ b/examples/tutorials/transform-feedback/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer} from '@luma.gl/core'; import {AnimationLoopTemplate, AnimationProps, Model, Swap, BufferTransform} from '@luma.gl/engine'; diff --git a/examples/tutorials/transform/app.ts b/examples/tutorials/transform/app.ts index 68f159c7c8..509df5e86a 100644 --- a/examples/tutorials/transform/app.ts +++ b/examples/tutorials/transform/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, Framebuffer, type ShaderLayout} from '@luma.gl/core'; import {makeArrowFixedSizeListVector, makeGPUTableFromArrowTable} from '@luma.gl/arrow'; diff --git a/examples/v10/gpgpu/src/app.ts b/examples/v10/gpgpu/src/app.ts index ca1060d202..399a0366ab 100644 --- a/examples/v10/gpgpu/src/app.ts +++ b/examples/v10/gpgpu/src/app.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {luma, type Device} from '@luma.gl/core'; import {cleanEvaluate, type GPUDataEvaluator} from '@luma.gl/gpgpu'; diff --git a/examples/v10/gpgpu/src/arrow-data.ts b/examples/v10/gpgpu/src/arrow-data.ts index 9086cc730d..a42c503070 100644 --- a/examples/v10/gpgpu/src/arrow-data.ts +++ b/examples/v10/gpgpu/src/arrow-data.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {getArrowFixedSizeListValues, getArrowVectorBufferSource} from '@luma.gl/arrow'; import {GPUDataEvaluator} from '@luma.gl/gpgpu'; diff --git a/examples/v10/gpgpu/src/expression.ts b/examples/v10/gpgpu/src/expression.ts index 0dde061233..0303555d80 100644 --- a/examples/v10/gpgpu/src/expression.ts +++ b/examples/v10/gpgpu/src/expression.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { abs, diff --git a/examples/v10/gpgpu/src/table-renderer.ts b/examples/v10/gpgpu/src/table-renderer.ts index 81c7a5fbaf..7df7dcb0c3 100644 --- a/examples/v10/gpgpu/src/table-renderer.ts +++ b/examples/v10/gpgpu/src/table-renderer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {GPUDataEvaluator} from '@luma.gl/gpgpu'; import {Virtualizer, observeElementRect, type VirtualItem} from '@tanstack/virtual-core'; diff --git a/modules/anari/src/anari-device.ts b/modules/anari/src/anari-device.ts index f3616d392a..f4e0cd15a0 100644 --- a/modules/anari/src/anari-device.ts +++ b/modules/anari/src/anari-device.ts @@ -1,3 +1,7 @@ +// luma.gl +// SPDX-License-Identifier: MIT +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors + import type {Device} from '@luma.gl/core'; import { ANARIArray, diff --git a/modules/anari/src/anari-objects.ts b/modules/anari/src/anari-objects.ts index 9f6607ad4a..0ea43b7830 100644 --- a/modules/anari/src/anari-objects.ts +++ b/modules/anari/src/anari-objects.ts @@ -1,3 +1,7 @@ +// luma.gl +// SPDX-License-Identifier: MIT +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors + import type {ANARIDevice} from './anari-device'; import type { ANARIArrayData, diff --git a/modules/anari/src/anari-renderer-runtime.ts b/modules/anari/src/anari-renderer-runtime.ts index ee31d860fc..a817badcec 100644 --- a/modules/anari/src/anari-renderer-runtime.ts +++ b/modules/anari/src/anari-renderer-runtime.ts @@ -1,3 +1,7 @@ +// luma.gl +// SPDX-License-Identifier: MIT +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors + import type {ANARIFrame} from './anari-objects'; import type {ANARIFrameStatistics} from './anari-types'; diff --git a/modules/anari/src/anari-rendering-runtime.ts b/modules/anari/src/anari-rendering-runtime.ts index 04560554bb..2c3444145c 100644 --- a/modules/anari/src/anari-rendering-runtime.ts +++ b/modules/anari/src/anari-rendering-runtime.ts @@ -1,3 +1,7 @@ +// luma.gl +// SPDX-License-Identifier: MIT +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors + import {type Device, type Framebuffer, Texture} from '@luma.gl/core'; import {bloomShaderPassPipeline} from '@luma.gl/effects'; import {ShaderPassRenderer} from '@luma.gl/engine'; diff --git a/modules/anari/src/anari-scene-adapter.ts b/modules/anari/src/anari-scene-adapter.ts index 5a410cd8c9..765fc39ff6 100644 --- a/modules/anari/src/anari-scene-adapter.ts +++ b/modules/anari/src/anari-scene-adapter.ts @@ -1,3 +1,7 @@ +// luma.gl +// SPDX-License-Identifier: MIT +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors + import type {Device} from '@luma.gl/core'; import { ConeGeometry, diff --git a/modules/anari/src/anari-types.ts b/modules/anari/src/anari-types.ts index 150d920562..daef2b58f8 100644 --- a/modules/anari/src/anari-types.ts +++ b/modules/anari/src/anari-types.ts @@ -1,3 +1,7 @@ +// luma.gl +// SPDX-License-Identifier: MIT +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors + import type {Texture} from '@luma.gl/core'; import type {NumberArray9, TypedArray} from '@math.gl/core'; import type { diff --git a/modules/anari/src/animation-types.ts b/modules/anari/src/animation-types.ts index f3336bf19e..46b565b91f 100644 --- a/modules/anari/src/animation-types.ts +++ b/modules/anari/src/animation-types.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ANARIMatrix4, ANARIVector3, ANARIVector4} from './anari-types'; diff --git a/modules/anari/src/gltf.ts b/modules/anari/src/gltf.ts index 9e4a445118..35e409309d 100644 --- a/modules/anari/src/gltf.ts +++ b/modules/anari/src/gltf.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { type AnimationBinding, diff --git a/modules/anari/src/index.ts b/modules/anari/src/index.ts index 4d1e00e5bf..945da6bdf9 100644 --- a/modules/anari/src/index.ts +++ b/modules/anari/src/index.ts @@ -1,3 +1,7 @@ +// luma.gl +// SPDX-License-Identifier: MIT +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors + export {ANARIDevice} from './anari-device'; export { ANARIArray, diff --git a/modules/anari/src/schemas.ts b/modules/anari/src/schemas.ts index 8ad027418b..be4e72241f 100644 --- a/modules/anari/src/schemas.ts +++ b/modules/anari/src/schemas.ts @@ -1,3 +1,7 @@ +// luma.gl +// SPDX-License-Identifier: MIT +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors + import {z} from 'zod'; const numberSchema = z.number().finite(); diff --git a/modules/anari/test/gltf-deformation-import.node.spec.ts b/modules/anari/test/gltf-deformation-import.node.spec.ts index 949bdf1396..2c39667c1d 100644 --- a/modules/anari/test/gltf-deformation-import.node.spec.ts +++ b/modules/anari/test/gltf-deformation-import.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {readFile} from 'node:fs/promises'; import {parse} from '@loaders.gl/core'; diff --git a/modules/anari/test/gltf-production-skin.node.spec.ts b/modules/anari/test/gltf-production-skin.node.spec.ts index 70ea85c96e..c157231553 100644 --- a/modules/anari/test/gltf-production-skin.node.spec.ts +++ b/modules/anari/test/gltf-production-skin.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {readFile} from 'node:fs/promises'; import {parse} from '@loaders.gl/core'; diff --git a/modules/anari/test/gltf-production-skin.spec.ts b/modules/anari/test/gltf-production-skin.spec.ts index eb9557afd7..3700ee19f4 100644 --- a/modules/anari/test/gltf-production-skin.spec.ts +++ b/modules/anari/test/gltf-production-skin.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {load} from '@loaders.gl/core'; import {GLTFLoader, postProcessGLTF} from '@loaders.gl/gltf'; diff --git a/modules/arrow-layers/src/index.ts b/modules/arrow-layers/src/index.ts index 040795cc67..1c0a61fe2c 100644 --- a/modules/arrow-layers/src/index.ts +++ b/modules/arrow-layers/src/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export { ArrowPolygonLayer, diff --git a/modules/arrow-layers/src/layers/arrow-layer-input.ts b/modules/arrow-layers/src/layers/arrow-layer-input.ts index 588d89de72..82a84d65c9 100644 --- a/modules/arrow-layers/src/layers/arrow-layer-input.ts +++ b/modules/arrow-layers/src/layers/arrow-layer-input.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { getArrowPaths, diff --git a/modules/arrow-layers/src/layers/arrow-layer-types.ts b/modules/arrow-layers/src/layers/arrow-layer-types.ts index 2ad525c561..86656ddf93 100644 --- a/modules/arrow-layers/src/layers/arrow-layer-types.ts +++ b/modules/arrow-layers/src/layers/arrow-layer-types.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {PickingInfo} from '@deck.gl/core'; import type {Model} from '@luma.gl/engine'; diff --git a/modules/arrow-layers/src/layers/arrow-path-layer.ts b/modules/arrow-layers/src/layers/arrow-path-layer.ts index 83f65f0da4..824d4c0136 100644 --- a/modules/arrow-layers/src/layers/arrow-path-layer.ts +++ b/modules/arrow-layers/src/layers/arrow-path-layer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { Layer, diff --git a/modules/arrow-layers/src/layers/arrow-polygon-layer.ts b/modules/arrow-layers/src/layers/arrow-polygon-layer.ts index 434d348c7a..0610c01b07 100644 --- a/modules/arrow-layers/src/layers/arrow-polygon-layer.ts +++ b/modules/arrow-layers/src/layers/arrow-polygon-layer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { Layer, diff --git a/modules/arrow-layers/src/layers/arrow-text-layer.ts b/modules/arrow-layers/src/layers/arrow-text-layer.ts index 19a203e819..a732512777 100644 --- a/modules/arrow-layers/src/layers/arrow-text-layer.ts +++ b/modules/arrow-layers/src/layers/arrow-text-layer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { Layer, diff --git a/modules/arrow-layers/src/layers/arrow-text-storage-shaders.ts b/modules/arrow-layers/src/layers/arrow-text-storage-shaders.ts index b2b7e423b5..1bf4a6257d 100644 --- a/modules/arrow-layers/src/layers/arrow-text-storage-shaders.ts +++ b/modules/arrow-layers/src/layers/arrow-text-storage-shaders.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderLayout} from '@luma.gl/core'; import {DECK_ARROW_WGSL_COLOR_UTILS} from './arrow-layer-types'; diff --git a/modules/arrow-layers/test/index.ts b/modules/arrow-layers/test/index.ts index 9f6094f1ae..10d3ad7580 100644 --- a/modules/arrow-layers/test/index.ts +++ b/modules/arrow-layers/test/index.ts @@ -1,5 +1,5 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import './layers/arrow-layers.node.spec'; diff --git a/modules/arrow-layers/test/layers/arrow-layers.node.spec.ts b/modules/arrow-layers/test/layers/arrow-layers.node.spec.ts index a5558aa791..17052e5c1f 100644 --- a/modules/arrow-layers/test/layers/arrow-layers.node.spec.ts +++ b/modules/arrow-layers/test/layers/arrow-layers.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {ArrowPathLayer, ArrowPolygonLayer, ArrowTextLayer} from '@deck.gl-community/arrow-layers'; diff --git a/modules/arrow-layers/test/layers/arrow-layers.spec.ts b/modules/arrow-layers/test/layers/arrow-layers.spec.ts index 55114565b1..bb5c6e956c 100644 --- a/modules/arrow-layers/test/layers/arrow-layers.spec.ts +++ b/modules/arrow-layers/test/layers/arrow-layers.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Deck, OrthographicView, type Layer, type PickingInfo} from '@deck.gl/core'; import {ArrowPathLayer, ArrowPolygonLayer, ArrowTextLayer} from '@deck.gl-community/arrow-layers'; diff --git a/modules/arrow/src/arrow/arrow-utils/arrow-column-info.ts b/modules/arrow/src/arrow/arrow-utils/arrow-column-info.ts index 2e3f340e71..9ad96b3bcb 100644 --- a/modules/arrow/src/arrow/arrow-utils/arrow-column-info.ts +++ b/modules/arrow/src/arrow/arrow-utils/arrow-column-info.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {DataType, Table, Vector} from 'apache-arrow'; import { AttributeArrowType, diff --git a/modules/arrow/src/arrow/arrow-utils/arrow-paths.ts b/modules/arrow/src/arrow/arrow-utils/arrow-paths.ts index c72eb4aea4..7eda5c0c12 100644 --- a/modules/arrow/src/arrow/arrow-utils/arrow-paths.ts +++ b/modules/arrow/src/arrow/arrow-utils/arrow-paths.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Data, DataType, Field, RecordBatch, Schema, Table, Vector, makeVector} from 'apache-arrow'; diff --git a/modules/arrow/src/arrow/arrow-utils/arrow-types.ts b/modules/arrow/src/arrow/arrow-utils/arrow-types.ts index 420191e9ce..bbe544ee11 100644 --- a/modules/arrow/src/arrow/arrow-utils/arrow-types.ts +++ b/modules/arrow/src/arrow/arrow-utils/arrow-types.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {SignedDataType, BigTypedArray} from '@luma.gl/core'; import {Data, DataType, FixedSizeList, Float, Int, List, Precision} from 'apache-arrow'; diff --git a/modules/arrow/src/arrow/dggs/dggs-gpu-polygons.ts b/modules/arrow/src/arrow/dggs/dggs-gpu-polygons.ts index 65cd9612bd..f3b9b3f013 100644 --- a/modules/arrow/src/arrow/dggs/dggs-gpu-polygons.ts +++ b/modules/arrow/src/arrow/dggs/dggs-gpu-polygons.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Binding, type Device} from '@luma.gl/core'; import {Computation, DynamicBuffer} from '@luma.gl/engine'; diff --git a/modules/arrow/src/arrow/engine/arrow-geometry.ts b/modules/arrow/src/arrow/engine/arrow-geometry.ts index 79c6e45937..226de3831e 100644 --- a/modules/arrow/src/arrow/engine/arrow-geometry.ts +++ b/modules/arrow/src/arrow/engine/arrow-geometry.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {TypedArray} from '@math.gl/core'; import { diff --git a/modules/arrow/src/arrow/engine/arrow-mesh-types.ts b/modules/arrow/src/arrow/engine/arrow-mesh-types.ts index aefba72f71..f9f95cedae 100644 --- a/modules/arrow/src/arrow/engine/arrow-mesh-types.ts +++ b/modules/arrow/src/arrow/engine/arrow-mesh-types.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {TypedArray} from '@math.gl/core'; import type {Table} from 'apache-arrow'; diff --git a/modules/arrow/src/arrow/engine/arrow-picking.ts b/modules/arrow/src/arrow/engine/arrow-picking.ts index 68b5fb4010..f36912f50b 100644 --- a/modules/arrow/src/arrow/engine/arrow-picking.ts +++ b/modules/arrow/src/arrow/engine/arrow-picking.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device, RenderPass} from '@luma.gl/core'; import { diff --git a/modules/arrow/src/arrow/engine/arrow-shader-layout.ts b/modules/arrow/src/arrow/engine/arrow-shader-layout.ts index 43319887ed..1d1b008123 100644 --- a/modules/arrow/src/arrow/engine/arrow-shader-layout.ts +++ b/modules/arrow/src/arrow/engine/arrow-shader-layout.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type { AttributeShaderType, diff --git a/modules/arrow/src/arrow/gpu/arrow-gpu-data.ts b/modules/arrow/src/arrow/gpu/arrow-gpu-data.ts index 5b1cc38560..57ed471778 100644 --- a/modules/arrow/src/arrow/gpu/arrow-gpu-data.ts +++ b/modules/arrow/src/arrow/gpu/arrow-gpu-data.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {BigTypedArray, Buffer} from '@luma.gl/core'; import type {GPUData, GPUVector} from '@luma.gl/tables'; diff --git a/modules/arrow/src/arrow/gpu/arrow-gpu-table-adapters.ts b/modules/arrow/src/arrow/gpu/arrow-gpu-table-adapters.ts index 519f1b190d..5841830150 100644 --- a/modules/arrow/src/arrow/gpu/arrow-gpu-table-adapters.ts +++ b/modules/arrow/src/arrow/gpu/arrow-gpu-table-adapters.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { Buffer, diff --git a/modules/arrow/src/arrow/gpu/arrow-input-schema.ts b/modules/arrow/src/arrow/gpu/arrow-input-schema.ts index d093e04089..0199f0356c 100644 --- a/modules/arrow/src/arrow/gpu/arrow-input-schema.ts +++ b/modules/arrow/src/arrow/gpu/arrow-input-schema.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import {validateGPUInputVectors, type GPUInputSchema, type GPUInputVectors} from '@luma.gl/tables'; diff --git a/modules/arrow/src/arrow/renderers/arrow-renderer-utils.ts b/modules/arrow/src/arrow/renderers/arrow-renderer-utils.ts index 7de8c3358a..4e03c5d6b9 100644 --- a/modules/arrow/src/arrow/renderers/arrow-renderer-utils.ts +++ b/modules/arrow/src/arrow/renderers/arrow-renderer-utils.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {RecordBatch, Table, Vector, type DataType} from 'apache-arrow'; import type {Device} from '@luma.gl/core'; diff --git a/modules/arrow/src/arrow/renderers/path/conversion/arrow-path-gpu-vectors.ts b/modules/arrow/src/arrow/renderers/path/conversion/arrow-path-gpu-vectors.ts index 82d30633d3..68431cd5b3 100644 --- a/modules/arrow/src/arrow/renderers/path/conversion/arrow-path-gpu-vectors.ts +++ b/modules/arrow/src/arrow/renderers/path/conversion/arrow-path-gpu-vectors.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Device, type ShaderLayout} from '@luma.gl/core'; import { diff --git a/modules/arrow/src/arrow/renderers/path/conversion/arrow-path-storage-gpu-vectors.ts b/modules/arrow/src/arrow/renderers/path/conversion/arrow-path-storage-gpu-vectors.ts index 3a55a70c7b..c8131e6959 100644 --- a/modules/arrow/src/arrow/renderers/path/conversion/arrow-path-storage-gpu-vectors.ts +++ b/modules/arrow/src/arrow/renderers/path/conversion/arrow-path-storage-gpu-vectors.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type Device} from '@luma.gl/core'; import type {VertexList} from '@luma.gl/tables'; diff --git a/modules/arrow/src/arrow/renderers/path/renderers/arrow-path-renderer.ts b/modules/arrow/src/arrow/renderers/path/renderers/arrow-path-renderer.ts index cf89e5621e..6de18b37e3 100644 --- a/modules/arrow/src/arrow/renderers/path/renderers/arrow-path-renderer.ts +++ b/modules/arrow/src/arrow/renderers/path/renderers/arrow-path-renderer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import { diff --git a/modules/arrow/src/arrow/renderers/path/source/arrow-path-source-mapping.ts b/modules/arrow/src/arrow/renderers/path/source/arrow-path-source-mapping.ts index ee75f10afc..0818234e11 100644 --- a/modules/arrow/src/arrow/renderers/path/source/arrow-path-source-mapping.ts +++ b/modules/arrow/src/arrow/renderers/path/source/arrow-path-source-mapping.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {RecordBatch, Table, Vector, type DataType} from 'apache-arrow'; import type {GPUInputDeclaration, GPUInputSchema} from '@luma.gl/tables'; diff --git a/modules/arrow/src/arrow/renderers/path/transforms/close-arrow-paths.ts b/modules/arrow/src/arrow/renderers/path/transforms/close-arrow-paths.ts index 5c7036f03b..9900edafe2 100644 --- a/modules/arrow/src/arrow/renderers/path/transforms/close-arrow-paths.ts +++ b/modules/arrow/src/arrow/renderers/path/transforms/close-arrow-paths.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Binding, type Device, type ShaderLayout} from '@luma.gl/core'; import {Computation, DynamicBuffer} from '@luma.gl/engine'; diff --git a/modules/arrow/src/arrow/renderers/path/transforms/gpu-path-float64-deltas.ts b/modules/arrow/src/arrow/renderers/path/transforms/gpu-path-float64-deltas.ts index 972473251a..24913264f6 100644 --- a/modules/arrow/src/arrow/renderers/path/transforms/gpu-path-float64-deltas.ts +++ b/modules/arrow/src/arrow/renderers/path/transforms/gpu-path-float64-deltas.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Binding, type Device, type ShaderLayout} from '@luma.gl/core'; import {Computation, DynamicBuffer} from '@luma.gl/engine'; diff --git a/modules/arrow/src/arrow/renderers/path/transforms/path-view-origins.ts b/modules/arrow/src/arrow/renderers/path/transforms/path-view-origins.ts index bb31d8e41b..42ddb7c032 100644 --- a/modules/arrow/src/arrow/renderers/path/transforms/path-view-origins.ts +++ b/modules/arrow/src/arrow/renderers/path/transforms/path-view-origins.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {GPUVector} from '@luma.gl/tables'; import {Data, FixedSizeList, Float32, Vector} from 'apache-arrow'; diff --git a/modules/arrow/src/arrow/renderers/polygon/conversion/arrow-polygon-gpu-vectors.ts b/modules/arrow/src/arrow/renderers/polygon/conversion/arrow-polygon-gpu-vectors.ts index 71247a8dd9..c310f62894 100644 --- a/modules/arrow/src/arrow/renderers/polygon/conversion/arrow-polygon-gpu-vectors.ts +++ b/modules/arrow/src/arrow/renderers/polygon/conversion/arrow-polygon-gpu-vectors.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Device} from '@luma.gl/core'; import { diff --git a/modules/arrow/src/arrow/renderers/polygon/renderers/arrow-polygon-renderer.ts b/modules/arrow/src/arrow/renderers/polygon/renderers/arrow-polygon-renderer.ts index 4b2f4fe42f..7bdf980ce0 100644 --- a/modules/arrow/src/arrow/renderers/polygon/renderers/arrow-polygon-renderer.ts +++ b/modules/arrow/src/arrow/renderers/polygon/renderers/arrow-polygon-renderer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {CommandEncoder, Device, RenderPass} from '@luma.gl/core'; import type {ModelProps, PickingManager, PickInfo, PickingShouldPickOptions} from '@luma.gl/engine'; diff --git a/modules/arrow/src/arrow/renderers/polygon/source/arrow-polygon-source-mapping.ts b/modules/arrow/src/arrow/renderers/polygon/source/arrow-polygon-source-mapping.ts index f415fff32c..b14134ae41 100644 --- a/modules/arrow/src/arrow/renderers/polygon/source/arrow-polygon-source-mapping.ts +++ b/modules/arrow/src/arrow/renderers/polygon/source/arrow-polygon-source-mapping.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {RecordBatch, Table, Vector, type DataType} from 'apache-arrow'; import type { diff --git a/modules/arrow/src/arrow/renderers/splats/conversion/make-gpu-splat-data-from-arrow.ts b/modules/arrow/src/arrow/renderers/splats/conversion/make-gpu-splat-data-from-arrow.ts index aa6f081197..bdc4a0894b 100644 --- a/modules/arrow/src/arrow/renderers/splats/conversion/make-gpu-splat-data-from-arrow.ts +++ b/modules/arrow/src/arrow/renderers/splats/conversion/make-gpu-splat-data-from-arrow.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import {makeGPUSplatData, type GPUSplatData, type SplatSource} from '@luma.gl/splats'; diff --git a/modules/arrow/src/arrow/renderers/text/conversion/arrow-text.ts b/modules/arrow/src/arrow/renderers/text/conversion/arrow-text.ts index d4fedae7eb..13538d8b88 100644 --- a/modules/arrow/src/arrow/renderers/text/conversion/arrow-text.ts +++ b/modules/arrow/src/arrow/renderers/text/conversion/arrow-text.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { DataType, diff --git a/modules/arrow/src/arrow/renderers/text/conversion/convert-arrow-text-to-attribute.ts b/modules/arrow/src/arrow/renderers/text/conversion/convert-arrow-text-to-attribute.ts index 98863a6a40..90c9ac6ee3 100644 --- a/modules/arrow/src/arrow/renderers/text/conversion/convert-arrow-text-to-attribute.ts +++ b/modules/arrow/src/arrow/renderers/text/conversion/convert-arrow-text-to-attribute.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {makeGPUVectorFromArrow} from '../../../gpu/arrow-gpu-table-adapters'; import type {Device} from '@luma.gl/core'; diff --git a/modules/arrow/src/arrow/renderers/text/conversion/convert-arrow-text-to-dictionary.ts b/modules/arrow/src/arrow/renderers/text/conversion/convert-arrow-text-to-dictionary.ts index a62e3354c9..dcf0b340b8 100644 --- a/modules/arrow/src/arrow/renderers/text/conversion/convert-arrow-text-to-dictionary.ts +++ b/modules/arrow/src/arrow/renderers/text/conversion/convert-arrow-text-to-dictionary.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import * as arrow from 'apache-arrow'; diff --git a/modules/arrow/src/arrow/renderers/text/conversion/convert-arrow-text-to-storage.ts b/modules/arrow/src/arrow/renderers/text/conversion/convert-arrow-text-to-storage.ts index 06d2f9d5b4..074f1d757f 100644 --- a/modules/arrow/src/arrow/renderers/text/conversion/convert-arrow-text-to-storage.ts +++ b/modules/arrow/src/arrow/renderers/text/conversion/convert-arrow-text-to-storage.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import type {GPUVector} from '@luma.gl/tables'; diff --git a/modules/arrow/src/arrow/renderers/text/conversion/convert-arrow-text-vectors.ts b/modules/arrow/src/arrow/renderers/text/conversion/convert-arrow-text-vectors.ts index 0989f227de..a9d2c7b4c4 100644 --- a/modules/arrow/src/arrow/renderers/text/conversion/convert-arrow-text-vectors.ts +++ b/modules/arrow/src/arrow/renderers/text/conversion/convert-arrow-text-vectors.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type BufferLayout, type Device, type ShaderLayout} from '@luma.gl/core'; import { diff --git a/modules/arrow/src/arrow/renderers/text/conversion/index.ts b/modules/arrow/src/arrow/renderers/text/conversion/index.ts index 14fff1885f..78f7ebeb51 100644 --- a/modules/arrow/src/arrow/renderers/text/conversion/index.ts +++ b/modules/arrow/src/arrow/renderers/text/conversion/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export { buildArrowGlyphLayout, diff --git a/modules/arrow/src/arrow/renderers/text/conversion/make-gpu-text-data-from-arrow.ts b/modules/arrow/src/arrow/renderers/text/conversion/make-gpu-text-data-from-arrow.ts index 2e0ab69da3..620451ca1c 100644 --- a/modules/arrow/src/arrow/renderers/text/conversion/make-gpu-text-data-from-arrow.ts +++ b/modules/arrow/src/arrow/renderers/text/conversion/make-gpu-text-data-from-arrow.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import type {GPUTextData, GPUTextResources, GPUTextStrategy} from '@luma.gl/text'; diff --git a/modules/arrow/src/arrow/renderers/text/renderers/arrow-text-picking.ts b/modules/arrow/src/arrow/renderers/text/renderers/arrow-text-picking.ts index f356d43d49..da0d091261 100644 --- a/modules/arrow/src/arrow/renderers/text/renderers/arrow-text-picking.ts +++ b/modules/arrow/src/arrow/renderers/text/renderers/arrow-text-picking.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type Device, type RenderPass} from '@luma.gl/core'; import { diff --git a/modules/arrow/src/arrow/renderers/text/renderers/arrow-text-renderer.ts b/modules/arrow/src/arrow/renderers/text/renderers/arrow-text-renderer.ts index b60bd24394..aeff624f89 100644 --- a/modules/arrow/src/arrow/renderers/text/renderers/arrow-text-renderer.ts +++ b/modules/arrow/src/arrow/renderers/text/renderers/arrow-text-renderer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type CommandEncoder, type Device, type ShaderLayout} from '@luma.gl/core'; import { diff --git a/modules/arrow/src/arrow/renderers/text/renderers/arrow-text-shaders.ts b/modules/arrow/src/arrow/renderers/text/renderers/arrow-text-shaders.ts index ccb788c967..7460fbbe77 100644 --- a/modules/arrow/src/arrow/renderers/text/renderers/arrow-text-shaders.ts +++ b/modules/arrow/src/arrow/renderers/text/renderers/arrow-text-shaders.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderLayout} from '@luma.gl/core'; import {picking, ShaderInputs} from '@luma.gl/engine'; diff --git a/modules/arrow/src/arrow/renderers/text/source/arrow-text-source-mapping.ts b/modules/arrow/src/arrow/renderers/text/source/arrow-text-source-mapping.ts index 8a46303683..0b910a6708 100644 --- a/modules/arrow/src/arrow/renderers/text/source/arrow-text-source-mapping.ts +++ b/modules/arrow/src/arrow/renderers/text/source/arrow-text-source-mapping.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {RecordBatch, Table, Vector} from 'apache-arrow'; import type {ArrowUtf8TextVector} from '../conversion'; diff --git a/modules/arrow/src/arrow/renderers/text/source/index.ts b/modules/arrow/src/arrow/renderers/text/source/index.ts index 0960fae04c..ef31e5c510 100644 --- a/modules/arrow/src/arrow/renderers/text/source/index.ts +++ b/modules/arrow/src/arrow/renderers/text/source/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export { resolveArrowTextSourceVectors, diff --git a/modules/arrow/src/arrow/vectors/arrow-fixed-size-list.ts b/modules/arrow/src/arrow/vectors/arrow-fixed-size-list.ts index 4a80ae0fd3..d9a34c49fe 100644 --- a/modules/arrow/src/arrow/vectors/arrow-fixed-size-list.ts +++ b/modules/arrow/src/arrow/vectors/arrow-fixed-size-list.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { Data, diff --git a/modules/arrow/src/arrow/vectors/arrow-matrix-gpu-vector.ts b/modules/arrow/src/arrow/vectors/arrow-matrix-gpu-vector.ts index 98627c2a4d..ad602f9538 100644 --- a/modules/arrow/src/arrow/vectors/arrow-matrix-gpu-vector.ts +++ b/modules/arrow/src/arrow/vectors/arrow-matrix-gpu-vector.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Binding, type Device, type ShaderLayout} from '@luma.gl/core'; import {Computation, DynamicBuffer} from '@luma.gl/engine'; diff --git a/modules/arrow/src/arrow/vectors/arrow-matrix-vector.ts b/modules/arrow/src/arrow/vectors/arrow-matrix-vector.ts index ebd10b74ab..fe9613f139 100644 --- a/modules/arrow/src/arrow/vectors/arrow-matrix-vector.ts +++ b/modules/arrow/src/arrow/vectors/arrow-matrix-vector.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { Data, diff --git a/modules/arrow/src/arrow/vectors/arrow-temporal-gpu-vector.ts b/modules/arrow/src/arrow/vectors/arrow-temporal-gpu-vector.ts index f9f279ea95..b34fdc147e 100644 --- a/modules/arrow/src/arrow/vectors/arrow-temporal-gpu-vector.ts +++ b/modules/arrow/src/arrow/vectors/arrow-temporal-gpu-vector.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Binding, type Device, type ShaderLayout} from '@luma.gl/core'; import {Computation, DynamicBuffer} from '@luma.gl/engine'; diff --git a/modules/arrow/src/arrow/vectors/arrow-vector-utils.ts b/modules/arrow/src/arrow/vectors/arrow-vector-utils.ts index b130181245..3cc0184263 100644 --- a/modules/arrow/src/arrow/vectors/arrow-vector-utils.ts +++ b/modules/arrow/src/arrow/vectors/arrow-vector-utils.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { Data, diff --git a/modules/arrow/src/index.ts b/modules/arrow/src/index.ts index 577b6ce43a..d0e68e5bfb 100644 --- a/modules/arrow/src/index.ts +++ b/modules/arrow/src/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export type {NumericArrowType, ArrowColumnInfo} from './arrow/arrow-utils/arrow-types'; export { diff --git a/modules/arrow/test/arrow/analyze-arrow-table.spec.ts b/modules/arrow/test/arrow/analyze-arrow-table.spec.ts index 58c1edd812..7e6329d6ec 100644 --- a/modules/arrow/test/arrow/analyze-arrow-table.spec.ts +++ b/modules/arrow/test/arrow/analyze-arrow-table.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {ARROW_TABLES} from '@luma.gl/arrow/test/data/arrow/make-arrow-tables'; diff --git a/modules/arrow/test/arrow/arrow-column-info.spec.ts b/modules/arrow/test/arrow/arrow-column-info.spec.ts index 180f2fc5a3..d3b7a2b1c5 100644 --- a/modules/arrow/test/arrow/arrow-column-info.spec.ts +++ b/modules/arrow/test/arrow/arrow-column-info.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // import test from 'test/utils/vitest-tape'; // import * as arrow from 'apache-arrow'; diff --git a/modules/arrow/test/arrow/arrow-fixed-size-list.spec.ts b/modules/arrow/test/arrow/arrow-fixed-size-list.spec.ts index afcacdf360..ee5bc19839 100644 --- a/modules/arrow/test/arrow/arrow-fixed-size-list.spec.ts +++ b/modules/arrow/test/arrow/arrow-fixed-size-list.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/arrow/test/arrow/arrow-geometry.spec.ts b/modules/arrow/test/arrow/arrow-geometry.spec.ts index ad40565a91..58a56093ce 100644 --- a/modules/arrow/test/arrow/arrow-geometry.spec.ts +++ b/modules/arrow/test/arrow/arrow-geometry.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/arrow/test/arrow/arrow-gpu-data.node.spec.ts b/modules/arrow/test/arrow/arrow-gpu-data.node.spec.ts index 45efe9bb48..b16b910179 100644 --- a/modules/arrow/test/arrow/arrow-gpu-data.node.spec.ts +++ b/modules/arrow/test/arrow/arrow-gpu-data.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/arrow/test/arrow/arrow-input-schema.spec.ts b/modules/arrow/test/arrow/arrow-input-schema.spec.ts index 71e96195f0..2a0bcc7b38 100644 --- a/modules/arrow/test/arrow/arrow-input-schema.spec.ts +++ b/modules/arrow/test/arrow/arrow-input-schema.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {makeGPUVectorFromArrow, prepareArrowInput, type ArrowInputSchema} from '@luma.gl/arrow'; diff --git a/modules/arrow/test/arrow/arrow-matrix-gpu-vector.spec.ts b/modules/arrow/test/arrow/arrow-matrix-gpu-vector.spec.ts index e2bf326d64..86c435ec79 100644 --- a/modules/arrow/test/arrow/arrow-matrix-gpu-vector.spec.ts +++ b/modules/arrow/test/arrow/arrow-matrix-gpu-vector.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/arrow/test/arrow/arrow-model.spec.ts b/modules/arrow/test/arrow/arrow-model.spec.ts index 892c363400..91c2ed5c83 100644 --- a/modules/arrow/test/arrow/arrow-model.spec.ts +++ b/modules/arrow/test/arrow/arrow-model.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/arrow/test/arrow/arrow-path-model.spec.ts b/modules/arrow/test/arrow/arrow-path-model.spec.ts index d41ce58caa..3ded75d6f8 100644 --- a/modules/arrow/test/arrow/arrow-path-model.spec.ts +++ b/modules/arrow/test/arrow/arrow-path-model.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/arrow/test/arrow/arrow-paths.spec.ts b/modules/arrow/test/arrow/arrow-paths.spec.ts index e607fedf1f..1fdb99622e 100644 --- a/modules/arrow/test/arrow/arrow-paths.spec.ts +++ b/modules/arrow/test/arrow/arrow-paths.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {ARROW_TABLES} from '@luma.gl/arrow/test/data/arrow/make-arrow-tables'; diff --git a/modules/arrow/test/arrow/arrow-point-constant-render.spec.ts b/modules/arrow/test/arrow/arrow-point-constant-render.spec.ts index 14703cf2ea..ef43d6f8f0 100644 --- a/modules/arrow/test/arrow/arrow-point-constant-render.spec.ts +++ b/modules/arrow/test/arrow/arrow-point-constant-render.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {makeArrowFixedSizeListVector} from '@luma.gl/arrow'; diff --git a/modules/arrow/test/arrow/arrow-polygon-model.node.spec.ts b/modules/arrow/test/arrow/arrow-polygon-model.node.spec.ts index e76ae770bc..27b3a6d6a2 100644 --- a/modules/arrow/test/arrow/arrow-polygon-model.node.spec.ts +++ b/modules/arrow/test/arrow/arrow-polygon-model.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {tesselateAsync, tessellateArrowPolygons} from '@luma.gl/arrow'; diff --git a/modules/arrow/test/arrow/arrow-polygon-renderer.spec.ts b/modules/arrow/test/arrow/arrow-polygon-renderer.spec.ts index 76b37f4312..cda9267d7c 100644 --- a/modules/arrow/test/arrow/arrow-polygon-renderer.spec.ts +++ b/modules/arrow/test/arrow/arrow-polygon-renderer.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {ArrowPolygonRenderer, prepareArrowPolygonInput, resolveArrowPickInfo} from '@luma.gl/arrow'; diff --git a/modules/arrow/test/arrow/arrow-polygon-source-mapping.node.spec.ts b/modules/arrow/test/arrow/arrow-polygon-source-mapping.node.spec.ts index f882f61abe..2475f82179 100644 --- a/modules/arrow/test/arrow/arrow-polygon-source-mapping.node.spec.ts +++ b/modules/arrow/test/arrow/arrow-polygon-source-mapping.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {makeArrowFixedSizeListVector, resolveArrowPolygonSourceVectors} from '@luma.gl/arrow'; diff --git a/modules/arrow/test/arrow/arrow-renderer-preparation.node.spec.ts b/modules/arrow/test/arrow/arrow-renderer-preparation.node.spec.ts index d38802d11d..4c7bb1bc66 100644 --- a/modules/arrow/test/arrow/arrow-renderer-preparation.node.spec.ts +++ b/modules/arrow/test/arrow/arrow-renderer-preparation.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/arrow/test/arrow/arrow-shader-layout.spec.ts b/modules/arrow/test/arrow/arrow-shader-layout.spec.ts index 3b58a815de..3b08f9c329 100644 --- a/modules/arrow/test/arrow/arrow-shader-layout.spec.ts +++ b/modules/arrow/test/arrow/arrow-shader-layout.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import type {ArrowColumnInfo} from '@luma.gl/arrow'; diff --git a/modules/arrow/test/arrow/arrow-splats.node.spec.ts b/modules/arrow/test/arrow/arrow-splats.node.spec.ts index f26f96a498..2e3abf1ea8 100644 --- a/modules/arrow/test/arrow/arrow-splats.node.spec.ts +++ b/modules/arrow/test/arrow/arrow-splats.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/arrow/test/arrow/arrow-temporal-gpu-vector.spec.ts b/modules/arrow/test/arrow/arrow-temporal-gpu-vector.spec.ts index 73aad697eb..a851df2833 100644 --- a/modules/arrow/test/arrow/arrow-temporal-gpu-vector.spec.ts +++ b/modules/arrow/test/arrow/arrow-temporal-gpu-vector.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/arrow/test/arrow/arrow-text-renderer.spec.ts b/modules/arrow/test/arrow/arrow-text-renderer.spec.ts index 83e903d123..301eef72a9 100644 --- a/modules/arrow/test/arrow/arrow-text-renderer.spec.ts +++ b/modules/arrow/test/arrow/arrow-text-renderer.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/arrow/test/arrow/arrow-text-shaders.node.spec.ts b/modules/arrow/test/arrow/arrow-text-shaders.node.spec.ts index d10cf39e51..4a9e9e7a62 100644 --- a/modules/arrow/test/arrow/arrow-text-shaders.node.spec.ts +++ b/modules/arrow/test/arrow/arrow-text-shaders.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getArrowTextRenderModules} from '@luma.gl/arrow'; diff --git a/modules/arrow/test/arrow/arrow-text-source-mapping.node.spec.ts b/modules/arrow/test/arrow/arrow-text-source-mapping.node.spec.ts index 1b3c2dc4ee..db4ed835ce 100644 --- a/modules/arrow/test/arrow/arrow-text-source-mapping.node.spec.ts +++ b/modules/arrow/test/arrow/arrow-text-source-mapping.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {makeArrowFixedSizeListVector, resolveArrowTextSourceVectors} from '@luma.gl/arrow'; diff --git a/modules/arrow/test/arrow/arrow-variable-length-attribute-gpu-vector.spec.ts b/modules/arrow/test/arrow/arrow-variable-length-attribute-gpu-vector.spec.ts index aa6f098759..91b16e3eb4 100644 --- a/modules/arrow/test/arrow/arrow-variable-length-attribute-gpu-vector.spec.ts +++ b/modules/arrow/test/arrow/arrow-variable-length-attribute-gpu-vector.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {makeGPUVectorFromArrow, readArrowGPUVectorAsync} from '@luma.gl/arrow'; diff --git a/modules/arrow/test/arrow/dggs-gpu-polygons.node.spec.ts b/modules/arrow/test/arrow/dggs-gpu-polygons.node.spec.ts index ca0bcdab59..d7916f2193 100644 --- a/modules/arrow/test/arrow/dggs-gpu-polygons.node.spec.ts +++ b/modules/arrow/test/arrow/dggs-gpu-polygons.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/arrow/test/arrow/dggs-gpu-polygons.spec.ts b/modules/arrow/test/arrow/dggs-gpu-polygons.spec.ts index beaf4ddd29..2837ff6b39 100644 --- a/modules/arrow/test/arrow/dggs-gpu-polygons.spec.ts +++ b/modules/arrow/test/arrow/dggs-gpu-polygons.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import type {Test} from 'test/utils/vitest-tape'; diff --git a/modules/arrow/test/arrow/get-arrow-data.spec.ts b/modules/arrow/test/arrow/get-arrow-data.spec.ts index 180f2fc5a3..d3b7a2b1c5 100644 --- a/modules/arrow/test/arrow/get-arrow-data.spec.ts +++ b/modules/arrow/test/arrow/get-arrow-data.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // import test from 'test/utils/vitest-tape'; // import * as arrow from 'apache-arrow'; diff --git a/modules/arrow/test/arrow/plain-gpu-table.spec.ts b/modules/arrow/test/arrow/plain-gpu-table.spec.ts index 0f78990722..3cebb9a995 100644 --- a/modules/arrow/test/arrow/plain-gpu-table.spec.ts +++ b/modules/arrow/test/arrow/plain-gpu-table.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/arrow/test/data/arrow/make-arrow-tables.ts b/modules/arrow/test/data/arrow/make-arrow-tables.ts index 0d05b0e42a..f074c75392 100644 --- a/modules/arrow/test/data/arrow/make-arrow-tables.ts +++ b/modules/arrow/test/data/arrow/make-arrow-tables.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import * as arrow from 'apache-arrow'; diff --git a/modules/arrow/test/index.ts b/modules/arrow/test/index.ts index aebca86bfd..435f940932 100644 --- a/modules/arrow/test/index.ts +++ b/modules/arrow/test/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import './arrow/arrow-paths.spec'; import './arrow/arrow-column-info.spec'; diff --git a/modules/arrow/test/test-utils.ts b/modules/arrow/test/test-utils.ts index c49bf0cc19..a77021a9aa 100644 --- a/modules/arrow/test/test-utils.ts +++ b/modules/arrow/test/test-utils.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export function arraysEqual(arr1: ArrayLike, arr2: ArrayLike): boolean { if (arr1.length !== arr2.length) { diff --git a/modules/constants/src/index.ts b/modules/constants/src/index.ts index 9fb32a92f4..549d173443 100644 --- a/modules/constants/src/index.ts +++ b/modules/constants/src/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // WebGL constants export {GL} from './webgl-constants'; diff --git a/modules/constants/src/webgl-constants.ts b/modules/constants/src/webgl-constants.ts index 9c082e3735..6ba0e4b939 100644 --- a/modules/constants/src/webgl-constants.ts +++ b/modules/constants/src/webgl-constants.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /* eslint-disable key-spacing, max-len, no-inline-comments, camelcase */ diff --git a/modules/constants/src/webgl-types.ts b/modules/constants/src/webgl-types.ts index dca38b2db6..acd7a07055 100644 --- a/modules/constants/src/webgl-types.ts +++ b/modules/constants/src/webgl-types.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /* eslint-disable camelcase */ import {GL} from './webgl-constants'; diff --git a/modules/constants/test/index.ts b/modules/constants/test/index.ts index 3e745be730..49d88bec95 100644 --- a/modules/constants/test/index.ts +++ b/modules/constants/test/index.ts @@ -1,5 +1,5 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import './webgl-constants.spec'; diff --git a/modules/constants/test/webgl-constants.spec.ts b/modules/constants/test/webgl-constants.spec.ts index 1784626e76..de4a88e3e4 100644 --- a/modules/constants/test/webgl-constants.spec.ts +++ b/modules/constants/test/webgl-constants.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getWebGLTestDevice} from '@luma.gl/test-utils'; diff --git a/modules/core/src/adapter-utils/bind-groups.ts b/modules/core/src/adapter-utils/bind-groups.ts index 296d5a431d..5e366d9902 100644 --- a/modules/core/src/adapter-utils/bind-groups.ts +++ b/modules/core/src/adapter-utils/bind-groups.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type { BindingDeclaration, diff --git a/modules/core/src/adapter-utils/buffer-layout-utils.ts b/modules/core/src/adapter-utils/buffer-layout-utils.ts index 5dece998a7..c74a12dc47 100644 --- a/modules/core/src/adapter-utils/buffer-layout-utils.ts +++ b/modules/core/src/adapter-utils/buffer-layout-utils.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {log} from '../utils/log'; import type {BufferLayout} from '../adapter/types/buffer-layout'; diff --git a/modules/core/src/adapter-utils/format-compiler-log.ts b/modules/core/src/adapter-utils/format-compiler-log.ts index 5835bb4c87..dd1dc31581 100644 --- a/modules/core/src/adapter-utils/format-compiler-log.ts +++ b/modules/core/src/adapter-utils/format-compiler-log.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {CompilerMessage} from '../adapter/types/compiler-message'; diff --git a/modules/core/src/adapter-utils/get-attribute-from-layouts.ts b/modules/core/src/adapter-utils/get-attribute-from-layouts.ts index f3802c1740..0be221ef60 100644 --- a/modules/core/src/adapter-utils/get-attribute-from-layouts.ts +++ b/modules/core/src/adapter-utils/get-attribute-from-layouts.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {log} from '../utils/log'; import type {PrimitiveDataType, NormalizedDataType} from '../shadertypes/data-types/data-types'; diff --git a/modules/core/src/adapter-utils/is-uniform-value.ts b/modules/core/src/adapter-utils/is-uniform-value.ts index c1992e1f29..f8edd914e1 100644 --- a/modules/core/src/adapter-utils/is-uniform-value.ts +++ b/modules/core/src/adapter-utils/is-uniform-value.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {isNumberArray} from '../utils/is-array'; import {UniformValue} from '../adapter/types/uniforms'; diff --git a/modules/core/src/adapter/adapter.ts b/modules/core/src/adapter/adapter.ts index d6bf0a4d54..81d0d10377 100644 --- a/modules/core/src/adapter/adapter.ts +++ b/modules/core/src/adapter/adapter.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {isBrowser} from '@probe.gl/env'; import {Device, DeviceProps} from './device'; diff --git a/modules/core/src/adapter/canvas-context.ts b/modules/core/src/adapter/canvas-context.ts index 7c2a730390..a0d83df93d 100644 --- a/modules/core/src/adapter/canvas-context.ts +++ b/modules/core/src/adapter/canvas-context.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export type {CanvasContextProps, MutableCanvasContextProps} from './canvas-surface'; import {CanvasSurface} from './canvas-surface'; diff --git a/modules/core/src/adapter/canvas-observer.ts b/modules/core/src/adapter/canvas-observer.ts index 27d662b7c9..5e59f9c09f 100644 --- a/modules/core/src/adapter/canvas-observer.ts +++ b/modules/core/src/adapter/canvas-observer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** Options and callbacks used by {@link CanvasObserver}. */ type CanvasObserverProps = { diff --git a/modules/core/src/adapter/canvas-surface.ts b/modules/core/src/adapter/canvas-surface.ts index b50f84d256..63d07b9146 100644 --- a/modules/core/src/adapter/canvas-surface.ts +++ b/modules/core/src/adapter/canvas-surface.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {isBrowser} from '@probe.gl/env'; import type {Device} from './device'; diff --git a/modules/core/src/adapter/device-defaults.ts b/modules/core/src/adapter/device-defaults.ts index b28e839281..2d332ba496 100644 --- a/modules/core/src/adapter/device-defaults.ts +++ b/modules/core/src/adapter/device-defaults.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {log} from '../utils/log'; import type {DeviceProps} from './device'; diff --git a/modules/core/src/adapter/device.ts b/modules/core/src/adapter/device.ts index 4352bd6ee1..87797519e5 100644 --- a/modules/core/src/adapter/device.ts +++ b/modules/core/src/adapter/device.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {StatsManager, lumaStats} from '../utils/stats-manager'; import {log} from '../utils/log'; diff --git a/modules/core/src/adapter/luma.ts b/modules/core/src/adapter/luma.ts index 1c6907a763..aa665560d5 100644 --- a/modules/core/src/adapter/luma.ts +++ b/modules/core/src/adapter/luma.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Log} from '@probe.gl/log'; import type {Device, DeviceProps} from './device'; diff --git a/modules/core/src/adapter/presentation-context.ts b/modules/core/src/adapter/presentation-context.ts index c70ab0967a..72a7a1e26c 100644 --- a/modules/core/src/adapter/presentation-context.ts +++ b/modules/core/src/adapter/presentation-context.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {CanvasSurface} from './canvas-surface'; diff --git a/modules/core/src/adapter/resources/buffer.ts b/modules/core/src/adapter/resources/buffer.ts index 728879a592..0067fd3789 100644 --- a/modules/core/src/adapter/resources/buffer.ts +++ b/modules/core/src/adapter/resources/buffer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '../device'; import {Resource, ResourceProps} from './resource'; diff --git a/modules/core/src/adapter/resources/command-buffer.ts b/modules/core/src/adapter/resources/command-buffer.ts index bb62544e86..68d491ecc5 100644 --- a/modules/core/src/adapter/resources/command-buffer.ts +++ b/modules/core/src/adapter/resources/command-buffer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Device} from '../device'; import {Resource, ResourceProps} from './resource'; diff --git a/modules/core/src/adapter/resources/command-encoder.ts b/modules/core/src/adapter/resources/command-encoder.ts index dbcd9a35e2..bb9d62b554 100644 --- a/modules/core/src/adapter/resources/command-encoder.ts +++ b/modules/core/src/adapter/resources/command-encoder.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // import type {TypedArray} from '@math.gl/types'; import {Device} from '../device'; diff --git a/modules/core/src/adapter/resources/compute-pass.ts b/modules/core/src/adapter/resources/compute-pass.ts index 323529cb70..152c546e75 100644 --- a/modules/core/src/adapter/resources/compute-pass.ts +++ b/modules/core/src/adapter/resources/compute-pass.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Resource, ResourceProps} from './resource'; import {ComputePipeline} from './compute-pipeline'; diff --git a/modules/core/src/adapter/resources/compute-pipeline.ts b/modules/core/src/adapter/resources/compute-pipeline.ts index 2b43b93152..dcf0a3709f 100644 --- a/modules/core/src/adapter/resources/compute-pipeline.ts +++ b/modules/core/src/adapter/resources/compute-pipeline.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Resource, ResourceProps} from './resource'; import type {ComputeShaderLayout, Bindings, BindingsByGroup} from '../types/shader-layout'; diff --git a/modules/core/src/adapter/resources/external-texture.ts b/modules/core/src/adapter/resources/external-texture.ts index 899c90302b..2d82368eff 100644 --- a/modules/core/src/adapter/resources/external-texture.ts +++ b/modules/core/src/adapter/resources/external-texture.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '../device'; import type {Sampler, SamplerProps} from './sampler'; diff --git a/modules/core/src/adapter/resources/fence.ts b/modules/core/src/adapter/resources/fence.ts index fe4ef190f2..4d695716da 100644 --- a/modules/core/src/adapter/resources/fence.ts +++ b/modules/core/src/adapter/resources/fence.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '../device'; import {Resource, type ResourceProps} from './resource'; diff --git a/modules/core/src/adapter/resources/framebuffer.ts b/modules/core/src/adapter/resources/framebuffer.ts index c291294c6e..6e9df56607 100644 --- a/modules/core/src/adapter/resources/framebuffer.ts +++ b/modules/core/src/adapter/resources/framebuffer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type { TextureFormatColor, diff --git a/modules/core/src/adapter/resources/pipeline-layout.ts b/modules/core/src/adapter/resources/pipeline-layout.ts index 9b6b6c0cfd..ae8e49d922 100644 --- a/modules/core/src/adapter/resources/pipeline-layout.ts +++ b/modules/core/src/adapter/resources/pipeline-layout.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Device} from '../device'; import {ShaderLayout} from '../types/shader-layout'; diff --git a/modules/core/src/adapter/resources/query-set.ts b/modules/core/src/adapter/resources/query-set.ts index 63937406c3..743ade9282 100644 --- a/modules/core/src/adapter/resources/query-set.ts +++ b/modules/core/src/adapter/resources/query-set.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '../device'; import {Resource, ResourceProps} from './resource'; diff --git a/modules/core/src/adapter/resources/render-bundle.ts b/modules/core/src/adapter/resources/render-bundle.ts index c4f914b002..4597823481 100644 --- a/modules/core/src/adapter/resources/render-bundle.ts +++ b/modules/core/src/adapter/resources/render-bundle.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type { TextureFormatColor, diff --git a/modules/core/src/adapter/resources/render-pass.ts b/modules/core/src/adapter/resources/render-pass.ts index 93a180c37b..3cf34ac1e3 100644 --- a/modules/core/src/adapter/resources/render-pass.ts +++ b/modules/core/src/adapter/resources/render-pass.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {NumberArray4, TypedArray} from '@math.gl/types'; import type {Device} from '../device'; diff --git a/modules/core/src/adapter/resources/render-pipeline.ts b/modules/core/src/adapter/resources/render-pipeline.ts index 945bfd59e8..7d5bc854cc 100644 --- a/modules/core/src/adapter/resources/render-pipeline.ts +++ b/modules/core/src/adapter/resources/render-pipeline.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '../device'; import type {PrimitiveTopology, RenderPipelineParameters} from '../types/parameters'; diff --git a/modules/core/src/adapter/resources/resource.ts b/modules/core/src/adapter/resources/resource.ts index 923b503e24..1d580c3f6c 100644 --- a/modules/core/src/adapter/resources/resource.ts +++ b/modules/core/src/adapter/resources/resource.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '../device'; import type {Stat, Stats} from '@probe.gl/stats'; diff --git a/modules/core/src/adapter/resources/sampler.ts b/modules/core/src/adapter/resources/sampler.ts index 430774e3eb..68d0b5203e 100644 --- a/modules/core/src/adapter/resources/sampler.ts +++ b/modules/core/src/adapter/resources/sampler.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '../device'; import {CompareFunction} from '../types/parameters'; diff --git a/modules/core/src/adapter/resources/shader.ts b/modules/core/src/adapter/resources/shader.ts index a2c4ebbe43..3971e1d6e0 100644 --- a/modules/core/src/adapter/resources/shader.ts +++ b/modules/core/src/adapter/resources/shader.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '../device'; import {Resource, ResourceProps} from './resource'; diff --git a/modules/core/src/adapter/resources/shared-render-pipeline.ts b/modules/core/src/adapter/resources/shared-render-pipeline.ts index d34795d72f..e1116392d3 100644 --- a/modules/core/src/adapter/resources/shared-render-pipeline.ts +++ b/modules/core/src/adapter/resources/shared-render-pipeline.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '../device'; import type {Shader} from './shader'; diff --git a/modules/core/src/adapter/resources/texture-view.ts b/modules/core/src/adapter/resources/texture-view.ts index ba2eececca..f344b8c4ad 100644 --- a/modules/core/src/adapter/resources/texture-view.ts +++ b/modules/core/src/adapter/resources/texture-view.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '../device'; import type {Texture} from './texture'; diff --git a/modules/core/src/adapter/resources/texture.ts b/modules/core/src/adapter/resources/texture.ts index f8306f04b3..27507c9593 100644 --- a/modules/core/src/adapter/resources/texture.ts +++ b/modules/core/src/adapter/resources/texture.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type TypedArray} from '@math.gl/types'; import {type Device} from '../device'; diff --git a/modules/core/src/adapter/resources/transform-feedback.ts b/modules/core/src/adapter/resources/transform-feedback.ts index 844a500035..3bda830cd4 100644 --- a/modules/core/src/adapter/resources/transform-feedback.ts +++ b/modules/core/src/adapter/resources/transform-feedback.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '../device'; import {PrimitiveTopology} from '../types/parameters'; diff --git a/modules/core/src/adapter/resources/vertex-array.ts b/modules/core/src/adapter/resources/vertex-array.ts index b4990f10e0..3cd911903d 100644 --- a/modules/core/src/adapter/resources/vertex-array.ts +++ b/modules/core/src/adapter/resources/vertex-array.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {TypedArray} from '../../types'; import type {Device} from '../device'; diff --git a/modules/core/src/adapter/types/attachments.ts b/modules/core/src/adapter/types/attachments.ts index 310b80ff09..4e588f4431 100644 --- a/modules/core/src/adapter/types/attachments.ts +++ b/modules/core/src/adapter/types/attachments.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type { TextureFormatColor, diff --git a/modules/core/src/adapter/types/buffer-layout.ts b/modules/core/src/adapter/types/buffer-layout.ts index bdeba8275a..967b46254a 100644 --- a/modules/core/src/adapter/types/buffer-layout.ts +++ b/modules/core/src/adapter/types/buffer-layout.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {VertexFormat} from '../../shadertypes/vertex-types/vertex-formats'; diff --git a/modules/core/src/adapter/types/compiler-message.ts b/modules/core/src/adapter/types/compiler-message.ts index a2ccb7293e..0145eb2958 100644 --- a/modules/core/src/adapter/types/compiler-message.ts +++ b/modules/core/src/adapter/types/compiler-message.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** WebGPU style compiler message */ export type CompilerMessage = { diff --git a/modules/core/src/adapter/types/parameters.ts b/modules/core/src/adapter/types/parameters.ts index cccee4fc54..1edbd0a91c 100644 --- a/modules/core/src/adapter/types/parameters.ts +++ b/modules/core/src/adapter/types/parameters.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {NumberArray4, NumberArray6} from '@math.gl/types'; import {TextureFormatDepthStencil} from '../../shadertypes/texture-types/texture-formats'; diff --git a/modules/core/src/adapter/types/shader-layout.ts b/modules/core/src/adapter/types/shader-layout.ts index 1a3520437c..cb8e1ff0a3 100644 --- a/modules/core/src/adapter/types/shader-layout.ts +++ b/modules/core/src/adapter/types/shader-layout.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type TextureFormat} from '../../shadertypes/texture-types/texture-formats'; import { diff --git a/modules/core/src/adapter/types/uniforms.ts b/modules/core/src/adapter/types/uniforms.ts index 0db5d8d10e..c0b8cb0106 100644 --- a/modules/core/src/adapter/types/uniforms.ts +++ b/modules/core/src/adapter/types/uniforms.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {NumericArray} from '@math.gl/types'; diff --git a/modules/core/src/factories/bind-group-factory.ts b/modules/core/src/factories/bind-group-factory.ts index 788453ff10..6ac964efff 100644 --- a/modules/core/src/factories/bind-group-factory.ts +++ b/modules/core/src/factories/bind-group-factory.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type { Bindings, diff --git a/modules/core/src/factories/core-module-state.ts b/modules/core/src/factories/core-module-state.ts index fc5180420e..ca977425e0 100644 --- a/modules/core/src/factories/core-module-state.ts +++ b/modules/core/src/factories/core-module-state.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {PipelineFactory} from './pipeline-factory'; import type {ShaderFactory} from './shader-factory'; diff --git a/modules/core/src/factories/pipeline-factory.ts b/modules/core/src/factories/pipeline-factory.ts index 5186802c4f..ed33b06799 100644 --- a/modules/core/src/factories/pipeline-factory.ts +++ b/modules/core/src/factories/pipeline-factory.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Device} from '../adapter/device'; import {ComputePipeline, type ComputePipelineProps} from '../adapter/resources/compute-pipeline'; diff --git a/modules/core/src/factories/shader-factory.ts b/modules/core/src/factories/shader-factory.ts index bb79c66f56..32c532bf70 100644 --- a/modules/core/src/factories/shader-factory.ts +++ b/modules/core/src/factories/shader-factory.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Device} from '../adapter/device'; import {Shader, type ShaderProps} from '../adapter/resources/shader'; diff --git a/modules/core/src/index.ts b/modules/core/src/index.ts index 42019cd33a..ba806c723a 100644 --- a/modules/core/src/index.ts +++ b/modules/core/src/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // MAIN API ACCESS POINT export type {AttachDeviceProps, CreateDeviceProps} from './adapter/luma'; diff --git a/modules/core/src/portable/shader-block-writer.ts b/modules/core/src/portable/shader-block-writer.ts index fc72c6dcc3..a6dc27fc29 100644 --- a/modules/core/src/portable/shader-block-writer.ts +++ b/modules/core/src/portable/shader-block-writer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {CompositeUniformValue, UniformValue} from '../adapter/types/uniforms'; import {getScratchArrayBuffer} from '../utils/array-utils-flat'; diff --git a/modules/core/src/portable/uniform-block.ts b/modules/core/src/portable/uniform-block.ts index 27cbcbaa34..52764d1b77 100644 --- a/modules/core/src/portable/uniform-block.ts +++ b/modules/core/src/portable/uniform-block.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {VariableShaderType} from '../shadertypes/shader-types/shader-types'; import type {UniformValue} from '../adapter/types/uniforms'; diff --git a/modules/core/src/portable/uniform-store.ts b/modules/core/src/portable/uniform-store.ts index ef9232317d..24db59a47d 100644 --- a/modules/core/src/portable/uniform-store.ts +++ b/modules/core/src/portable/uniform-store.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {CompositeShaderType} from '../shadertypes/shader-types/shader-types'; import type {CompositeUniformValue} from '../adapter/types/uniforms'; diff --git a/modules/core/src/shadertypes/data-types/data-type-decoder.ts b/modules/core/src/shadertypes/data-types/data-type-decoder.ts index a3ac95a5d7..3ac4ad63c4 100644 --- a/modules/core/src/shadertypes/data-types/data-type-decoder.ts +++ b/modules/core/src/shadertypes/data-types/data-type-decoder.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {TypedArray, TypedArrayConstructor} from '../../types'; import type { diff --git a/modules/core/src/shadertypes/data-types/data-types.ts b/modules/core/src/shadertypes/data-types/data-types.ts index 16680bb91e..aab1e1fe01 100644 --- a/modules/core/src/shadertypes/data-types/data-types.ts +++ b/modules/core/src/shadertypes/data-types/data-types.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** * Primitive data types that shaders can perform calculations in and declare variables with. diff --git a/modules/core/src/shadertypes/data-types/decode-data-types.ts b/modules/core/src/shadertypes/data-types/decode-data-types.ts index a27655736b..f7e4860871 100644 --- a/modules/core/src/shadertypes/data-types/decode-data-types.ts +++ b/modules/core/src/shadertypes/data-types/decode-data-types.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { getFloat16ArrayConstructor, diff --git a/modules/core/src/shadertypes/image-types/image-types.ts b/modules/core/src/shadertypes/image-types/image-types.ts index c337f38d46..a73fb2c96c 100644 --- a/modules/core/src/shadertypes/image-types/image-types.ts +++ b/modules/core/src/shadertypes/image-types/image-types.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** * Built-in data types that can be used to initialize textures diff --git a/modules/core/src/shadertypes/shader-types/shader-block-layout.ts b/modules/core/src/shadertypes/shader-types/shader-block-layout.ts index dc027e2f63..338ca2dad7 100644 --- a/modules/core/src/shadertypes/shader-types/shader-block-layout.ts +++ b/modules/core/src/shadertypes/shader-types/shader-block-layout.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {PrimitiveDataType} from '../data-types/data-types'; import type {CompositeShaderType, VariableShaderType} from './shader-types'; diff --git a/modules/core/src/shadertypes/shader-types/shader-type-decoder.ts b/modules/core/src/shadertypes/shader-types/shader-type-decoder.ts index 823c62eb5d..fc5e8d8d2c 100644 --- a/modules/core/src/shadertypes/shader-types/shader-type-decoder.ts +++ b/modules/core/src/shadertypes/shader-types/shader-type-decoder.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type PrimitiveDataType} from '../data-types/data-types'; import { diff --git a/modules/core/src/shadertypes/shader-types/shader-types.ts b/modules/core/src/shadertypes/shader-types/shader-types.ts index ed7305a603..52aee55f90 100644 --- a/modules/core/src/shadertypes/shader-types/shader-types.ts +++ b/modules/core/src/shadertypes/shader-types/shader-types.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {PrimitiveDataType} from '../data-types/data-types'; diff --git a/modules/core/src/shadertypes/texture-types/pixel-utils.ts b/modules/core/src/shadertypes/texture-types/pixel-utils.ts index f6cbcc1622..c68416d819 100644 --- a/modules/core/src/shadertypes/texture-types/pixel-utils.ts +++ b/modules/core/src/shadertypes/texture-types/pixel-utils.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export type ImageData = { /** Offset into the data (in addition to any offset built-in to the ArrayBufferView) */ diff --git a/modules/core/src/shadertypes/texture-types/texture-format-decoder.ts b/modules/core/src/shadertypes/texture-types/texture-format-decoder.ts index 5b68670c03..12242a20ba 100644 --- a/modules/core/src/shadertypes/texture-types/texture-format-decoder.ts +++ b/modules/core/src/shadertypes/texture-types/texture-format-decoder.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {NormalizedDataType} from '../data-types/data-types'; import {dataTypeDecoder} from '../data-types/data-type-decoder'; diff --git a/modules/core/src/shadertypes/texture-types/texture-format-generics.ts b/modules/core/src/shadertypes/texture-types/texture-format-generics.ts index 1497f9f83e..5c5cfb94b1 100644 --- a/modules/core/src/shadertypes/texture-types/texture-format-generics.ts +++ b/modules/core/src/shadertypes/texture-types/texture-format-generics.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { type TextureFormat, diff --git a/modules/core/src/shadertypes/texture-types/texture-format-table.ts b/modules/core/src/shadertypes/texture-types/texture-format-table.ts index 9163bbeda3..fbfea3e45f 100644 --- a/modules/core/src/shadertypes/texture-types/texture-format-table.ts +++ b/modules/core/src/shadertypes/texture-types/texture-format-table.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { TextureFormat, diff --git a/modules/core/src/shadertypes/texture-types/texture-formats.ts b/modules/core/src/shadertypes/texture-types/texture-formats.ts index b9c123ced6..f25ce955ef 100644 --- a/modules/core/src/shadertypes/texture-types/texture-formats.ts +++ b/modules/core/src/shadertypes/texture-types/texture-formats.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type { NormalizedDataType, diff --git a/modules/core/src/shadertypes/texture-types/texture-layout.ts b/modules/core/src/shadertypes/texture-types/texture-layout.ts index b297b787a7..cf74c0e336 100644 --- a/modules/core/src/shadertypes/texture-types/texture-layout.ts +++ b/modules/core/src/shadertypes/texture-types/texture-layout.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {TypedArray} from '@math.gl/types'; import {type TextureFormat, type TextureMemoryLayout} from './texture-formats'; diff --git a/modules/core/src/shadertypes/vertex-types/vertex-format-decoder.ts b/modules/core/src/shadertypes/vertex-types/vertex-format-decoder.ts index b794112136..773f2772d8 100644 --- a/modules/core/src/shadertypes/vertex-types/vertex-format-decoder.ts +++ b/modules/core/src/shadertypes/vertex-types/vertex-format-decoder.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {TypedArray} from '../../types'; import type { diff --git a/modules/core/src/shadertypes/vertex-types/vertex-formats.ts b/modules/core/src/shadertypes/vertex-types/vertex-formats.ts index 131bdde29b..709658e354 100644 --- a/modules/core/src/shadertypes/vertex-types/vertex-formats.ts +++ b/modules/core/src/shadertypes/vertex-types/vertex-formats.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { DataTypeIsIntegerT, diff --git a/modules/core/src/types.ts b/modules/core/src/types.ts index 364d9a07e7..466f31feaf 100644 --- a/modules/core/src/types.ts +++ b/modules/core/src/types.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** TypeScript type covering all typed arrays */ import type {TypedArray, NumberArray} from '@math.gl/types'; diff --git a/modules/core/src/utils/array-equal.ts b/modules/core/src/utils/array-equal.ts index df1307a889..5a61aaaa13 100644 --- a/modules/core/src/utils/array-equal.ts +++ b/modules/core/src/utils/array-equal.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {isNumberArray} from './is-array'; diff --git a/modules/core/src/utils/array-utils-flat.ts b/modules/core/src/utils/array-utils-flat.ts index 4253502240..e7986a3381 100644 --- a/modules/core/src/utils/array-utils-flat.ts +++ b/modules/core/src/utils/array-utils-flat.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {TypedArray} from '../types'; diff --git a/modules/core/src/utils/assert.ts b/modules/core/src/utils/assert.ts index 15c013e1ce..512f108c43 100644 --- a/modules/core/src/utils/assert.ts +++ b/modules/core/src/utils/assert.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** Throws if condition is true and narrows type */ export function assert(condition: unknown, message?: string): asserts condition { diff --git a/modules/core/src/utils/is-array.ts b/modules/core/src/utils/is-array.ts index 4c8bdb7b10..7d058c8561 100644 --- a/modules/core/src/utils/is-array.ts +++ b/modules/core/src/utils/is-array.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {TypedArray, NumberArray} from '../types'; diff --git a/modules/core/src/utils/log.ts b/modules/core/src/utils/log.ts index e47b152d31..1a9db8fe08 100644 --- a/modules/core/src/utils/log.ts +++ b/modules/core/src/utils/log.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Log} from '@probe.gl/log'; diff --git a/modules/core/src/utils/promise-utils.ts b/modules/core/src/utils/promise-utils.ts index 99bc4fae79..f154b96177 100644 --- a/modules/core/src/utils/promise-utils.ts +++ b/modules/core/src/utils/promise-utils.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // TODO - replace with Promise.withResolvers once we upgrade TS baseline export function withResolvers(): { diff --git a/modules/core/src/utils/stats-manager.ts b/modules/core/src/utils/stats-manager.ts index 31ba4477d4..d7d58d2483 100644 --- a/modules/core/src/utils/stats-manager.ts +++ b/modules/core/src/utils/stats-manager.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Stat, Stats} from '@probe.gl/stats'; diff --git a/modules/core/src/utils/uid.ts b/modules/core/src/utils/uid.ts index 74bdb6fe76..941cc07903 100644 --- a/modules/core/src/utils/uid.ts +++ b/modules/core/src/utils/uid.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors const uidCounters: Record = {}; diff --git a/modules/core/test/adapter-utils/buffer-layout-utils.spec.ts b/modules/core/test/adapter-utils/buffer-layout-utils.spec.ts index 27910ee868..785d844f18 100644 --- a/modules/core/test/adapter-utils/buffer-layout-utils.spec.ts +++ b/modules/core/test/adapter-utils/buffer-layout-utils.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/core/test/adapter-utils/format-compiler-log.node.spec.ts b/modules/core/test/adapter-utils/format-compiler-log.node.spec.ts index fb38b62b89..281eb249f7 100644 --- a/modules/core/test/adapter-utils/format-compiler-log.node.spec.ts +++ b/modules/core/test/adapter-utils/format-compiler-log.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerFormatCompilerLogTests} from './format-compiler-log.spec.shared'; diff --git a/modules/core/test/adapter-utils/format-compiler-log.spec.shared.ts b/modules/core/test/adapter-utils/format-compiler-log.spec.shared.ts index 90e3f2d790..9d0e1f5f74 100644 --- a/modules/core/test/adapter-utils/format-compiler-log.spec.shared.ts +++ b/modules/core/test/adapter-utils/format-compiler-log.spec.shared.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {CompilerMessage} from '@luma.gl/core'; import {formatCompilerLog} from '@luma.gl/core/adapter-utils/format-compiler-log'; diff --git a/modules/core/test/adapter-utils/format-compiler-log.spec.ts b/modules/core/test/adapter-utils/format-compiler-log.spec.ts index fb38b62b89..281eb249f7 100644 --- a/modules/core/test/adapter-utils/format-compiler-log.spec.ts +++ b/modules/core/test/adapter-utils/format-compiler-log.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerFormatCompilerLogTests} from './format-compiler-log.spec.shared'; diff --git a/modules/core/test/adapter-utils/get-attribute-from-layout.spec.ts b/modules/core/test/adapter-utils/get-attribute-from-layout.spec.ts index 5887d2acb1..2ad6c435f3 100644 --- a/modules/core/test/adapter-utils/get-attribute-from-layout.spec.ts +++ b/modules/core/test/adapter-utils/get-attribute-from-layout.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/core/test/adapter-utils/is-uniform-value.spec.ts b/modules/core/test/adapter-utils/is-uniform-value.spec.ts index 3e01b7fbc3..116381f948 100644 --- a/modules/core/test/adapter-utils/is-uniform-value.spec.ts +++ b/modules/core/test/adapter-utils/is-uniform-value.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {isUniformValue} from '@luma.gl/core/adapter-utils/is-uniform-value'; import {getWebGLTestDevice} from '@luma.gl/test-utils'; diff --git a/modules/core/test/adapter/canvas-context.spec.ts b/modules/core/test/adapter/canvas-context.spec.ts index ca1e6bb02a..d54924d101 100644 --- a/modules/core/test/adapter/canvas-context.spec.ts +++ b/modules/core/test/adapter/canvas-context.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import type {CanvasContextProps, PresentationContextProps} from '@luma.gl/core'; diff --git a/modules/core/test/adapter/canvas-observer.spec.ts b/modules/core/test/adapter/canvas-observer.spec.ts index 96e2ad9f61..fc3bf7650a 100644 --- a/modules/core/test/adapter/canvas-observer.spec.ts +++ b/modules/core/test/adapter/canvas-observer.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {isBrowser} from '@probe.gl/env'; diff --git a/modules/core/test/adapter/device-helpers/device-info.spec.ts b/modules/core/test/adapter/device-helpers/device-info.spec.ts index 62f92cfe0e..e14c96ce69 100644 --- a/modules/core/test/adapter/device-helpers/device-info.spec.ts +++ b/modules/core/test/adapter/device-helpers/device-info.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getTestDevices, getWebGLTestDevice} from '@luma.gl/test-utils'; diff --git a/modules/core/test/adapter/device-helpers/set-device-parameters.spec.ts b/modules/core/test/adapter/device-helpers/set-device-parameters.spec.ts index d1f3813806..7828f71350 100644 --- a/modules/core/test/adapter/device-helpers/set-device-parameters.spec.ts +++ b/modules/core/test/adapter/device-helpers/set-device-parameters.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test, {Test} from 'test/utils/vitest-tape'; import {getWebGLTestDevice} from '@luma.gl/test-utils'; diff --git a/modules/core/test/adapter/device.spec.ts b/modules/core/test/adapter/device.spec.ts index 49c2dbaa7b..6e675d777f 100644 --- a/modules/core/test/adapter/device.spec.ts +++ b/modules/core/test/adapter/device.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, Texture, luma} from '@luma.gl/core'; diff --git a/modules/core/test/adapter/helpers/parse-shader-compiler-log.spec.ts b/modules/core/test/adapter/helpers/parse-shader-compiler-log.spec.ts index 6fdada8750..6c61f957b7 100644 --- a/modules/core/test/adapter/helpers/parse-shader-compiler-log.spec.ts +++ b/modules/core/test/adapter/helpers/parse-shader-compiler-log.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /* eslint-disable quotes */ diff --git a/modules/core/test/adapter/luma.spec.ts b/modules/core/test/adapter/luma.spec.ts index bb4ade4b64..5ea1fc6525 100644 --- a/modules/core/test/adapter/luma.spec.ts +++ b/modules/core/test/adapter/luma.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {nullAdapter} from '@luma.gl/test-utils'; diff --git a/modules/core/test/adapter/resources/buffer.spec.ts b/modules/core/test/adapter/resources/buffer.spec.ts index aa9b967ffc..992ef3b29b 100644 --- a/modules/core/test/adapter/resources/buffer.spec.ts +++ b/modules/core/test/adapter/resources/buffer.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /* eslint-disable no-continue */ diff --git a/modules/core/test/adapter/resources/command-encoder.spec.ts b/modules/core/test/adapter/resources/command-encoder.spec.ts index d7e7dc4411..273b781208 100644 --- a/modules/core/test/adapter/resources/command-encoder.spec.ts +++ b/modules/core/test/adapter/resources/command-encoder.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test, {Test} from 'test/utils/vitest-tape'; import { diff --git a/modules/core/test/adapter/resources/compute-pipeline.spec.ts b/modules/core/test/adapter/resources/compute-pipeline.spec.ts index bfb29cbf52..350d407d85 100644 --- a/modules/core/test/adapter/resources/compute-pipeline.spec.ts +++ b/modules/core/test/adapter/resources/compute-pipeline.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getWebGPUTestDevice, getWebGPUTestDevices} from '@luma.gl/test-utils'; diff --git a/modules/core/test/adapter/resources/fence.spec.ts b/modules/core/test/adapter/resources/fence.spec.ts index c45b6cf771..f821b42d55 100644 --- a/modules/core/test/adapter/resources/fence.spec.ts +++ b/modules/core/test/adapter/resources/fence.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getTestDevices} from '@luma.gl/test-utils'; diff --git a/modules/core/test/adapter/resources/framebuffer.spec.ts b/modules/core/test/adapter/resources/framebuffer.spec.ts index d0d255f4a5..04ef892193 100644 --- a/modules/core/test/adapter/resources/framebuffer.spec.ts +++ b/modules/core/test/adapter/resources/framebuffer.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /* eslint-disable max-len */ import test from 'test/utils/vitest-tape'; diff --git a/modules/core/test/adapter/resources/query-set.spec.ts b/modules/core/test/adapter/resources/query-set.spec.ts index 55be9e350c..405f5aaabf 100644 --- a/modules/core/test/adapter/resources/query-set.spec.ts +++ b/modules/core/test/adapter/resources/query-set.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getTestDevices, getWebGLTestDevice, getWebGPUTestDevice} from '@luma.gl/test-utils'; diff --git a/modules/core/test/adapter/resources/render-bundle.spec.ts b/modules/core/test/adapter/resources/render-bundle.spec.ts index 5fcbb85a82..c7d045e2d8 100644 --- a/modules/core/test/adapter/resources/render-bundle.spec.ts +++ b/modules/core/test/adapter/resources/render-bundle.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, type Device} from '@luma.gl/core'; diff --git a/modules/core/test/adapter/resources/render-pipeline.spec.ts b/modules/core/test/adapter/resources/render-pipeline.spec.ts index bd15f8d164..769ec24b12 100644 --- a/modules/core/test/adapter/resources/render-pipeline.spec.ts +++ b/modules/core/test/adapter/resources/render-pipeline.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, _getDefaultBindGroupFactory} from '@luma.gl/core'; diff --git a/modules/core/test/adapter/resources/sampler.spec.ts b/modules/core/test/adapter/resources/sampler.spec.ts index d7cb00724d..f8a64e14dd 100644 --- a/modules/core/test/adapter/resources/sampler.spec.ts +++ b/modules/core/test/adapter/resources/sampler.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test, {Test} from 'test/utils/vitest-tape'; import {getWebGLTestDevice} from '@luma.gl/test-utils'; diff --git a/modules/core/test/adapter/resources/shader.spec.ts b/modules/core/test/adapter/resources/shader.spec.ts index 1b56498769..fd1b27ceaa 100644 --- a/modules/core/test/adapter/resources/shader.spec.ts +++ b/modules/core/test/adapter/resources/shader.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getTestDevices} from '@luma.gl/test-utils'; diff --git a/modules/core/test/adapter/resources/webgpu-cpu-hotspots.spec.ts b/modules/core/test/adapter/resources/webgpu-cpu-hotspots.spec.ts index d24ca16970..d79f6c6e5e 100644 --- a/modules/core/test/adapter/resources/webgpu-cpu-hotspots.spec.ts +++ b/modules/core/test/adapter/resources/webgpu-cpu-hotspots.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import type {Device, RenderPassProps} from '@luma.gl/core'; diff --git a/modules/core/test/adapter/texture-formats.spec.ts b/modules/core/test/adapter/texture-formats.spec.ts index d046a2fe9a..bb1766f145 100644 --- a/modules/core/test/adapter/texture-formats.spec.ts +++ b/modules/core/test/adapter/texture-formats.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getTestDevices} from '@luma.gl/test-utils'; diff --git a/modules/core/test/factories/pipeline-factory.spec.ts b/modules/core/test/factories/pipeline-factory.spec.ts index 938ecbabaf..6e1bd19da1 100644 --- a/modules/core/test/factories/pipeline-factory.spec.ts +++ b/modules/core/test/factories/pipeline-factory.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getWebGLTestDevice, getWebGPUTestDevice} from '@luma.gl/test-utils'; diff --git a/modules/core/test/factories/shader-factory.spec.ts b/modules/core/test/factories/shader-factory.spec.ts index 837fbc7b5c..f375e8713e 100644 --- a/modules/core/test/factories/shader-factory.spec.ts +++ b/modules/core/test/factories/shader-factory.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getWebGLTestDevice} from '@luma.gl/test-utils'; diff --git a/modules/core/test/shadertypes/data-type-decoder.spec.ts b/modules/core/test/shadertypes/data-type-decoder.spec.ts index b980aab968..c29405edf7 100644 --- a/modules/core/test/shadertypes/data-type-decoder.spec.ts +++ b/modules/core/test/shadertypes/data-type-decoder.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import type {TypedArrayConstructor} from '@math.gl/types'; diff --git a/modules/core/test/shadertypes/data-type-utils.node.spec.ts b/modules/core/test/shadertypes/data-type-utils.node.spec.ts index f742526f84..3d88281923 100644 --- a/modules/core/test/shadertypes/data-type-utils.node.spec.ts +++ b/modules/core/test/shadertypes/data-type-utils.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/core/test/shadertypes/shader-type-decoder.spec.ts b/modules/core/test/shadertypes/shader-type-decoder.spec.ts index d1b8a5611f..b147649a22 100644 --- a/modules/core/test/shadertypes/shader-type-decoder.spec.ts +++ b/modules/core/test/shadertypes/shader-type-decoder.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/core/test/shadertypes/shader-types.spec.ts b/modules/core/test/shadertypes/shader-types.spec.ts index f9567fadb9..f700a834db 100644 --- a/modules/core/test/shadertypes/shader-types.spec.ts +++ b/modules/core/test/shadertypes/shader-types.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { type AttributeShaderTypeT, diff --git a/modules/core/test/shadertypes/texture-format-decoder.spec.ts b/modules/core/test/shadertypes/texture-format-decoder.spec.ts index ca51217339..1d45b7c759 100644 --- a/modules/core/test/shadertypes/texture-format-decoder.spec.ts +++ b/modules/core/test/shadertypes/texture-format-decoder.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/core/test/shadertypes/textures/texture-layout.spec.shared.ts b/modules/core/test/shadertypes/textures/texture-layout.spec.shared.ts index 1233310c28..f858eac020 100644 --- a/modules/core/test/shadertypes/textures/texture-layout.spec.shared.ts +++ b/modules/core/test/shadertypes/textures/texture-layout.spec.shared.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {TapeTestFunction} from 'test/utils/vitest-tape'; import {getTextureImageView, setTextureImageData, textureFormatDecoder} from '../../../src'; diff --git a/modules/core/test/shadertypes/vertex-format-decoder.spec.ts b/modules/core/test/shadertypes/vertex-format-decoder.spec.ts index 0ee419d5d9..dfcb493a92 100644 --- a/modules/core/test/shadertypes/vertex-format-decoder.spec.ts +++ b/modules/core/test/shadertypes/vertex-format-decoder.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {type TypedArray} from '@math.gl/types'; diff --git a/modules/core/test/utils/array-equal.spec.ts b/modules/core/test/utils/array-equal.spec.ts index 8a1c693d36..9f5b8f7f23 100644 --- a/modules/core/test/utils/array-equal.spec.ts +++ b/modules/core/test/utils/array-equal.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {arrayEqual} from '../../src/utils/array-equal'; diff --git a/modules/deck-luspatial/src/index.ts b/modules/deck-luspatial/src/index.ts index 40c9759005..24ff483665 100644 --- a/modules/deck-luspatial/src/index.ts +++ b/modules/deck-luspatial/src/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export { LuSpatialPointLayer, diff --git a/modules/deck-luspatial/src/layers/luspatial-point-layer.ts b/modules/deck-luspatial/src/layers/luspatial-point-layer.ts index 2d24c1e8bf..9116542fe3 100644 --- a/modules/deck-luspatial/src/layers/luspatial-point-layer.ts +++ b/modules/deck-luspatial/src/layers/luspatial-point-layer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { Layer, diff --git a/modules/deck-luspatial/test/index.ts b/modules/deck-luspatial/test/index.ts index ef0d295645..9bfa2bbec4 100644 --- a/modules/deck-luspatial/test/index.ts +++ b/modules/deck-luspatial/test/index.ts @@ -1,5 +1,5 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import './luspatial-point-layer.node.spec'; diff --git a/modules/deck-luspatial/test/luspatial-point-layer.node.spec.ts b/modules/deck-luspatial/test/luspatial-point-layer.node.spec.ts index d253da4c70..07065ccfe2 100644 --- a/modules/deck-luspatial/test/luspatial-point-layer.node.spec.ts +++ b/modules/deck-luspatial/test/luspatial-point-layer.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {readFileSync} from 'node:fs'; import type {LayerContext} from '@deck.gl/core'; diff --git a/modules/deck-luspatial/test/luspatial-point-layer.spec.ts b/modules/deck-luspatial/test/luspatial-point-layer.spec.ts index da0d3cd057..cfd3df6a1c 100644 --- a/modules/deck-luspatial/test/luspatial-point-layer.spec.ts +++ b/modules/deck-luspatial/test/luspatial-point-layer.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Deck, OrthographicView, type Layer} from '@deck.gl/core'; import {LuSpatialPointLayer} from '@deck.gl-community/luspatial'; diff --git a/modules/effects/src/index.ts b/modules/effects/src/index.ts index ffb5da3213..37193fdee6 100644 --- a/modules/effects/src/index.ts +++ b/modules/effects/src/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // POST PROCESSING / SHADER PASS MODULES diff --git a/modules/effects/src/passes/postprocessing/image-adjust-filters/brightnesscontrast.ts b/modules/effects/src/passes/postprocessing/image-adjust-filters/brightnesscontrast.ts index dd03dddf60..1bdc3a6b54 100644 --- a/modules/effects/src/passes/postprocessing/image-adjust-filters/brightnesscontrast.ts +++ b/modules/effects/src/passes/postprocessing/image-adjust-filters/brightnesscontrast.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderPass} from '@luma.gl/shadertools'; diff --git a/modules/effects/src/passes/postprocessing/image-adjust-filters/denoise.ts b/modules/effects/src/passes/postprocessing/image-adjust-filters/denoise.ts index ab170ac21e..3ea32041f7 100644 --- a/modules/effects/src/passes/postprocessing/image-adjust-filters/denoise.ts +++ b/modules/effects/src/passes/postprocessing/image-adjust-filters/denoise.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderPass} from '@luma.gl/shadertools'; diff --git a/modules/effects/src/passes/postprocessing/image-adjust-filters/huesaturation.ts b/modules/effects/src/passes/postprocessing/image-adjust-filters/huesaturation.ts index ff0d969b8e..8f20b1ca3a 100644 --- a/modules/effects/src/passes/postprocessing/image-adjust-filters/huesaturation.ts +++ b/modules/effects/src/passes/postprocessing/image-adjust-filters/huesaturation.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderPass} from '@luma.gl/shadertools'; diff --git a/modules/effects/src/passes/postprocessing/image-adjust-filters/noise.ts b/modules/effects/src/passes/postprocessing/image-adjust-filters/noise.ts index 5bae79e803..05c3032261 100644 --- a/modules/effects/src/passes/postprocessing/image-adjust-filters/noise.ts +++ b/modules/effects/src/passes/postprocessing/image-adjust-filters/noise.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderPass} from '@luma.gl/shadertools'; diff --git a/modules/effects/src/passes/postprocessing/image-adjust-filters/persistence.ts b/modules/effects/src/passes/postprocessing/image-adjust-filters/persistence.ts index 2092fd76a0..26ffb75e59 100644 --- a/modules/effects/src/passes/postprocessing/image-adjust-filters/persistence.ts +++ b/modules/effects/src/passes/postprocessing/image-adjust-filters/persistence.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderPass} from '@luma.gl/shadertools'; diff --git a/modules/effects/src/passes/postprocessing/image-adjust-filters/sepia.ts b/modules/effects/src/passes/postprocessing/image-adjust-filters/sepia.ts index ac0fb83f0e..7ab1df94ac 100644 --- a/modules/effects/src/passes/postprocessing/image-adjust-filters/sepia.ts +++ b/modules/effects/src/passes/postprocessing/image-adjust-filters/sepia.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderPass} from '@luma.gl/shadertools'; diff --git a/modules/effects/src/passes/postprocessing/image-adjust-filters/tone-mapping.ts b/modules/effects/src/passes/postprocessing/image-adjust-filters/tone-mapping.ts index 5af4cd37ec..ac44d452a1 100644 --- a/modules/effects/src/passes/postprocessing/image-adjust-filters/tone-mapping.ts +++ b/modules/effects/src/passes/postprocessing/image-adjust-filters/tone-mapping.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderPass} from '@luma.gl/shadertools'; diff --git a/modules/effects/src/passes/postprocessing/image-adjust-filters/vibrance.ts b/modules/effects/src/passes/postprocessing/image-adjust-filters/vibrance.ts index e7e0c773db..5488fe3311 100644 --- a/modules/effects/src/passes/postprocessing/image-adjust-filters/vibrance.ts +++ b/modules/effects/src/passes/postprocessing/image-adjust-filters/vibrance.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderPass} from '@luma.gl/shadertools'; diff --git a/modules/effects/src/passes/postprocessing/image-adjust-filters/vignette.ts b/modules/effects/src/passes/postprocessing/image-adjust-filters/vignette.ts index fff1859be5..bc589e6738 100644 --- a/modules/effects/src/passes/postprocessing/image-adjust-filters/vignette.ts +++ b/modules/effects/src/passes/postprocessing/image-adjust-filters/vignette.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderPass} from '@luma.gl/shadertools'; diff --git a/modules/effects/src/passes/postprocessing/image-blur-filters/bloom-shader-pass-pipeline.ts b/modules/effects/src/passes/postprocessing/image-blur-filters/bloom-shader-pass-pipeline.ts index aa76884746..2452b82ab8 100644 --- a/modules/effects/src/passes/postprocessing/image-blur-filters/bloom-shader-pass-pipeline.ts +++ b/modules/effects/src/passes/postprocessing/image-blur-filters/bloom-shader-pass-pipeline.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Texture, TextureFormatColor} from '@luma.gl/core'; import type { diff --git a/modules/effects/src/passes/postprocessing/image-blur-filters/bloom.ts b/modules/effects/src/passes/postprocessing/image-blur-filters/bloom.ts index 55adfd7311..e622eaf3d0 100644 --- a/modules/effects/src/passes/postprocessing/image-blur-filters/bloom.ts +++ b/modules/effects/src/passes/postprocessing/image-blur-filters/bloom.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderPass} from '@luma.gl/shadertools'; diff --git a/modules/effects/src/passes/postprocessing/image-blur-filters/gaussianblur.ts b/modules/effects/src/passes/postprocessing/image-blur-filters/gaussianblur.ts index 264b1474c4..744bd44783 100644 --- a/modules/effects/src/passes/postprocessing/image-blur-filters/gaussianblur.ts +++ b/modules/effects/src/passes/postprocessing/image-blur-filters/gaussianblur.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderPass} from '@luma.gl/shadertools'; diff --git a/modules/effects/src/passes/postprocessing/image-blur-filters/tiltshift.ts b/modules/effects/src/passes/postprocessing/image-blur-filters/tiltshift.ts index 42a8b4691f..c3a57c3f20 100644 --- a/modules/effects/src/passes/postprocessing/image-blur-filters/tiltshift.ts +++ b/modules/effects/src/passes/postprocessing/image-blur-filters/tiltshift.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderPass} from '@luma.gl/shadertools'; import {random} from '@luma.gl/shadertools'; diff --git a/modules/effects/src/passes/postprocessing/image-blur-filters/triangleblur.ts b/modules/effects/src/passes/postprocessing/image-blur-filters/triangleblur.ts index cd34a9e7fe..c8c4732310 100644 --- a/modules/effects/src/passes/postprocessing/image-blur-filters/triangleblur.ts +++ b/modules/effects/src/passes/postprocessing/image-blur-filters/triangleblur.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderPass} from '@luma.gl/shadertools'; import {random} from '@luma.gl/shadertools'; diff --git a/modules/effects/src/passes/postprocessing/image-blur-filters/zoomblur.ts b/modules/effects/src/passes/postprocessing/image-blur-filters/zoomblur.ts index a68801bf0e..a3d3c5c51b 100644 --- a/modules/effects/src/passes/postprocessing/image-blur-filters/zoomblur.ts +++ b/modules/effects/src/passes/postprocessing/image-blur-filters/zoomblur.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderPass} from '@luma.gl/shadertools'; import {random} from '@luma.gl/shadertools'; diff --git a/modules/effects/src/passes/postprocessing/image-fun-filters/colorhalftone.ts b/modules/effects/src/passes/postprocessing/image-fun-filters/colorhalftone.ts index 92a35a3fc8..3537db5a1a 100644 --- a/modules/effects/src/passes/postprocessing/image-fun-filters/colorhalftone.ts +++ b/modules/effects/src/passes/postprocessing/image-fun-filters/colorhalftone.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderPass} from '@luma.gl/shadertools'; diff --git a/modules/effects/src/passes/postprocessing/image-fun-filters/dotscreen.ts b/modules/effects/src/passes/postprocessing/image-fun-filters/dotscreen.ts index 4541fe8b9e..20bd7e2ca7 100644 --- a/modules/effects/src/passes/postprocessing/image-fun-filters/dotscreen.ts +++ b/modules/effects/src/passes/postprocessing/image-fun-filters/dotscreen.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderPass} from '@luma.gl/shadertools'; diff --git a/modules/effects/src/passes/postprocessing/image-fun-filters/edgework.ts b/modules/effects/src/passes/postprocessing/image-fun-filters/edgework.ts index 3d2ddb4a2e..e9c5848c47 100644 --- a/modules/effects/src/passes/postprocessing/image-fun-filters/edgework.ts +++ b/modules/effects/src/passes/postprocessing/image-fun-filters/edgework.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderPass} from '@luma.gl/shadertools'; import {random} from '@luma.gl/shadertools'; diff --git a/modules/effects/src/passes/postprocessing/image-fun-filters/hexagonalpixelate.ts b/modules/effects/src/passes/postprocessing/image-fun-filters/hexagonalpixelate.ts index 91916cf469..c8cf1d4fb5 100644 --- a/modules/effects/src/passes/postprocessing/image-fun-filters/hexagonalpixelate.ts +++ b/modules/effects/src/passes/postprocessing/image-fun-filters/hexagonalpixelate.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderPass} from '@luma.gl/shadertools'; diff --git a/modules/effects/src/passes/postprocessing/image-fun-filters/ink.ts b/modules/effects/src/passes/postprocessing/image-fun-filters/ink.ts index dfcf23d61b..32a0ef86b0 100644 --- a/modules/effects/src/passes/postprocessing/image-fun-filters/ink.ts +++ b/modules/effects/src/passes/postprocessing/image-fun-filters/ink.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderPass} from '@luma.gl/shadertools'; diff --git a/modules/effects/src/passes/postprocessing/image-fun-filters/magnify.ts b/modules/effects/src/passes/postprocessing/image-fun-filters/magnify.ts index 2f40d60ce3..3804f687da 100644 --- a/modules/effects/src/passes/postprocessing/image-fun-filters/magnify.ts +++ b/modules/effects/src/passes/postprocessing/image-fun-filters/magnify.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderPass} from '@luma.gl/shadertools'; diff --git a/modules/effects/src/passes/postprocessing/image-warp-filters/bulgepinch.ts b/modules/effects/src/passes/postprocessing/image-warp-filters/bulgepinch.ts index 0e4c62e16c..b5d66b1893 100644 --- a/modules/effects/src/passes/postprocessing/image-warp-filters/bulgepinch.ts +++ b/modules/effects/src/passes/postprocessing/image-warp-filters/bulgepinch.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderPass} from '@luma.gl/shadertools'; import {warp} from './warp'; diff --git a/modules/effects/src/passes/postprocessing/image-warp-filters/swirl.ts b/modules/effects/src/passes/postprocessing/image-warp-filters/swirl.ts index fd6321a309..9d80510a73 100644 --- a/modules/effects/src/passes/postprocessing/image-warp-filters/swirl.ts +++ b/modules/effects/src/passes/postprocessing/image-warp-filters/swirl.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderPass} from '@luma.gl/shadertools'; import {warp} from './warp'; diff --git a/modules/effects/src/passes/postprocessing/image-warp-filters/warp.ts b/modules/effects/src/passes/postprocessing/image-warp-filters/warp.ts index fb846d574d..76d684d834 100644 --- a/modules/effects/src/passes/postprocessing/image-warp-filters/warp.ts +++ b/modules/effects/src/passes/postprocessing/image-warp-filters/warp.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderPass} from '@luma.gl/shadertools'; diff --git a/modules/effects/src/passes/screen-space/clustered-volumetric-lighting.ts b/modules/effects/src/passes/screen-space/clustered-volumetric-lighting.ts index 6d3386a1a6..96e3df5956 100644 --- a/modules/effects/src/passes/screen-space/clustered-volumetric-lighting.ts +++ b/modules/effects/src/passes/screen-space/clustered-volumetric-lighting.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Buffer, Texture} from '@luma.gl/core'; import type {ShaderPass, ShaderPassPipeline} from '@luma.gl/shadertools'; diff --git a/modules/effects/src/passes/screen-space/copy-pass.ts b/modules/effects/src/passes/screen-space/copy-pass.ts index 8f997bff72..ea2ace2e84 100644 --- a/modules/effects/src/passes/screen-space/copy-pass.ts +++ b/modules/effects/src/passes/screen-space/copy-pass.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderPass} from '@luma.gl/shadertools'; diff --git a/modules/effects/src/passes/screen-space/depth-aware-blur.ts b/modules/effects/src/passes/screen-space/depth-aware-blur.ts index a3aa722dd0..e917aba26a 100644 --- a/modules/effects/src/passes/screen-space/depth-aware-blur.ts +++ b/modules/effects/src/passes/screen-space/depth-aware-blur.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Texture} from '@luma.gl/core'; import type {ShaderPass, ShaderPassPipeline} from '@luma.gl/shadertools'; diff --git a/modules/effects/src/passes/screen-space/dof.ts b/modules/effects/src/passes/screen-space/dof.ts index 64b5c20d45..2a62dfe14d 100644 --- a/modules/effects/src/passes/screen-space/dof.ts +++ b/modules/effects/src/passes/screen-space/dof.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Texture} from '@luma.gl/core'; import type {ShaderPass, ShaderPassPipeline} from '@luma.gl/shadertools'; diff --git a/modules/effects/src/passes/screen-space/gtao.ts b/modules/effects/src/passes/screen-space/gtao.ts index 7dbc44a039..6ff2f3cf4c 100644 --- a/modules/effects/src/passes/screen-space/gtao.ts +++ b/modules/effects/src/passes/screen-space/gtao.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Texture} from '@luma.gl/core'; import type {ShaderPass, ShaderPassPipeline} from '@luma.gl/shadertools'; diff --git a/modules/effects/src/passes/screen-space/hdr-auto-exposure.ts b/modules/effects/src/passes/screen-space/hdr-auto-exposure.ts index 055784c0b6..85ff2670d8 100644 --- a/modules/effects/src/passes/screen-space/hdr-auto-exposure.ts +++ b/modules/effects/src/passes/screen-space/hdr-auto-exposure.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Texture} from '@luma.gl/core'; import type {ShaderPass, ShaderPassPipeline} from '@luma.gl/shadertools'; diff --git a/modules/effects/src/passes/screen-space/motion-blur.ts b/modules/effects/src/passes/screen-space/motion-blur.ts index 940b2c0a8c..b081642863 100644 --- a/modules/effects/src/passes/screen-space/motion-blur.ts +++ b/modules/effects/src/passes/screen-space/motion-blur.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Texture} from '@luma.gl/core'; import type {ShaderPass, ShaderPassPipeline} from '@luma.gl/shadertools'; diff --git a/modules/effects/src/passes/screen-space/outlines.ts b/modules/effects/src/passes/screen-space/outlines.ts index c1cf70c01c..04900acc54 100644 --- a/modules/effects/src/passes/screen-space/outlines.ts +++ b/modules/effects/src/passes/screen-space/outlines.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderPass, ShaderPassPipeline} from '@luma.gl/shadertools'; import {depthHelpers} from './screen-space-shader-helpers'; diff --git a/modules/effects/src/passes/screen-space/screen-space-global-illumination.ts b/modules/effects/src/passes/screen-space/screen-space-global-illumination.ts index 28b64ce0e4..d0d38fe407 100644 --- a/modules/effects/src/passes/screen-space/screen-space-global-illumination.ts +++ b/modules/effects/src/passes/screen-space/screen-space-global-illumination.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Texture} from '@luma.gl/core'; import type {ShaderPass, ShaderPassPipeline} from '@luma.gl/shadertools'; diff --git a/modules/effects/src/passes/screen-space/screen-space-reflections.ts b/modules/effects/src/passes/screen-space/screen-space-reflections.ts index a189289534..767de2fe34 100644 --- a/modules/effects/src/passes/screen-space/screen-space-reflections.ts +++ b/modules/effects/src/passes/screen-space/screen-space-reflections.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Texture} from '@luma.gl/core'; import type {ShaderPass, ShaderPassPipeline} from '@luma.gl/shadertools'; diff --git a/modules/effects/src/passes/screen-space/screen-space-shader-helpers.ts b/modules/effects/src/passes/screen-space/screen-space-shader-helpers.ts index 6cd533cb2d..3d96bafb1b 100644 --- a/modules/effects/src/passes/screen-space/screen-space-shader-helpers.ts +++ b/modules/effects/src/passes/screen-space/screen-space-shader-helpers.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** Shared WGSL helpers for depth-based screen-space effects. */ export const depthHelpers = /* wgsl */ `\ diff --git a/modules/effects/src/passes/screen-space/ssao.ts b/modules/effects/src/passes/screen-space/ssao.ts index a789b9c5a3..b44a38cbda 100644 --- a/modules/effects/src/passes/screen-space/ssao.ts +++ b/modules/effects/src/passes/screen-space/ssao.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Texture} from '@luma.gl/core'; import type {ShaderPass, ShaderPassPipeline} from '@luma.gl/shadertools'; diff --git a/modules/effects/src/passes/screen-space/temporal-antialiasing.ts b/modules/effects/src/passes/screen-space/temporal-antialiasing.ts index 91ded384a6..3896b0f45f 100644 --- a/modules/effects/src/passes/screen-space/temporal-antialiasing.ts +++ b/modules/effects/src/passes/screen-space/temporal-antialiasing.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderPass, ShaderPassPipeline} from '@luma.gl/shadertools'; import {copyPass} from './copy-pass'; diff --git a/modules/effects/src/passes/screen-space/volumetric-fog.ts b/modules/effects/src/passes/screen-space/volumetric-fog.ts index 9708efffd4..3506a89c17 100644 --- a/modules/effects/src/passes/screen-space/volumetric-fog.ts +++ b/modules/effects/src/passes/screen-space/volumetric-fog.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderPass, ShaderPassPipeline} from '@luma.gl/shadertools'; import {copyPass} from './copy-pass'; diff --git a/modules/effects/test/index.ts b/modules/effects/test/index.ts index ba462f851f..5a9bcd9586 100644 --- a/modules/effects/test/index.ts +++ b/modules/effects/test/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // Post-processing Modules (Shader passes) // Blur Filters diff --git a/modules/effects/test/passes/advanced-effects.spec.ts b/modules/effects/test/passes/advanced-effects.spec.ts index 31624f8ea7..685c27258c 100644 --- a/modules/effects/test/passes/advanced-effects.spec.ts +++ b/modules/effects/test/passes/advanced-effects.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, Texture} from '@luma.gl/core'; diff --git a/modules/effects/test/passes/image-adjust-filters/brightnesscontrast.spec.ts b/modules/effects/test/passes/image-adjust-filters/brightnesscontrast.spec.ts index 6cd33a297a..fcea5cb565 100644 --- a/modules/effects/test/passes/image-adjust-filters/brightnesscontrast.spec.ts +++ b/modules/effects/test/passes/image-adjust-filters/brightnesscontrast.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {brightnessContrast} from '@luma.gl/effects'; import {getShaderModuleUniforms} from '@luma.gl/shadertools'; diff --git a/modules/effects/test/passes/image-adjust-filters/denoise.spec.ts b/modules/effects/test/passes/image-adjust-filters/denoise.spec.ts index 127fbcb89e..deaf4ad437 100644 --- a/modules/effects/test/passes/image-adjust-filters/denoise.spec.ts +++ b/modules/effects/test/passes/image-adjust-filters/denoise.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {denoise} from '@luma.gl/effects'; import {getShaderModuleUniforms} from '@luma.gl/shadertools'; diff --git a/modules/effects/test/passes/image-adjust-filters/huesaturation.spec.ts b/modules/effects/test/passes/image-adjust-filters/huesaturation.spec.ts index 4a1d5a958b..6c00333937 100644 --- a/modules/effects/test/passes/image-adjust-filters/huesaturation.spec.ts +++ b/modules/effects/test/passes/image-adjust-filters/huesaturation.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {hueSaturation} from '@luma.gl/effects'; import {getShaderModuleUniforms} from '@luma.gl/shadertools'; diff --git a/modules/effects/test/passes/image-adjust-filters/noise.spec.ts b/modules/effects/test/passes/image-adjust-filters/noise.spec.ts index 2cdf7e69ff..6ca2cf4d69 100644 --- a/modules/effects/test/passes/image-adjust-filters/noise.spec.ts +++ b/modules/effects/test/passes/image-adjust-filters/noise.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {noise} from '@luma.gl/effects'; import {getShaderModuleUniforms} from '@luma.gl/shadertools'; diff --git a/modules/effects/test/passes/image-adjust-filters/persistence.spec.ts b/modules/effects/test/passes/image-adjust-filters/persistence.spec.ts index 68e914879f..cfd8f0aa65 100644 --- a/modules/effects/test/passes/image-adjust-filters/persistence.spec.ts +++ b/modules/effects/test/passes/image-adjust-filters/persistence.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {persistenceEffect} from '@luma.gl/effects'; import test from 'test/utils/vitest-tape'; diff --git a/modules/effects/test/passes/image-adjust-filters/sepia.spec.ts b/modules/effects/test/passes/image-adjust-filters/sepia.spec.ts index b7736657ef..70a58ed922 100644 --- a/modules/effects/test/passes/image-adjust-filters/sepia.spec.ts +++ b/modules/effects/test/passes/image-adjust-filters/sepia.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {sepia} from '@luma.gl/effects'; import {getShaderModuleUniforms} from '@luma.gl/shadertools'; diff --git a/modules/effects/test/passes/image-adjust-filters/tone-mapping.spec.ts b/modules/effects/test/passes/image-adjust-filters/tone-mapping.spec.ts index 9eda016e1e..ccd744a327 100644 --- a/modules/effects/test/passes/image-adjust-filters/tone-mapping.spec.ts +++ b/modules/effects/test/passes/image-adjust-filters/tone-mapping.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {toneMapping} from '@luma.gl/effects'; diff --git a/modules/effects/test/passes/image-adjust-filters/vignette.spec.ts b/modules/effects/test/passes/image-adjust-filters/vignette.spec.ts index c5eae4068b..9cb8998b38 100644 --- a/modules/effects/test/passes/image-adjust-filters/vignette.spec.ts +++ b/modules/effects/test/passes/image-adjust-filters/vignette.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {vignette} from '@luma.gl/effects'; import {getShaderModuleUniforms} from '@luma.gl/shadertools'; diff --git a/modules/effects/test/passes/image-blur-filters/bloom.spec.ts b/modules/effects/test/passes/image-blur-filters/bloom.spec.ts index 134475d095..f6b5b0d6a3 100644 --- a/modules/effects/test/passes/image-blur-filters/bloom.spec.ts +++ b/modules/effects/test/passes/image-blur-filters/bloom.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, Texture} from '@luma.gl/core'; import {ShaderPassRenderer} from '@luma.gl/engine'; diff --git a/modules/effects/test/passes/image-blur-filters/gaussianblur.spec.ts b/modules/effects/test/passes/image-blur-filters/gaussianblur.spec.ts index 999a37aaee..5bb7747aa5 100644 --- a/modules/effects/test/passes/image-blur-filters/gaussianblur.spec.ts +++ b/modules/effects/test/passes/image-blur-filters/gaussianblur.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {gaussianBlur} from '@luma.gl/effects'; import {getShaderModuleUniforms} from '@luma.gl/shadertools'; diff --git a/modules/effects/test/passes/image-blur-filters/tiltshift.spec.ts b/modules/effects/test/passes/image-blur-filters/tiltshift.spec.ts index 4b6a53de93..64fcc089e5 100644 --- a/modules/effects/test/passes/image-blur-filters/tiltshift.spec.ts +++ b/modules/effects/test/passes/image-blur-filters/tiltshift.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {tiltShift} from '@luma.gl/effects'; import {getShaderModuleUniforms} from '@luma.gl/shadertools'; diff --git a/modules/effects/test/passes/image-blur-filters/triangleblur.spec.ts b/modules/effects/test/passes/image-blur-filters/triangleblur.spec.ts index 84edc6c635..d67844d47d 100644 --- a/modules/effects/test/passes/image-blur-filters/triangleblur.spec.ts +++ b/modules/effects/test/passes/image-blur-filters/triangleblur.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {triangleBlur} from '@luma.gl/effects'; import {getShaderModuleUniforms} from '@luma.gl/shadertools'; diff --git a/modules/effects/test/passes/image-blur-filters/zoomblur.spec.ts b/modules/effects/test/passes/image-blur-filters/zoomblur.spec.ts index 7599148614..6c9eab6dcd 100644 --- a/modules/effects/test/passes/image-blur-filters/zoomblur.spec.ts +++ b/modules/effects/test/passes/image-blur-filters/zoomblur.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {zoomBlur} from '@luma.gl/effects'; import {getShaderModuleUniforms} from '@luma.gl/shadertools'; diff --git a/modules/effects/test/passes/image-fun-filters/colorhalftone.spec.ts b/modules/effects/test/passes/image-fun-filters/colorhalftone.spec.ts index 2ca4846ac9..78d498cde8 100644 --- a/modules/effects/test/passes/image-fun-filters/colorhalftone.spec.ts +++ b/modules/effects/test/passes/image-fun-filters/colorhalftone.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {colorHalftone} from '@luma.gl/effects'; import {getShaderModuleUniforms} from '@luma.gl/shadertools'; diff --git a/modules/effects/test/passes/image-fun-filters/dotscreen.spec.ts b/modules/effects/test/passes/image-fun-filters/dotscreen.spec.ts index f9bedc5cda..e76ddd5c2b 100644 --- a/modules/effects/test/passes/image-fun-filters/dotscreen.spec.ts +++ b/modules/effects/test/passes/image-fun-filters/dotscreen.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {dotScreen} from '@luma.gl/effects'; import {getShaderModuleUniforms} from '@luma.gl/shadertools'; diff --git a/modules/effects/test/passes/image-fun-filters/edgework.spec.ts b/modules/effects/test/passes/image-fun-filters/edgework.spec.ts index 52cf415515..1ef1120853 100644 --- a/modules/effects/test/passes/image-fun-filters/edgework.spec.ts +++ b/modules/effects/test/passes/image-fun-filters/edgework.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {edgeWork} from '@luma.gl/effects'; import {getShaderModuleUniforms} from '@luma.gl/shadertools'; diff --git a/modules/effects/test/passes/image-fun-filters/hexagonalpixelate.spec.ts b/modules/effects/test/passes/image-fun-filters/hexagonalpixelate.spec.ts index cfca422322..c506b45fbe 100644 --- a/modules/effects/test/passes/image-fun-filters/hexagonalpixelate.spec.ts +++ b/modules/effects/test/passes/image-fun-filters/hexagonalpixelate.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {hexagonalPixelate} from '@luma.gl/effects'; import {getShaderModuleUniforms} from '@luma.gl/shadertools'; diff --git a/modules/effects/test/passes/image-fun-filters/ink.spec.ts b/modules/effects/test/passes/image-fun-filters/ink.spec.ts index b8e36a7d5b..1c8fe9d685 100644 --- a/modules/effects/test/passes/image-fun-filters/ink.spec.ts +++ b/modules/effects/test/passes/image-fun-filters/ink.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {ink} from '@luma.gl/effects'; import {getShaderModuleUniforms} from '@luma.gl/shadertools'; diff --git a/modules/effects/test/passes/image-warp-filters/bulgepinch.spec.ts b/modules/effects/test/passes/image-warp-filters/bulgepinch.spec.ts index 518301cee6..ebd6accefd 100644 --- a/modules/effects/test/passes/image-warp-filters/bulgepinch.spec.ts +++ b/modules/effects/test/passes/image-warp-filters/bulgepinch.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {bulgePinch} from '@luma.gl/effects'; import {getShaderModuleUniforms} from '@luma.gl/shadertools'; diff --git a/modules/effects/test/passes/image-warp-filters/swirl.spec.ts b/modules/effects/test/passes/image-warp-filters/swirl.spec.ts index 3ee05f5494..e411d7bbb0 100644 --- a/modules/effects/test/passes/image-warp-filters/swirl.spec.ts +++ b/modules/effects/test/passes/image-warp-filters/swirl.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {swirl} from '@luma.gl/effects'; import {getShaderModuleUniforms} from '@luma.gl/shadertools'; diff --git a/modules/effects/test/passes/image-warp-filters/warp.spec.ts b/modules/effects/test/passes/image-warp-filters/warp.spec.ts index 89dbe1509a..dff84cc5e7 100644 --- a/modules/effects/test/passes/image-warp-filters/warp.spec.ts +++ b/modules/effects/test/passes/image-warp-filters/warp.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {_warp as warp} from '@luma.gl/effects'; import test from 'test/utils/vitest-tape'; diff --git a/modules/effects/test/passes/postprocessing-wgsl.spec.ts b/modules/effects/test/passes/postprocessing-wgsl.spec.ts index 8e04fee0f3..90b1d4b4a7 100644 --- a/modules/effects/test/passes/postprocessing-wgsl.spec.ts +++ b/modules/effects/test/passes/postprocessing-wgsl.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getWebGPUTestDevice} from '@luma.gl/test-utils'; diff --git a/modules/effects/test/passes/screen-space/dof.spec.ts b/modules/effects/test/passes/screen-space/dof.spec.ts index 3165a9a385..2d6cf202b2 100644 --- a/modules/effects/test/passes/screen-space/dof.spec.ts +++ b/modules/effects/test/passes/screen-space/dof.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {dof, dofShaderPassPipeline} from '@luma.gl/effects'; import {getShaderModuleUniforms} from '@luma.gl/shadertools'; diff --git a/modules/engine/src/animation-loop/animation-loop-template.ts b/modules/engine/src/animation-loop/animation-loop-template.ts index c71c7aec25..4b8a23a219 100644 --- a/modules/engine/src/animation-loop/animation-loop-template.ts +++ b/modules/engine/src/animation-loop/animation-loop-template.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {AnimationProps} from './animation-props'; diff --git a/modules/engine/src/animation-loop/animation-loop.ts b/modules/engine/src/animation-loop/animation-loop.ts index fc814416dd..470217cf39 100644 --- a/modules/engine/src/animation-loop/animation-loop.ts +++ b/modules/engine/src/animation-loop/animation-loop.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {luma, Device} from '@luma.gl/core'; import { diff --git a/modules/engine/src/animation-loop/animation-props.ts b/modules/engine/src/animation-loop/animation-props.ts index aa7770ea7e..86efe7b1ef 100644 --- a/modules/engine/src/animation-loop/animation-props.ts +++ b/modules/engine/src/animation-loop/animation-props.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {CanvasContext, Device} from '@luma.gl/core'; import {Timeline} from '../animation/timeline'; diff --git a/modules/engine/src/animation-loop/make-animation-loop.ts b/modules/engine/src/animation-loop/make-animation-loop.ts index 76ef4a34d7..12a4ad2e98 100644 --- a/modules/engine/src/animation-loop/make-animation-loop.ts +++ b/modules/engine/src/animation-loop/make-animation-loop.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {luma, Adapter, Device} from '@luma.gl/core'; import {AnimationLoopTemplate} from './animation-loop-template'; diff --git a/modules/engine/src/animation-loop/request-animation-frame.ts b/modules/engine/src/animation-loop/request-animation-frame.ts index e0fbfc435a..56b4c8c27f 100644 --- a/modules/engine/src/animation-loop/request-animation-frame.ts +++ b/modules/engine/src/animation-loop/request-animation-frame.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /* global window, setTimeout, clearTimeout */ diff --git a/modules/engine/src/animation/animation-clip.ts b/modules/engine/src/animation/animation-clip.ts index 93b8d07374..899b2ac2f5 100644 --- a/modules/engine/src/animation/animation-clip.ts +++ b/modules/engine/src/animation/animation-clip.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {AnimationTrack} from './animation-track'; diff --git a/modules/engine/src/animation/animation-interpolation.ts b/modules/engine/src/animation/animation-interpolation.ts index c6dd330b2f..fb1e992830 100644 --- a/modules/engine/src/animation/animation-interpolation.ts +++ b/modules/engine/src/animation/animation-interpolation.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** Interpolation modes shared by animation formats and engine tracks. */ export type AnimationInterpolation = 'STEP' | 'LINEAR' | 'CUBICSPLINE'; diff --git a/modules/engine/src/animation/animation-mixer.ts b/modules/engine/src/animation/animation-mixer.ts index 250bf8b608..8e1b1728d4 100644 --- a/modules/engine/src/animation/animation-mixer.ts +++ b/modules/engine/src/animation/animation-mixer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {AnimationClip} from './animation-clip'; import {interpolateQuaternion, type AnimationValueType} from './animation-interpolation'; diff --git a/modules/engine/src/animation/animation-track.ts b/modules/engine/src/animation/animation-track.ts index fe0e340872..a0d9d795c7 100644 --- a/modules/engine/src/animation/animation-track.ts +++ b/modules/engine/src/animation/animation-track.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { evaluateAnimationSampler, diff --git a/modules/engine/src/animation/animator.ts b/modules/engine/src/animation/animator.ts index 08a3810aac..355de64dea 100644 --- a/modules/engine/src/animation/animator.ts +++ b/modules/engine/src/animation/animator.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {log} from '@luma.gl/core'; diff --git a/modules/engine/src/animation/key-frames.ts b/modules/engine/src/animation/key-frames.ts index 518b145855..fd7cd246e5 100644 --- a/modules/engine/src/animation/key-frames.ts +++ b/modules/engine/src/animation/key-frames.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // keyframes export type KeyFrame = [number, T]; diff --git a/modules/engine/src/animation/morph-targets.ts b/modules/engine/src/animation/morph-targets.ts index 9e89c1d8f9..efcee5e72d 100644 --- a/modules/engine/src/animation/morph-targets.ts +++ b/modules/engine/src/animation/morph-targets.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Geometry, type GeometryAttribute} from '../geometry/geometry'; import {makeInterleavedGeometry} from '../geometry/geometry-utils'; diff --git a/modules/engine/src/animation/skin.ts b/modules/engine/src/animation/skin.ts index a7a0dfbb58..e9d6ecaf20 100644 --- a/modules/engine/src/animation/skin.ts +++ b/modules/engine/src/animation/skin.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Matrix4, type NumericArray} from '@math.gl/core'; diff --git a/modules/engine/src/animation/timeline.ts b/modules/engine/src/animation/timeline.ts index 3dc89ae9f0..5c4c05a56a 100644 --- a/modules/engine/src/animation/timeline.ts +++ b/modules/engine/src/animation/timeline.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** * Timeline channel properties diff --git a/modules/engine/src/application-utils/load-file.ts b/modules/engine/src/application-utils/load-file.ts index d1bd7ca60e..31a1f1b554 100644 --- a/modules/engine/src/application-utils/load-file.ts +++ b/modules/engine/src/application-utils/load-file.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors let pathPrefix = ''; diff --git a/modules/engine/src/application-utils/random.ts b/modules/engine/src/application-utils/random.ts index 7babcd420e..a74d294f82 100644 --- a/modules/engine/src/application-utils/random.ts +++ b/modules/engine/src/application-utils/random.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** Creates a deterministic pseudorandom number generator */ export function makeRandomGenerator(): () => number { diff --git a/modules/engine/src/compute/buffer-transform.ts b/modules/engine/src/compute/buffer-transform.ts index ca9948e4a7..e25efea080 100644 --- a/modules/engine/src/compute/buffer-transform.ts +++ b/modules/engine/src/compute/buffer-transform.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Device, Buffer, BufferRange, TransformFeedback, RenderPassProps} from '@luma.gl/core'; import {getPassthroughFS} from '@luma.gl/shadertools'; diff --git a/modules/engine/src/compute/computation.ts b/modules/engine/src/compute/computation.ts index 032a14be9d..72668a4fd7 100644 --- a/modules/engine/src/compute/computation.ts +++ b/modules/engine/src/compute/computation.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { type DeviceFeature, diff --git a/modules/engine/src/compute/swap.ts b/modules/engine/src/compute/swap.ts index c1cdfc161b..185686c3f8 100644 --- a/modules/engine/src/compute/swap.ts +++ b/modules/engine/src/compute/swap.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {BufferProps, FramebufferProps} from '@luma.gl/core'; import {Device, Resource, Buffer, Framebuffer, Texture} from '@luma.gl/core'; diff --git a/modules/engine/src/compute/texture-transform.ts b/modules/engine/src/compute/texture-transform.ts index 712ab9a229..c0916541ba 100644 --- a/modules/engine/src/compute/texture-transform.ts +++ b/modules/engine/src/compute/texture-transform.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, Device, Framebuffer, RenderPassProps, Sampler, Texture} from '@luma.gl/core'; import {getPassthroughFS} from '@luma.gl/shadertools'; diff --git a/modules/engine/src/debug/copy-texture-to-image.ts b/modules/engine/src/debug/copy-texture-to-image.ts index a332171958..4a8785ff14 100644 --- a/modules/engine/src/debug/copy-texture-to-image.ts +++ b/modules/engine/src/debug/copy-texture-to-image.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Texture, Framebuffer, TypedArray} from '@luma.gl/core'; diff --git a/modules/engine/src/debug/debug-framebuffer.ts b/modules/engine/src/debug/debug-framebuffer.ts index 75563843d6..50cbce0024 100644 --- a/modules/engine/src/debug/debug-framebuffer.ts +++ b/modules/engine/src/debug/debug-framebuffer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device, Framebuffer, RenderPass, Texture} from '@luma.gl/core'; diff --git a/modules/engine/src/debug/debug-shader-layout.ts b/modules/engine/src/debug/debug-shader-layout.ts index 7cdd75bf52..9fb4a9b080 100644 --- a/modules/engine/src/debug/debug-shader-layout.ts +++ b/modules/engine/src/debug/debug-shader-layout.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderLayout} from '@luma.gl/core'; diff --git a/modules/engine/src/debug/pixel-data-utils.ts b/modules/engine/src/debug/pixel-data-utils.ts index 7d9c1d329b..5fe42094b1 100644 --- a/modules/engine/src/debug/pixel-data-utils.ts +++ b/modules/engine/src/debug/pixel-data-utils.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {TypedArray} from '@math.gl/core'; diff --git a/modules/engine/src/dynamic-buffer/dynamic-buffer.ts b/modules/engine/src/dynamic-buffer/dynamic-buffer.ts index 85db060a57..250446d42c 100644 --- a/modules/engine/src/dynamic-buffer/dynamic-buffer.ts +++ b/modules/engine/src/dynamic-buffer/dynamic-buffer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {BufferMapCallback, BufferProps, Device, Binding as CoreBinding} from '@luma.gl/core'; import {Buffer} from '@luma.gl/core'; diff --git a/modules/engine/src/dynamic-texture/dynamic-texture.ts b/modules/engine/src/dynamic-texture/dynamic-texture.ts index e2047f1e67..f73c3425af 100644 --- a/modules/engine/src/dynamic-texture/dynamic-texture.ts +++ b/modules/engine/src/dynamic-texture/dynamic-texture.ts @@ -1,5 +1,6 @@ -// luma.gl, MIT license -// Copyright (c) vis.gl contributors +// luma.gl +// SPDX-License-Identifier: MIT +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type { TextureProps, diff --git a/modules/engine/src/dynamic-texture/texture-binding-source.ts b/modules/engine/src/dynamic-texture/texture-binding-source.ts index c8370f405a..c668ad5d1c 100644 --- a/modules/engine/src/dynamic-texture/texture-binding-source.ts +++ b/modules/engine/src/dynamic-texture/texture-binding-source.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Binding, BindingDeclaration, ComputeShaderLayout, ShaderLayout} from '@luma.gl/core'; import {getShaderLayoutBinding} from '@luma.gl/core'; diff --git a/modules/engine/src/dynamic-texture/texture-data.ts b/modules/engine/src/dynamic-texture/texture-data.ts index 0cea481e3c..b89ea8031c 100644 --- a/modules/engine/src/dynamic-texture/texture-data.ts +++ b/modules/engine/src/dynamic-texture/texture-data.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {TypedArray, TextureFormat, ExternalImage} from '@luma.gl/core'; import {isExternalImage, getExternalImageSize} from '@luma.gl/core'; diff --git a/modules/engine/src/dynamic-texture/video-texture.ts b/modules/engine/src/dynamic-texture/video-texture.ts index b10715ce79..15f527457a 100644 --- a/modules/engine/src/dynamic-texture/video-texture.ts +++ b/modules/engine/src/dynamic-texture/video-texture.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device, ExternalTexture, ResourceProps, Sampler, SamplerProps} from '@luma.gl/core'; import {Texture, assert} from '@luma.gl/core'; diff --git a/modules/engine/src/geometries/cone-geometry.ts b/modules/engine/src/geometries/cone-geometry.ts index f8d9e599f0..a1bd780eee 100644 --- a/modules/engine/src/geometries/cone-geometry.ts +++ b/modules/engine/src/geometries/cone-geometry.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {TruncatedConeGeometryProps} from './truncated-cone-geometry'; import {TruncatedConeGeometry} from './truncated-cone-geometry'; diff --git a/modules/engine/src/geometries/cube-geometry.ts b/modules/engine/src/geometries/cube-geometry.ts index cfea2b0c46..1e42d4e839 100644 --- a/modules/engine/src/geometries/cube-geometry.ts +++ b/modules/engine/src/geometries/cube-geometry.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Geometry} from '../geometry/geometry'; import {uid} from '../utils/uid'; diff --git a/modules/engine/src/geometries/cylinder-geometry.ts b/modules/engine/src/geometries/cylinder-geometry.ts index 9c873b1a89..21d386291a 100644 --- a/modules/engine/src/geometries/cylinder-geometry.ts +++ b/modules/engine/src/geometries/cylinder-geometry.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {TruncatedConeGeometryProps} from './truncated-cone-geometry'; import {TruncatedConeGeometry} from './truncated-cone-geometry'; diff --git a/modules/engine/src/geometries/ico-sphere-geometry.ts b/modules/engine/src/geometries/ico-sphere-geometry.ts index 525f31753a..bd84c38589 100644 --- a/modules/engine/src/geometries/ico-sphere-geometry.ts +++ b/modules/engine/src/geometries/ico-sphere-geometry.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Vector3} from '@math.gl/core'; import {Geometry} from '../geometry/geometry'; diff --git a/modules/engine/src/geometry/geometry-table.ts b/modules/engine/src/geometry/geometry-table.ts index ec492687b2..01b014c378 100644 --- a/modules/engine/src/geometry/geometry-table.ts +++ b/modules/engine/src/geometry/geometry-table.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {TypedArray} from '@math.gl/core'; import type {VertexFormat} from '@luma.gl/core'; diff --git a/modules/engine/src/geometry/geometry-utils.ts b/modules/engine/src/geometry/geometry-utils.ts index 16001f4b69..57b1e3e084 100644 --- a/modules/engine/src/geometry/geometry-utils.ts +++ b/modules/engine/src/geometry/geometry-utils.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {VertexFormat} from '@luma.gl/core'; import {vertexFormatDecoder} from '@luma.gl/core'; diff --git a/modules/engine/src/geometry/geometry.ts b/modules/engine/src/geometry/geometry.ts index ac14002610..251c0ae42e 100644 --- a/modules/engine/src/geometry/geometry.ts +++ b/modules/engine/src/geometry/geometry.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {TypedArray} from '@math.gl/core'; import type {BufferLayout, PrimitiveTopology} from '@luma.gl/core'; diff --git a/modules/engine/src/geometry/gpu-geometry.ts b/modules/engine/src/geometry/gpu-geometry.ts index ae84ef5e50..eed9346d5b 100644 --- a/modules/engine/src/geometry/gpu-geometry.ts +++ b/modules/engine/src/geometry/gpu-geometry.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {PrimitiveTopology, BufferLayout} from '@luma.gl/core'; import {Device, Buffer} from '@luma.gl/core'; diff --git a/modules/engine/src/index.ts b/modules/engine/src/index.ts index 7f54e3cf79..434c7121ee 100644 --- a/modules/engine/src/index.ts +++ b/modules/engine/src/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // luma.gl Engine API diff --git a/modules/engine/src/material/material-factory.ts b/modules/engine/src/material/material-factory.ts index d87e852b38..00ff7c9208 100644 --- a/modules/engine/src/material/material-factory.ts +++ b/modules/engine/src/material/material-factory.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Binding, BindingsByGroup, Device} from '@luma.gl/core'; import type {ShaderModule} from '@luma.gl/shadertools'; diff --git a/modules/engine/src/material/material.ts b/modules/engine/src/material/material.ts index 47312d6346..6dddf20cdb 100644 --- a/modules/engine/src/material/material.ts +++ b/modules/engine/src/material/material.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type { Binding, diff --git a/modules/engine/src/model/model.ts b/modules/engine/src/model/model.ts index cb1873652c..9b31664797 100644 --- a/modules/engine/src/model/model.ts +++ b/modules/engine/src/model/model.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // A lot of imports, but then Model is where it all comes together... import {type TypedArray} from '@math.gl/types'; diff --git a/modules/engine/src/model/split-uniforms-and-bindings.ts b/modules/engine/src/model/split-uniforms-and-bindings.ts index e6a401929b..4e992ee1e3 100644 --- a/modules/engine/src/model/split-uniforms-and-bindings.ts +++ b/modules/engine/src/model/split-uniforms-and-bindings.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Binding, CompositeShaderType, UniformValue} from '@luma.gl/core'; import type {ShaderModuleUniformValue} from '@luma.gl/shadertools'; diff --git a/modules/engine/src/models/billboard-texture-model.ts b/modules/engine/src/models/billboard-texture-model.ts index 5949354a69..9ae32b172d 100644 --- a/modules/engine/src/models/billboard-texture-model.ts +++ b/modules/engine/src/models/billboard-texture-model.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Device, type CommandEncoder, Texture} from '@luma.gl/core'; import type {ShaderModule} from '@luma.gl/shadertools'; diff --git a/modules/engine/src/models/billboard-texture-module.ts b/modules/engine/src/models/billboard-texture-module.ts index df807f22a9..4540c3b03f 100644 --- a/modules/engine/src/models/billboard-texture-module.ts +++ b/modules/engine/src/models/billboard-texture-module.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {ShaderModule} from '@luma.gl/shadertools'; diff --git a/modules/engine/src/models/clip-space.ts b/modules/engine/src/models/clip-space.ts index 7f741207f4..e8472e8d5f 100644 --- a/modules/engine/src/models/clip-space.ts +++ b/modules/engine/src/models/clip-space.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // ClipSpace import {Device} from '@luma.gl/core'; diff --git a/modules/engine/src/models/directional-light-model.ts b/modules/engine/src/models/directional-light-model.ts index 61bd73a267..6e89dc7c27 100644 --- a/modules/engine/src/models/directional-light-model.ts +++ b/modules/engine/src/models/directional-light-model.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Device} from '@luma.gl/core'; import {ConeGeometry} from '../geometries/cone-geometry'; diff --git a/modules/engine/src/models/light-model-utils.ts b/modules/engine/src/models/light-model-utils.ts index 2e12494e9d..2a416ce666 100644 --- a/modules/engine/src/models/light-model-utils.ts +++ b/modules/engine/src/models/light-model-utils.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, Device, type RenderPass, type RenderPipelineParameters} from '@luma.gl/core'; import {Matrix4, type NumericArray} from '@math.gl/core'; diff --git a/modules/engine/src/models/point-light-model.ts b/modules/engine/src/models/point-light-model.ts index f63307d39b..d38152a522 100644 --- a/modules/engine/src/models/point-light-model.ts +++ b/modules/engine/src/models/point-light-model.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Device} from '@luma.gl/core'; import {SphereGeometry} from '../geometries/sphere-geometry'; diff --git a/modules/engine/src/models/spot-light-model.ts b/modules/engine/src/models/spot-light-model.ts index 0daf24ca04..a7b58c947a 100644 --- a/modules/engine/src/models/spot-light-model.ts +++ b/modules/engine/src/models/spot-light-model.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Device} from '@luma.gl/core'; import {ConeGeometry} from '../geometries/cone-geometry'; diff --git a/modules/engine/src/modules/picking/color-picking.ts b/modules/engine/src/modules/picking/color-picking.ts index ebbab326ce..d94b36e001 100644 --- a/modules/engine/src/modules/picking/color-picking.ts +++ b/modules/engine/src/modules/picking/color-picking.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderModule} from '@luma.gl/shadertools'; diff --git a/modules/engine/src/modules/picking/index-color-picking.ts b/modules/engine/src/modules/picking/index-color-picking.ts index 3c0238e58f..92cd2a30fd 100644 --- a/modules/engine/src/modules/picking/index-color-picking.ts +++ b/modules/engine/src/modules/picking/index-color-picking.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderModule} from '@luma.gl/shadertools'; diff --git a/modules/engine/src/modules/picking/index-picking.ts b/modules/engine/src/modules/picking/index-picking.ts index 05a1abf57d..52e8b89981 100644 --- a/modules/engine/src/modules/picking/index-picking.ts +++ b/modules/engine/src/modules/picking/index-picking.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderModule} from '@luma.gl/shadertools'; diff --git a/modules/engine/src/modules/picking/legacy-color-picking.ts b/modules/engine/src/modules/picking/legacy-color-picking.ts index 04c0a79af4..e948fef00d 100644 --- a/modules/engine/src/modules/picking/legacy-color-picking.ts +++ b/modules/engine/src/modules/picking/legacy-color-picking.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {picking as shadertoolsPicking} from '@luma.gl/shadertools'; diff --git a/modules/engine/src/modules/picking/legacy-picking-manager.ts b/modules/engine/src/modules/picking/legacy-picking-manager.ts index 3776ebca60..40c0028c64 100644 --- a/modules/engine/src/modules/picking/legacy-picking-manager.ts +++ b/modules/engine/src/modules/picking/legacy-picking-manager.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Device, Framebuffer} from '@luma.gl/core'; import {picking} from '@luma.gl/shadertools'; diff --git a/modules/engine/src/modules/picking/picking-manager.ts b/modules/engine/src/modules/picking/picking-manager.ts index 1f4530093e..cc7ead0ff1 100644 --- a/modules/engine/src/modules/picking/picking-manager.ts +++ b/modules/engine/src/modules/picking/picking-manager.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, Device, Framebuffer, Texture} from '@luma.gl/core'; import {ShaderInputs} from '../../shader-inputs'; diff --git a/modules/engine/src/modules/picking/picking-uniforms.ts b/modules/engine/src/modules/picking/picking-uniforms.ts index ce7283d749..1bad566f41 100644 --- a/modules/engine/src/modules/picking/picking-uniforms.ts +++ b/modules/engine/src/modules/picking/picking-uniforms.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {NumberArray4} from '@math.gl/types'; import type {ShaderModule} from '@luma.gl/shadertools'; diff --git a/modules/engine/src/modules/picking/picking.ts b/modules/engine/src/modules/picking/picking.ts index 4d9ade2f80..8b44dd0d35 100644 --- a/modules/engine/src/modules/picking/picking.ts +++ b/modules/engine/src/modules/picking/picking.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderModule} from '@luma.gl/shadertools'; import type {Device} from '@luma.gl/core'; diff --git a/modules/engine/src/passes/get-fragment-shader.ts b/modules/engine/src/passes/get-fragment-shader.ts index 276b44bd3c..d867d29709 100644 --- a/modules/engine/src/passes/get-fragment-shader.ts +++ b/modules/engine/src/passes/get-fragment-shader.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {ShaderPass} from '@luma.gl/shadertools'; diff --git a/modules/engine/src/passes/shader-pass-renderer.ts b/modules/engine/src/passes/shader-pass-renderer.ts index e08d6a4189..81e2f3a229 100644 --- a/modules/engine/src/passes/shader-pass-renderer.ts +++ b/modules/engine/src/passes/shader-pass-renderer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Binding, CommandEncoder, TextureFormatColor} from '@luma.gl/core'; import {Device, Framebuffer, RenderPass, Texture} from '@luma.gl/core'; diff --git a/modules/engine/src/passes/texture-transform-module.ts b/modules/engine/src/passes/texture-transform-module.ts index f770440af2..757d561fbe 100644 --- a/modules/engine/src/passes/texture-transform-module.ts +++ b/modules/engine/src/passes/texture-transform-module.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderModule} from '@luma.gl/shadertools'; diff --git a/modules/engine/src/scenegraph/group-node.ts b/modules/engine/src/scenegraph/group-node.ts index 4cbc87c038..8013e80248 100644 --- a/modules/engine/src/scenegraph/group-node.ts +++ b/modules/engine/src/scenegraph/group-node.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Matrix4, Vector3} from '@math.gl/core'; import type {NumericArray} from '@math.gl/core'; diff --git a/modules/engine/src/scenegraph/model-node.ts b/modules/engine/src/scenegraph/model-node.ts index b3afbe038c..896eabe861 100644 --- a/modules/engine/src/scenegraph/model-node.ts +++ b/modules/engine/src/scenegraph/model-node.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {RenderPass} from '@luma.gl/core'; import type {NumericArray} from '@math.gl/core'; diff --git a/modules/engine/src/scenegraph/scenegraph-bounds.ts b/modules/engine/src/scenegraph/scenegraph-bounds.ts index a315e27fab..f08524332e 100644 --- a/modules/engine/src/scenegraph/scenegraph-bounds.ts +++ b/modules/engine/src/scenegraph/scenegraph-bounds.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Matrix4, Vector3} from '@math.gl/core'; import type {NumericArray} from '@math.gl/core'; diff --git a/modules/engine/src/scenegraph/scenegraph-node.ts b/modules/engine/src/scenegraph/scenegraph-node.ts index 544f3fd425..644c3aa5a6 100644 --- a/modules/engine/src/scenegraph/scenegraph-node.ts +++ b/modules/engine/src/scenegraph/scenegraph-node.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Vector3, Matrix4, NumericArray} from '@math.gl/core'; import {uid} from '../utils/uid'; diff --git a/modules/engine/src/shader-inputs.ts b/modules/engine/src/shader-inputs.ts index 6cd296c98c..b2fa29f6e2 100644 --- a/modules/engine/src/shader-inputs.ts +++ b/modules/engine/src/shader-inputs.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Binding, CompositeShaderType} from '@luma.gl/core'; import {log} from '@luma.gl/core'; diff --git a/modules/engine/src/utils/buffer-layout-helper.ts b/modules/engine/src/utils/buffer-layout-helper.ts index e3fdd38a10..f8259f0ade 100644 --- a/modules/engine/src/utils/buffer-layout-helper.ts +++ b/modules/engine/src/utils/buffer-layout-helper.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {getBufferLayoutAttributeNames, type BufferLayout} from '@luma.gl/core'; diff --git a/modules/engine/src/utils/buffer-layout-order.ts b/modules/engine/src/utils/buffer-layout-order.ts index c1c962d241..65d1c2729e 100644 --- a/modules/engine/src/utils/buffer-layout-order.ts +++ b/modules/engine/src/utils/buffer-layout-order.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { getBufferLayoutAttributeNames, diff --git a/modules/engine/src/utils/deep-equal.ts b/modules/engine/src/utils/deep-equal.ts index 4b1444cd33..2178377617 100644 --- a/modules/engine/src/utils/deep-equal.ts +++ b/modules/engine/src/utils/deep-equal.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** * Fast partial deep equal for prop. diff --git a/modules/engine/src/utils/shader-module-utils.ts b/modules/engine/src/utils/shader-module-utils.ts index 99d572a646..b2b8bca9a7 100644 --- a/modules/engine/src/utils/shader-module-utils.ts +++ b/modules/engine/src/utils/shader-module-utils.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ComputeShaderLayout, ShaderLayout} from '@luma.gl/core'; import type {ShaderModule} from '@luma.gl/shadertools'; diff --git a/modules/engine/src/utils/uid.ts b/modules/engine/src/utils/uid.ts index 74bdb6fe76..941cc07903 100644 --- a/modules/engine/src/utils/uid.ts +++ b/modules/engine/src/utils/uid.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors const uidCounters: Record = {}; diff --git a/modules/engine/test/animation/animation-mixer.node.spec.ts b/modules/engine/test/animation/animation-mixer.node.spec.ts index 65b156f375..8cbb6ab081 100644 --- a/modules/engine/test/animation/animation-mixer.node.spec.ts +++ b/modules/engine/test/animation/animation-mixer.node.spec.ts @@ -1,5 +1,5 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import './animation-mixer.spec'; diff --git a/modules/engine/test/animation/animation-mixer.spec.ts b/modules/engine/test/animation/animation-mixer.spec.ts index 1a3339122a..4326aa01cd 100644 --- a/modules/engine/test/animation/animation-mixer.spec.ts +++ b/modules/engine/test/animation/animation-mixer.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/engine/test/animation/animator.spec.ts b/modules/engine/test/animation/animator.spec.ts index b01ffb3c60..29f5cf9859 100644 --- a/modules/engine/test/animation/animator.spec.ts +++ b/modules/engine/test/animation/animator.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {AnimationClipController, Animator} from '@luma.gl/engine'; diff --git a/modules/engine/test/animation/key-frames.node.spec.ts b/modules/engine/test/animation/key-frames.node.spec.ts index b678211690..e216bbea1b 100644 --- a/modules/engine/test/animation/key-frames.node.spec.ts +++ b/modules/engine/test/animation/key-frames.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerKeyFramesTests} from './key-frames.spec.shared'; diff --git a/modules/engine/test/animation/key-frames.spec.shared.ts b/modules/engine/test/animation/key-frames.spec.shared.ts index 4179bf6aa2..b97e84195b 100644 --- a/modules/engine/test/animation/key-frames.spec.shared.ts +++ b/modules/engine/test/animation/key-frames.spec.shared.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {TapeTestFunction} from 'test/utils/vitest-tape'; import {KeyFrames} from '@luma.gl/engine'; diff --git a/modules/engine/test/animation/key-frames.spec.ts b/modules/engine/test/animation/key-frames.spec.ts index b678211690..e216bbea1b 100644 --- a/modules/engine/test/animation/key-frames.spec.ts +++ b/modules/engine/test/animation/key-frames.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerKeyFramesTests} from './key-frames.spec.shared'; diff --git a/modules/engine/test/animation/morph-targets.node.spec.ts b/modules/engine/test/animation/morph-targets.node.spec.ts index 7e14941041..b28a6523ce 100644 --- a/modules/engine/test/animation/morph-targets.node.spec.ts +++ b/modules/engine/test/animation/morph-targets.node.spec.ts @@ -1,5 +1,5 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import './morph-targets.spec'; diff --git a/modules/engine/test/animation/morph-targets.spec.ts b/modules/engine/test/animation/morph-targets.spec.ts index 990110a72a..f37cbf5046 100644 --- a/modules/engine/test/animation/morph-targets.spec.ts +++ b/modules/engine/test/animation/morph-targets.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {applyMorphTargets} from '@luma.gl/engine'; import test from 'test/utils/vitest-tape'; diff --git a/modules/engine/test/animation/skin.node.spec.ts b/modules/engine/test/animation/skin.node.spec.ts index 20974571f5..def7c97e11 100644 --- a/modules/engine/test/animation/skin.node.spec.ts +++ b/modules/engine/test/animation/skin.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {GroupNode, updateSkinJointMatrices} from '@luma.gl/engine'; import {Matrix4} from '@math.gl/core'; diff --git a/modules/engine/test/animation/timeline.node.spec.ts b/modules/engine/test/animation/timeline.node.spec.ts index 472a8f507f..9ef6254479 100644 --- a/modules/engine/test/animation/timeline.node.spec.ts +++ b/modules/engine/test/animation/timeline.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerTimelineTests} from './timeline.spec.shared'; diff --git a/modules/engine/test/animation/timeline.spec.shared.ts b/modules/engine/test/animation/timeline.spec.shared.ts index 8f166714e3..a53a97f94b 100644 --- a/modules/engine/test/animation/timeline.spec.shared.ts +++ b/modules/engine/test/animation/timeline.spec.shared.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {TapeTestFunction} from 'test/utils/vitest-tape'; import {Timeline} from '@luma.gl/engine'; diff --git a/modules/engine/test/animation/timeline.spec.ts b/modules/engine/test/animation/timeline.spec.ts index 472a8f507f..9ef6254479 100644 --- a/modules/engine/test/animation/timeline.spec.ts +++ b/modules/engine/test/animation/timeline.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerTimelineTests} from './timeline.spec.shared'; diff --git a/modules/engine/test/application-utils/load-file.spec.ts b/modules/engine/test/application-utils/load-file.spec.ts index e2543a7bd2..f4d6161033 100644 --- a/modules/engine/test/application-utils/load-file.spec.ts +++ b/modules/engine/test/application-utils/load-file.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {_resolveLoadFileUrl, setPathPrefix} from '@luma.gl/engine'; diff --git a/modules/engine/test/compute/buffer-transform.spec.ts b/modules/engine/test/compute/buffer-transform.spec.ts index ba0225e90b..e37ed4065a 100644 --- a/modules/engine/test/compute/buffer-transform.spec.ts +++ b/modules/engine/test/compute/buffer-transform.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getWebGLTestDevice} from '@luma.gl/test-utils'; diff --git a/modules/engine/test/compute/computation.spec.ts b/modules/engine/test/compute/computation.spec.ts index 9d330cbfbf..2670625e13 100644 --- a/modules/engine/test/compute/computation.spec.ts +++ b/modules/engine/test/compute/computation.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getWebGPUTestDevice} from '@luma.gl/test-utils'; diff --git a/modules/engine/test/compute/texture-transform.spec.ts b/modules/engine/test/compute/texture-transform.spec.ts index 63d0c49ec3..89ff057a92 100644 --- a/modules/engine/test/compute/texture-transform.spec.ts +++ b/modules/engine/test/compute/texture-transform.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getWebGLTestDevice} from '@luma.gl/test-utils'; diff --git a/modules/engine/test/debug/get-debug-table-from-shader-layout.spec.ts b/modules/engine/test/debug/get-debug-table-from-shader-layout.spec.ts index 895e91d0c0..5d1e8b7d4c 100644 --- a/modules/engine/test/debug/get-debug-table-from-shader-layout.spec.ts +++ b/modules/engine/test/debug/get-debug-table-from-shader-layout.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import type {ShaderLayout} from '@luma.gl/core'; diff --git a/modules/engine/test/dynamic-buffer/dynamic-buffer.spec.ts b/modules/engine/test/dynamic-buffer/dynamic-buffer.spec.ts index 806f0b21cf..588066ee26 100644 --- a/modules/engine/test/dynamic-buffer/dynamic-buffer.spec.ts +++ b/modules/engine/test/dynamic-buffer/dynamic-buffer.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer} from '@luma.gl/core'; diff --git a/modules/engine/test/dynamic-texture/dynamic-texture.spec.ts b/modules/engine/test/dynamic-texture/dynamic-texture.spec.ts index 8c2ef3b7ac..eeabe3eae8 100644 --- a/modules/engine/test/dynamic-texture/dynamic-texture.spec.ts +++ b/modules/engine/test/dynamic-texture/dynamic-texture.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getNullTestDevice, getWebGLTestDevice, getWebGPUTestDevice} from '@luma.gl/test-utils'; diff --git a/modules/engine/test/dynamic-texture/mip-levels.spec.ts b/modules/engine/test/dynamic-texture/mip-levels.spec.ts index 5fe1207434..f1c59d67af 100644 --- a/modules/engine/test/dynamic-texture/mip-levels.spec.ts +++ b/modules/engine/test/dynamic-texture/mip-levels.spec.ts @@ -1,5 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getWebGLTestDevice} from '@luma.gl/test-utils'; diff --git a/modules/engine/test/dynamic-texture/video-texture.spec.ts b/modules/engine/test/dynamic-texture/video-texture.spec.ts index 50f643b1f6..e284b72b99 100644 --- a/modules/engine/test/dynamic-texture/video-texture.spec.ts +++ b/modules/engine/test/dynamic-texture/video-texture.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import type {Device, SamplerProps, Texture} from '@luma.gl/core'; diff --git a/modules/engine/test/geometry/geometries.node.spec.ts b/modules/engine/test/geometry/geometries.node.spec.ts index ba2cb5d637..c58ade54f4 100644 --- a/modules/engine/test/geometry/geometries.node.spec.ts +++ b/modules/engine/test/geometry/geometries.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerGeometriesTests} from './geometries.spec.shared'; diff --git a/modules/engine/test/geometry/geometries.spec.shared.ts b/modules/engine/test/geometry/geometries.spec.shared.ts index 351a4e7ada..8cd49059d9 100644 --- a/modules/engine/test/geometry/geometries.spec.shared.ts +++ b/modules/engine/test/geometry/geometries.spec.shared.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {TypedArrayConstructor} from '@math.gl/types'; import { diff --git a/modules/engine/test/geometry/geometries.spec.ts b/modules/engine/test/geometry/geometries.spec.ts index ba2cb5d637..c58ade54f4 100644 --- a/modules/engine/test/geometry/geometries.spec.ts +++ b/modules/engine/test/geometry/geometries.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerGeometriesTests} from './geometries.spec.shared'; diff --git a/modules/engine/test/geometry/geometry-utils.spec.ts b/modules/engine/test/geometry/geometry-utils.spec.ts index 18259fbde1..e7fd609101 100644 --- a/modules/engine/test/geometry/geometry-utils.spec.ts +++ b/modules/engine/test/geometry/geometry-utils.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Geometry} from '@luma.gl/engine'; diff --git a/modules/engine/test/geometry/geometry.spec.ts b/modules/engine/test/geometry/geometry.spec.ts index fa5ace56b9..8c182718d4 100644 --- a/modules/engine/test/geometry/geometry.spec.ts +++ b/modules/engine/test/geometry/geometry.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Geometry, GeometryProps} from '@luma.gl/engine'; diff --git a/modules/engine/test/geometry/gpu-geometry.spec.ts b/modules/engine/test/geometry/gpu-geometry.spec.ts index 5e8b6ee54f..9357b40e31 100644 --- a/modules/engine/test/geometry/gpu-geometry.spec.ts +++ b/modules/engine/test/geometry/gpu-geometry.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/engine/test/index.ts b/modules/engine/test/index.ts index 1af6105e93..e464b5efdf 100644 --- a/modules/engine/test/index.ts +++ b/modules/engine/test/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // utils import './utils/deep-equal.spec'; diff --git a/modules/engine/test/lib/animation-loop.spec.ts b/modules/engine/test/lib/animation-loop.spec.ts index b281467127..3457eeff3c 100644 --- a/modules/engine/test/lib/animation-loop.spec.ts +++ b/modules/engine/test/lib/animation-loop.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getWebGLTestDevice, getWebGPUTestDevice} from '@luma.gl/test-utils'; diff --git a/modules/engine/test/lib/material.spec.ts b/modules/engine/test/lib/material.spec.ts index 67f63f66f3..0dfa67e6f2 100644 --- a/modules/engine/test/lib/material.spec.ts +++ b/modules/engine/test/lib/material.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import type {ShaderModule} from '@luma.gl/shadertools'; diff --git a/modules/engine/test/lib/model.node.spec.ts b/modules/engine/test/lib/model.node.spec.ts index 0746a711e1..d2d331cc68 100644 --- a/modules/engine/test/lib/model.node.spec.ts +++ b/modules/engine/test/lib/model.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import type {Device} from '@luma.gl/core'; diff --git a/modules/engine/test/lib/model.spec.ts b/modules/engine/test/lib/model.spec.ts index 1a91b3e96e..c8746fdeab 100644 --- a/modules/engine/test/lib/model.spec.ts +++ b/modules/engine/test/lib/model.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/engine/test/lib/picking-manager.spec.ts b/modules/engine/test/lib/picking-manager.spec.ts index 25c5525ce4..600ed0105f 100644 --- a/modules/engine/test/lib/picking-manager.spec.ts +++ b/modules/engine/test/lib/picking-manager.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import type {Framebuffer} from '@luma.gl/core'; diff --git a/modules/engine/test/lib/picking-modules.node.spec.ts b/modules/engine/test/lib/picking-modules.node.spec.ts index 7077ccafa5..7440b3b445 100644 --- a/modules/engine/test/lib/picking-modules.node.spec.ts +++ b/modules/engine/test/lib/picking-modules.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; diff --git a/modules/engine/test/models/background-texture-model.spec.ts b/modules/engine/test/models/background-texture-model.spec.ts index e445e0e783..365b8252fa 100644 --- a/modules/engine/test/models/background-texture-model.spec.ts +++ b/modules/engine/test/models/background-texture-model.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getTestDevices} from '@luma.gl/test-utils'; diff --git a/modules/engine/test/models/light-models.spec.ts b/modules/engine/test/models/light-models.spec.ts index 24c13ee1a6..b73cc48174 100644 --- a/modules/engine/test/models/light-models.spec.ts +++ b/modules/engine/test/models/light-models.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Matrix4} from '@math.gl/core'; diff --git a/modules/engine/test/passes/shader-pass-renderer.spec.ts b/modules/engine/test/passes/shader-pass-renderer.spec.ts index 87c4c3ee50..be3670ccc2 100644 --- a/modules/engine/test/passes/shader-pass-renderer.spec.ts +++ b/modules/engine/test/passes/shader-pass-renderer.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getTestDevices, getWebGPUTestDevice} from '@luma.gl/test-utils'; diff --git a/modules/engine/test/scenegraph/group-node.spec.ts b/modules/engine/test/scenegraph/group-node.spec.ts index 4e950b80b5..7d260119bc 100644 --- a/modules/engine/test/scenegraph/group-node.spec.ts +++ b/modules/engine/test/scenegraph/group-node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getWebGLTestDevice} from '@luma.gl/test-utils'; diff --git a/modules/engine/test/scenegraph/model-node.spec.ts b/modules/engine/test/scenegraph/model-node.spec.ts index d614c32cb1..70900a2ddc 100644 --- a/modules/engine/test/scenegraph/model-node.spec.ts +++ b/modules/engine/test/scenegraph/model-node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getWebGLTestDevice} from '@luma.gl/test-utils'; diff --git a/modules/engine/test/scenegraph/scenegraph-node.spec.ts b/modules/engine/test/scenegraph/scenegraph-node.spec.ts index 920c6707e0..3a70773f93 100644 --- a/modules/engine/test/scenegraph/scenegraph-node.spec.ts +++ b/modules/engine/test/scenegraph/scenegraph-node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {ScenegraphNode} from '@luma.gl/engine'; diff --git a/modules/engine/test/shader-inputs-types.spec.ts b/modules/engine/test/shader-inputs-types.spec.ts index ac858ebbb5..55c1174dc8 100644 --- a/modules/engine/test/shader-inputs-types.spec.ts +++ b/modules/engine/test/shader-inputs-types.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Texture} from '../../core/src/index'; import type {ShaderModule} from '../../shadertools/src/index'; diff --git a/modules/engine/test/shader-inputs.spec.ts b/modules/engine/test/shader-inputs.spec.ts index 0216c30dd8..5b74ff2f9e 100644 --- a/modules/engine/test/shader-inputs.spec.ts +++ b/modules/engine/test/shader-inputs.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Texture} from '../../core/src/index'; diff --git a/modules/engine/test/utils/buffer-layout-order.spec.ts b/modules/engine/test/utils/buffer-layout-order.spec.ts index df61a7c5f4..b1c8796d0b 100644 --- a/modules/engine/test/utils/buffer-layout-order.spec.ts +++ b/modules/engine/test/utils/buffer-layout-order.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {type ShaderLayout, type BufferLayout} from '@luma.gl/core'; diff --git a/modules/engine/test/utils/deep-equal.node.spec.ts b/modules/engine/test/utils/deep-equal.node.spec.ts index e6a8460a00..72b622177d 100644 --- a/modules/engine/test/utils/deep-equal.node.spec.ts +++ b/modules/engine/test/utils/deep-equal.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerDeepEqualTests} from './deep-equal.spec.shared'; diff --git a/modules/engine/test/utils/deep-equal.spec.shared.ts b/modules/engine/test/utils/deep-equal.spec.shared.ts index 5bc3687dfb..1dff8e887d 100644 --- a/modules/engine/test/utils/deep-equal.spec.shared.ts +++ b/modules/engine/test/utils/deep-equal.spec.shared.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {TapeTestFunction} from 'test/utils/vitest-tape'; import {deepEqual} from '@luma.gl/engine/utils/deep-equal'; diff --git a/modules/engine/test/utils/deep-equal.spec.ts b/modules/engine/test/utils/deep-equal.spec.ts index e6a8460a00..72b622177d 100644 --- a/modules/engine/test/utils/deep-equal.spec.ts +++ b/modules/engine/test/utils/deep-equal.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerDeepEqualTests} from './deep-equal.spec.shared'; diff --git a/modules/engine/test/utils/shader-module-utils.spec.ts b/modules/engine/test/utils/shader-module-utils.spec.ts index 0658a060e3..2114b66767 100644 --- a/modules/engine/test/utils/shader-module-utils.spec.ts +++ b/modules/engine/test/utils/shader-module-utils.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import type {ShaderLayout} from '../../../core/src'; diff --git a/modules/engine/test/utils/split-uniforms-and-bindings.node.spec.ts b/modules/engine/test/utils/split-uniforms-and-bindings.node.spec.ts index 07a986066b..3ca5760b7b 100644 --- a/modules/engine/test/utils/split-uniforms-and-bindings.node.spec.ts +++ b/modules/engine/test/utils/split-uniforms-and-bindings.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerSplitUniformsAndBindingsTests} from './split-uniforms-and-bindings.spec.shared'; diff --git a/modules/engine/test/utils/split-uniforms-and-bindings.spec.shared.ts b/modules/engine/test/utils/split-uniforms-and-bindings.spec.shared.ts index fe6f9aa260..79ff2bd5c9 100644 --- a/modules/engine/test/utils/split-uniforms-and-bindings.spec.shared.ts +++ b/modules/engine/test/utils/split-uniforms-and-bindings.spec.shared.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {splitUniformsAndBindings} from '@luma.gl/engine/model/split-uniforms-and-bindings'; import type {TapeTestFunction} from 'test/utils/vitest-tape'; diff --git a/modules/engine/test/utils/split-uniforms-and-bindings.spec.ts b/modules/engine/test/utils/split-uniforms-and-bindings.spec.ts index 07a986066b..3ca5760b7b 100644 --- a/modules/engine/test/utils/split-uniforms-and-bindings.spec.ts +++ b/modules/engine/test/utils/split-uniforms-and-bindings.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerSplitUniformsAndBindingsTests} from './split-uniforms-and-bindings.spec.shared'; diff --git a/modules/experimental/src/controls/orbit-controls.ts b/modules/experimental/src/controls/orbit-controls.ts index ef45dd8e3c..28dedb2c0a 100644 --- a/modules/experimental/src/controls/orbit-controls.ts +++ b/modules/experimental/src/controls/orbit-controls.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export type OrbitPosition = [number, number, number]; diff --git a/modules/experimental/src/engine/deferred-scene-renderer.ts b/modules/experimental/src/engine/deferred-scene-renderer.ts index 446ab7db0a..9a9dcc7e07 100644 --- a/modules/experimental/src/engine/deferred-scene-renderer.ts +++ b/modules/experimental/src/engine/deferred-scene-renderer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Device, type TextureFormatColor} from '@luma.gl/core'; import {type ModelProps, ShaderPassRenderer} from '@luma.gl/engine'; diff --git a/modules/experimental/src/engine/deferred-scene-shaders.ts b/modules/experimental/src/engine/deferred-scene-shaders.ts index c1bcff86dd..da978320d8 100644 --- a/modules/experimental/src/engine/deferred-scene-shaders.ts +++ b/modules/experimental/src/engine/deferred-scene-shaders.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** Canonical-PBR material capture used by the reusable WebGPU deferred scene renderer. */ export const DEFERRED_SCENE_WGSL_SHADER = /* wgsl */ ` diff --git a/modules/experimental/src/engine/pbr-environment-shaders.ts b/modules/experimental/src/engine/pbr-environment-shaders.ts index cc5b08241c..a373176e57 100644 --- a/modules/experimental/src/engine/pbr-environment-shaders.ts +++ b/modules/experimental/src/engine/pbr-environment-shaders.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Texture} from '@luma.gl/core'; import type {ShaderModule} from '@luma.gl/shadertools'; diff --git a/modules/experimental/src/engine/pbr-environment.ts b/modules/experimental/src/engine/pbr-environment.ts index 70a2519c3f..7b4b7d8c5f 100644 --- a/modules/experimental/src/engine/pbr-environment.ts +++ b/modules/experimental/src/engine/pbr-environment.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { assert, diff --git a/modules/experimental/src/engine/pbr-material.ts b/modules/experimental/src/engine/pbr-material.ts index 7bad96c826..4b59ff407e 100644 --- a/modules/experimental/src/engine/pbr-material.ts +++ b/modules/experimental/src/engine/pbr-material.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Binding, Device} from '@luma.gl/core'; import {type Material, MaterialFactory, type TextureBindingSource} from '@luma.gl/engine'; diff --git a/modules/experimental/src/engine/pbr-model.ts b/modules/experimental/src/engine/pbr-model.ts index 860d046c74..5a57977a7c 100644 --- a/modules/experimental/src/engine/pbr-model.ts +++ b/modules/experimental/src/engine/pbr-model.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import {type Material, Model, type ModelProps} from '@luma.gl/engine'; diff --git a/modules/experimental/src/engine/scene-renderer.ts b/modules/experimental/src/engine/scene-renderer.ts index 997348df5f..2d46d38a0a 100644 --- a/modules/experimental/src/engine/scene-renderer.ts +++ b/modules/experimental/src/engine/scene-renderer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { Buffer, diff --git a/modules/experimental/src/gpu-primitives/dispatch-command-buffer.ts b/modules/experimental/src/gpu-primitives/dispatch-command-buffer.ts index ab9024505b..9642c4ace6 100644 --- a/modules/experimental/src/gpu-primitives/dispatch-command-buffer.ts +++ b/modules/experimental/src/gpu-primitives/dispatch-command-buffer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Device} from '@luma.gl/core'; import {GPUData} from '@luma.gl/tables'; diff --git a/modules/experimental/src/gpu-primitives/draw-command-buffer.ts b/modules/experimental/src/gpu-primitives/draw-command-buffer.ts index 950525047f..74e141d5a7 100644 --- a/modules/experimental/src/gpu-primitives/draw-command-buffer.ts +++ b/modules/experimental/src/gpu-primitives/draw-command-buffer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Device, type RenderPass} from '@luma.gl/core'; import {GPUData} from '@luma.gl/tables'; diff --git a/modules/experimental/src/gpu-primitives/gpu-ancestor-projection.ts b/modules/experimental/src/gpu-primitives/gpu-ancestor-projection.ts index 61f3425aa9..b687db8bdd 100644 --- a/modules/experimental/src/gpu-primitives/gpu-ancestor-projection.ts +++ b/modules/experimental/src/gpu-primitives/gpu-ancestor-projection.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type Binding} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/experimental/src/gpu-primitives/gpu-batch-hash-join.ts b/modules/experimental/src/gpu-primitives/gpu-batch-hash-join.ts index 870a7f223a..5c0e7d158e 100644 --- a/modules/experimental/src/gpu-primitives/gpu-batch-hash-join.ts +++ b/modules/experimental/src/gpu-primitives/gpu-batch-hash-join.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {GPUCommandGraph, GraphVectorView, type GraphDataView} from './gpu-command-graph'; import {GPUHashJoin} from './gpu-hash-join'; diff --git a/modules/experimental/src/gpu-primitives/gpu-batch-sort.ts b/modules/experimental/src/gpu-primitives/gpu-batch-sort.ts index 0e616b3e82..4e714f2176 100644 --- a/modules/experimental/src/gpu-primitives/gpu-batch-sort.ts +++ b/modules/experimental/src/gpu-primitives/gpu-batch-sort.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {GraphVectorView, type GPUCommandGraph} from './gpu-command-graph'; import {validateMatchingVectorTopology} from './graph-data-view-utils'; diff --git a/modules/experimental/src/gpu-primitives/gpu-bvh-query.ts b/modules/experimental/src/gpu-primitives/gpu-bvh-query.ts index 08f1c69f12..74dd8ed30e 100644 --- a/modules/experimental/src/gpu-primitives/gpu-bvh-query.ts +++ b/modules/experimental/src/gpu-primitives/gpu-bvh-query.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type Binding} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/experimental/src/gpu-primitives/gpu-bvh.ts b/modules/experimental/src/gpu-primitives/gpu-bvh.ts index 2f168bbf1f..6f9138f92c 100644 --- a/modules/experimental/src/gpu-primitives/gpu-bvh.ts +++ b/modules/experimental/src/gpu-primitives/gpu-bvh.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type Binding} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/experimental/src/gpu-primitives/gpu-command-graph-compiler.ts b/modules/experimental/src/gpu-primitives/gpu-command-graph-compiler.ts index b6db1fce60..ebd65554a6 100644 --- a/modules/experimental/src/gpu-primitives/gpu-command-graph-compiler.ts +++ b/modules/experimental/src/gpu-primitives/gpu-command-graph-compiler.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, Texture, textureFormatDecoder} from '@luma.gl/core'; import type {Device, TextureFormat} from '@luma.gl/core'; diff --git a/modules/experimental/src/gpu-primitives/gpu-command-graph-inspector.ts b/modules/experimental/src/gpu-primitives/gpu-command-graph-inspector.ts index e771ce8d85..5aef4ace5d 100644 --- a/modules/experimental/src/gpu-primitives/gpu-command-graph-inspector.ts +++ b/modules/experimental/src/gpu-primitives/gpu-command-graph-inspector.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {CommandEncoder} from '@luma.gl/core'; import type {GPUCommandGraphEncoding} from './gpu-command-graph'; diff --git a/modules/experimental/src/gpu-primitives/gpu-command-graph-types.ts b/modules/experimental/src/gpu-primitives/gpu-command-graph-types.ts index d5bfd2d903..5abe50ebd3 100644 --- a/modules/experimental/src/gpu-primitives/gpu-command-graph-types.ts +++ b/modules/experimental/src/gpu-primitives/gpu-command-graph-types.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type { Buffer, diff --git a/modules/experimental/src/gpu-primitives/gpu-command-graph.ts b/modules/experimental/src/gpu-primitives/gpu-command-graph.ts index 2754159b6d..3df9fedc29 100644 --- a/modules/experimental/src/gpu-primitives/gpu-command-graph.ts +++ b/modules/experimental/src/gpu-primitives/gpu-command-graph.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, Texture} from '@luma.gl/core'; import type { diff --git a/modules/experimental/src/gpu-primitives/gpu-compaction.ts b/modules/experimental/src/gpu-primitives/gpu-compaction.ts index 4c9f87f5a5..6e3460846c 100644 --- a/modules/experimental/src/gpu-primitives/gpu-compaction.ts +++ b/modules/experimental/src/gpu-primitives/gpu-compaction.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Computation} from '@luma.gl/engine'; import {GPUCommandGraph, GraphVectorView, type GraphDataView} from './gpu-command-graph'; diff --git a/modules/experimental/src/gpu-primitives/gpu-dispatch-utils.ts b/modules/experimental/src/gpu-primitives/gpu-dispatch-utils.ts index af6c97aa4e..322577396a 100644 --- a/modules/experimental/src/gpu-primitives/gpu-dispatch-utils.ts +++ b/modules/experimental/src/gpu-primitives/gpu-dispatch-utils.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors const MAXIMUM_UINT32 = 0xffffffff; const UINT32_VALUE_COUNT = 0x100000000; diff --git a/modules/experimental/src/gpu-primitives/gpu-fft2d-shaders.ts b/modules/experimental/src/gpu-primitives/gpu-fft2d-shaders.ts index a5098a92f8..2ec10f1a78 100644 --- a/modules/experimental/src/gpu-primitives/gpu-fft2d-shaders.ts +++ b/modules/experimental/src/gpu-primitives/gpu-fft2d-shaders.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** Number of invocations along each dimension of one GPUFFT2D workgroup. */ export const GPU_FFT2D_WORKGROUP_DIMENSION = 8; diff --git a/modules/experimental/src/gpu-primitives/gpu-fft2d.ts b/modules/experimental/src/gpu-primitives/gpu-fft2d.ts index b9b0405c1f..0914716d67 100644 --- a/modules/experimental/src/gpu-primitives/gpu-fft2d.ts +++ b/modules/experimental/src/gpu-primitives/gpu-fft2d.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type CommandEncoder, type Device} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/experimental/src/gpu-primitives/gpu-graph-traversal.ts b/modules/experimental/src/gpu-primitives/gpu-graph-traversal.ts index 5d66234fd0..2078ff8a48 100644 --- a/modules/experimental/src/gpu-primitives/gpu-graph-traversal.ts +++ b/modules/experimental/src/gpu-primitives/gpu-graph-traversal.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type Binding} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/experimental/src/gpu-primitives/gpu-grid-aggregation.ts b/modules/experimental/src/gpu-primitives/gpu-grid-aggregation.ts index 36bee3504f..8b3b100567 100644 --- a/modules/experimental/src/gpu-primitives/gpu-grid-aggregation.ts +++ b/modules/experimental/src/gpu-primitives/gpu-grid-aggregation.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type Binding} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/experimental/src/gpu-primitives/gpu-grid-binning.ts b/modules/experimental/src/gpu-primitives/gpu-grid-binning.ts index 849a2175b8..98fde8847b 100644 --- a/modules/experimental/src/gpu-primitives/gpu-grid-binning.ts +++ b/modules/experimental/src/gpu-primitives/gpu-grid-binning.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type Binding} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/experimental/src/gpu-primitives/gpu-grid-index-internals.ts b/modules/experimental/src/gpu-primitives/gpu-grid-index-internals.ts index 219cefcf48..48317ce87f 100644 --- a/modules/experimental/src/gpu-primitives/gpu-grid-index-internals.ts +++ b/modules/experimental/src/gpu-primitives/gpu-grid-index-internals.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type Binding} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/experimental/src/gpu-primitives/gpu-grid-index-query.ts b/modules/experimental/src/gpu-primitives/gpu-grid-index-query.ts index 9c67d75fb5..7119b9b07d 100644 --- a/modules/experimental/src/gpu-primitives/gpu-grid-index-query.ts +++ b/modules/experimental/src/gpu-primitives/gpu-grid-index-query.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type Binding} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/experimental/src/gpu-primitives/gpu-grid-index.ts b/modules/experimental/src/gpu-primitives/gpu-grid-index.ts index c26c43895b..652c4ae9e3 100644 --- a/modules/experimental/src/gpu-primitives/gpu-grid-index.ts +++ b/modules/experimental/src/gpu-primitives/gpu-grid-index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type GPUCommandGraph, type GraphDataView, GraphVectorView} from './gpu-command-graph'; import {addGPUGridIndexToGraphWithDispatchLimit} from './gpu-grid-index-internals'; diff --git a/modules/experimental/src/gpu-primitives/gpu-group-aggregation.ts b/modules/experimental/src/gpu-primitives/gpu-group-aggregation.ts index df5869ebac..d10aa95401 100644 --- a/modules/experimental/src/gpu-primitives/gpu-group-aggregation.ts +++ b/modules/experimental/src/gpu-primitives/gpu-group-aggregation.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type Binding} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/experimental/src/gpu-primitives/gpu-hash-index.ts b/modules/experimental/src/gpu-primitives/gpu-hash-index.ts index 5dfed78c8a..e8dea17d46 100644 --- a/modules/experimental/src/gpu-primitives/gpu-hash-index.ts +++ b/modules/experimental/src/gpu-primitives/gpu-hash-index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type Binding} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/experimental/src/gpu-primitives/gpu-hash-join.ts b/modules/experimental/src/gpu-primitives/gpu-hash-join.ts index bf9164b518..6ab20bfefe 100644 --- a/modules/experimental/src/gpu-primitives/gpu-hash-join.ts +++ b/modules/experimental/src/gpu-primitives/gpu-hash-join.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type Binding} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/experimental/src/gpu-primitives/gpu-hierarchy-layout.ts b/modules/experimental/src/gpu-primitives/gpu-hierarchy-layout.ts index 9939851b10..baca0a44f1 100644 --- a/modules/experimental/src/gpu-primitives/gpu-hierarchy-layout.ts +++ b/modules/experimental/src/gpu-primitives/gpu-hierarchy-layout.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type Binding} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/experimental/src/gpu-primitives/gpu-histogram.ts b/modules/experimental/src/gpu-primitives/gpu-histogram.ts index ddc3c47b11..21007268ef 100644 --- a/modules/experimental/src/gpu-primitives/gpu-histogram.ts +++ b/modules/experimental/src/gpu-primitives/gpu-histogram.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type Binding} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/experimental/src/gpu-primitives/gpu-index-picking-target.ts b/modules/experimental/src/gpu-primitives/gpu-index-picking-target.ts index 435d8b6450..64ddf451ad 100644 --- a/modules/experimental/src/gpu-primitives/gpu-index-picking-target.ts +++ b/modules/experimental/src/gpu-primitives/gpu-index-picking-target.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, Texture, type Binding, type RenderPassProps} from '@luma.gl/core'; import type {PickInfo} from '@luma.gl/engine'; diff --git a/modules/experimental/src/gpu-primitives/gpu-indexed-range-compaction.ts b/modules/experimental/src/gpu-primitives/gpu-indexed-range-compaction.ts index 063719f1a1..cf557ca883 100644 --- a/modules/experimental/src/gpu-primitives/gpu-indexed-range-compaction.ts +++ b/modules/experimental/src/gpu-primitives/gpu-indexed-range-compaction.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type Binding, type Buffer, type Device} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/experimental/src/gpu-primitives/gpu-mask.ts b/modules/experimental/src/gpu-primitives/gpu-mask.ts index c42744ef19..686ad33210 100644 --- a/modules/experimental/src/gpu-primitives/gpu-mask.ts +++ b/modules/experimental/src/gpu-primitives/gpu-mask.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type Binding} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/experimental/src/gpu-primitives/gpu-point-spatial-filter.ts b/modules/experimental/src/gpu-primitives/gpu-point-spatial-filter.ts index 12afebd0a5..6f26450dc0 100644 --- a/modules/experimental/src/gpu-primitives/gpu-point-spatial-filter.ts +++ b/modules/experimental/src/gpu-primitives/gpu-point-spatial-filter.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type Binding} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/experimental/src/gpu-primitives/gpu-readback-ring.ts b/modules/experimental/src/gpu-primitives/gpu-readback-ring.ts index 01c0b11120..39e51a3bc1 100644 --- a/modules/experimental/src/gpu-primitives/gpu-readback-ring.ts +++ b/modules/experimental/src/gpu-primitives/gpu-readback-ring.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type CommandEncoder, type Device} from '@luma.gl/core'; diff --git a/modules/experimental/src/gpu-primitives/gpu-reduction.ts b/modules/experimental/src/gpu-primitives/gpu-reduction.ts index e461c55bad..1366b71740 100644 --- a/modules/experimental/src/gpu-primitives/gpu-reduction.ts +++ b/modules/experimental/src/gpu-primitives/gpu-reduction.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type Binding} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/experimental/src/gpu-primitives/gpu-scan.ts b/modules/experimental/src/gpu-primitives/gpu-scan.ts index e20845c9cf..8bbbcbda19 100644 --- a/modules/experimental/src/gpu-primitives/gpu-scan.ts +++ b/modules/experimental/src/gpu-primitives/gpu-scan.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type Binding} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/experimental/src/gpu-primitives/gpu-scene-adapters.ts b/modules/experimental/src/gpu-primitives/gpu-scene-adapters.ts index 8b874b49bb..8f9e07dfb6 100644 --- a/modules/experimental/src/gpu-primitives/gpu-scene-adapters.ts +++ b/modules/experimental/src/gpu-primitives/gpu-scene-adapters.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Device} from '@luma.gl/core'; import {DynamicBuffer} from '@luma.gl/engine'; diff --git a/modules/experimental/src/gpu-primitives/gpu-scene-draw-generation.ts b/modules/experimental/src/gpu-primitives/gpu-scene-draw-generation.ts index 3ccecd0271..ed417964f3 100644 --- a/modules/experimental/src/gpu-primitives/gpu-scene-draw-generation.ts +++ b/modules/experimental/src/gpu-primitives/gpu-scene-draw-generation.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Binding} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/experimental/src/gpu-primitives/gpu-scene-resource-groups.ts b/modules/experimental/src/gpu-primitives/gpu-scene-resource-groups.ts index 9702ea9549..cf9522a0e5 100644 --- a/modules/experimental/src/gpu-primitives/gpu-scene-resource-groups.ts +++ b/modules/experimental/src/gpu-primitives/gpu-scene-resource-groups.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Binding} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/experimental/src/gpu-primitives/gpu-scene.ts b/modules/experimental/src/gpu-primitives/gpu-scene.ts index 86054ec8a9..0bdbc9f19d 100644 --- a/modules/experimental/src/gpu-primitives/gpu-scene.ts +++ b/modules/experimental/src/gpu-primitives/gpu-scene.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Device} from '@luma.gl/core'; import {GPUCommandGraph, type GraphBufferHandle, type GraphDataView} from './gpu-command-graph'; diff --git a/modules/experimental/src/gpu-primitives/gpu-sort.ts b/modules/experimental/src/gpu-primitives/gpu-sort.ts index 544f33fe5f..fa3e128f1a 100644 --- a/modules/experimental/src/gpu-primitives/gpu-sort.ts +++ b/modules/experimental/src/gpu-primitives/gpu-sort.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type Binding} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/experimental/src/gpu-primitives/gpu-spatial-query-benchmark.ts b/modules/experimental/src/gpu-primitives/gpu-spatial-query-benchmark.ts index 8e9feef634..6980e929d1 100644 --- a/modules/experimental/src/gpu-primitives/gpu-spatial-query-benchmark.ts +++ b/modules/experimental/src/gpu-primitives/gpu-spatial-query-benchmark.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {CommandEncoder, Device} from '@luma.gl/core'; import type { diff --git a/modules/experimental/src/gpu-primitives/gpu-text-selection.ts b/modules/experimental/src/gpu-primitives/gpu-text-selection.ts index 7f094e4f4d..baaf65a659 100644 --- a/modules/experimental/src/gpu-primitives/gpu-text-selection.ts +++ b/modules/experimental/src/gpu-primitives/gpu-text-selection.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Binding} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/experimental/src/gpu-primitives/gpu-virtual-geometry-selection.ts b/modules/experimental/src/gpu-primitives/gpu-virtual-geometry-selection.ts index a3dcb98043..a9fbad18b7 100644 --- a/modules/experimental/src/gpu-primitives/gpu-virtual-geometry-selection.ts +++ b/modules/experimental/src/gpu-primitives/gpu-virtual-geometry-selection.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Binding} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/experimental/src/gpu-primitives/gpu-visibility-workflow.ts b/modules/experimental/src/gpu-primitives/gpu-visibility-workflow.ts index b7ea16a83b..6258717ba3 100644 --- a/modules/experimental/src/gpu-primitives/gpu-visibility-workflow.ts +++ b/modules/experimental/src/gpu-primitives/gpu-visibility-workflow.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type Binding} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/experimental/src/gpu-primitives/graph-data-view-utils.ts b/modules/experimental/src/gpu-primitives/graph-data-view-utils.ts index d83066f1be..a4475c102f 100644 --- a/modules/experimental/src/gpu-primitives/graph-data-view-utils.ts +++ b/modules/experimental/src/gpu-primitives/graph-data-view-utils.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type VertexFormat} from '@luma.gl/core'; import { diff --git a/modules/experimental/src/gpu-primitives/index.ts b/modules/experimental/src/gpu-primitives/index.ts index 15db2e5177..a3fe2a1520 100644 --- a/modules/experimental/src/gpu-primitives/index.ts +++ b/modules/experimental/src/gpu-primitives/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export { CompiledGPUCommandGraph, diff --git a/modules/experimental/src/index.ts b/modules/experimental/src/index.ts index 7a9b28ce58..ee797b2234 100644 --- a/modules/experimental/src/index.ts +++ b/modules/experimental/src/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export type { CreatePBRMaterialOptions, diff --git a/modules/experimental/src/lugraph/lu-graph-degree-internals.ts b/modules/experimental/src/lugraph/lu-graph-degree-internals.ts index 7d47af5436..6f5a0ae980 100644 --- a/modules/experimental/src/lugraph/lu-graph-degree-internals.ts +++ b/modules/experimental/src/lugraph/lu-graph-degree-internals.ts @@ -1,6 +1,7 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors +// SPDX-FileComment: Independently implemented for WebGPU; inspired by NVIDIA RAPIDS cuGraph. import {type Binding} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/experimental/src/lugraph/lu-graph-degree.ts b/modules/experimental/src/lugraph/lu-graph-degree.ts index c6ba3c4e0d..a6b7984e71 100644 --- a/modules/experimental/src/lugraph/lu-graph-degree.ts +++ b/modules/experimental/src/lugraph/lu-graph-degree.ts @@ -1,6 +1,7 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors +// SPDX-FileComment: Independently implemented for WebGPU; inspired by NVIDIA RAPIDS cuGraph. import type {Buffer} from '@luma.gl/core'; import {DynamicBuffer} from '@luma.gl/engine'; diff --git a/modules/experimental/src/lutrace/gpu-trace-interaction.ts b/modules/experimental/src/lutrace/gpu-trace-interaction.ts index 9bad13f470..b235f05bc4 100644 --- a/modules/experimental/src/lutrace/gpu-trace-interaction.ts +++ b/modules/experimental/src/lutrace/gpu-trace-interaction.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type Binding} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/experimental/src/lutrace/gpu-trace-picking.ts b/modules/experimental/src/lutrace/gpu-trace-picking.ts index e5b7a8d73b..332aedf80d 100644 --- a/modules/experimental/src/lutrace/gpu-trace-picking.ts +++ b/modules/experimental/src/lutrace/gpu-trace-picking.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {assert} from '@luma.gl/core'; diff --git a/modules/experimental/src/lutrace/gpu-trace-scene.ts b/modules/experimental/src/lutrace/gpu-trace-scene.ts index 2799bffb59..ad41be4557 100644 --- a/modules/experimental/src/lutrace/gpu-trace-scene.ts +++ b/modules/experimental/src/lutrace/gpu-trace-scene.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Device} from '@luma.gl/core'; import { diff --git a/modules/experimental/src/lutrace/index.ts b/modules/experimental/src/lutrace/index.ts index e823d79be9..910ab600eb 100644 --- a/modules/experimental/src/lutrace/index.ts +++ b/modules/experimental/src/lutrace/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export { GPUTraceScene, diff --git a/modules/experimental/src/materials/emissive-material.ts b/modules/experimental/src/materials/emissive-material.ts index 70348f13df..e810ee3bdb 100644 --- a/modules/experimental/src/materials/emissive-material.ts +++ b/modules/experimental/src/materials/emissive-material.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderModule, ShaderPlugin} from '@luma.gl/shadertools'; import {opticalLighting} from './optical-lighting'; diff --git a/modules/experimental/src/materials/glass-material.ts b/modules/experimental/src/materials/glass-material.ts index ac492e6276..bbbc237403 100644 --- a/modules/experimental/src/materials/glass-material.ts +++ b/modules/experimental/src/materials/glass-material.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Texture} from '@luma.gl/core'; import type {ShaderModule, ShaderPlugin} from '@luma.gl/shadertools'; diff --git a/modules/experimental/src/materials/glass-transmission.ts b/modules/experimental/src/materials/glass-transmission.ts index b92593b665..8abf9cf860 100644 --- a/modules/experimental/src/materials/glass-transmission.ts +++ b/modules/experimental/src/materials/glass-transmission.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Texture} from '@luma.gl/core'; import type {ShaderModule, ShaderPlugin} from '@luma.gl/shadertools'; diff --git a/modules/experimental/src/materials/optical-caustics.ts b/modules/experimental/src/materials/optical-caustics.ts index aa0285bf02..ddc38de368 100644 --- a/modules/experimental/src/materials/optical-caustics.ts +++ b/modules/experimental/src/materials/optical-caustics.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderModule, ShaderPlugin} from '@luma.gl/shadertools'; import {opticalLighting} from './optical-lighting'; diff --git a/modules/experimental/src/materials/optical-lighting.ts b/modules/experimental/src/materials/optical-lighting.ts index 0af42c758b..80bcbd8366 100644 --- a/modules/experimental/src/materials/optical-lighting.ts +++ b/modules/experimental/src/materials/optical-lighting.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderModule} from '@luma.gl/shadertools'; diff --git a/modules/experimental/src/materials/optical-point-lights.ts b/modules/experimental/src/materials/optical-point-lights.ts index 11cb3c8384..d6006bfa8e 100644 --- a/modules/experimental/src/materials/optical-point-lights.ts +++ b/modules/experimental/src/materials/optical-point-lights.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderModule, ShaderPlugin} from '@luma.gl/shadertools'; import {opticalLighting} from './optical-lighting'; diff --git a/modules/experimental/src/materials/reflective-material.ts b/modules/experimental/src/materials/reflective-material.ts index 61b1c6b1d8..4e01c07959 100644 --- a/modules/experimental/src/materials/reflective-material.ts +++ b/modules/experimental/src/materials/reflective-material.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderModule, ShaderPlugin} from '@luma.gl/shadertools'; import {opticalLighting} from './optical-lighting'; diff --git a/modules/experimental/src/oit/a-buffer-renderer.ts b/modules/experimental/src/oit/a-buffer-renderer.ts index 606f6d7f09..04c6922c49 100644 --- a/modules/experimental/src/oit/a-buffer-renderer.ts +++ b/modules/experimental/src/oit/a-buffer-renderer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { Buffer, diff --git a/modules/experimental/src/oit/a-buffer-resolve-shader-pass-pipeline.ts b/modules/experimental/src/oit/a-buffer-resolve-shader-pass-pipeline.ts index 3a2915b7ac..fb533899c2 100644 --- a/modules/experimental/src/oit/a-buffer-resolve-shader-pass-pipeline.ts +++ b/modules/experimental/src/oit/a-buffer-resolve-shader-pass-pipeline.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Buffer} from '@luma.gl/core'; import type {ShaderPass, ShaderPassPipeline} from '@luma.gl/shadertools'; diff --git a/modules/experimental/src/oit/a-buffer.ts b/modules/experimental/src/oit/a-buffer.ts index 57670c03d0..f042db6266 100644 --- a/modules/experimental/src/oit/a-buffer.ts +++ b/modules/experimental/src/oit/a-buffer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Buffer, TextureView} from '@luma.gl/core'; import type {ShaderModule, ShaderPlugin} from '@luma.gl/shadertools'; diff --git a/modules/experimental/src/oit/wboit-renderer.ts b/modules/experimental/src/oit/wboit-renderer.ts index 44b408437e..a9d1edc3c8 100644 --- a/modules/experimental/src/oit/wboit-renderer.ts +++ b/modules/experimental/src/oit/wboit-renderer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { type CommandEncoder, diff --git a/modules/experimental/src/oit/wboit-resolve-shader-pass-pipeline.ts b/modules/experimental/src/oit/wboit-resolve-shader-pass-pipeline.ts index 39a458e50e..ea2a128115 100644 --- a/modules/experimental/src/oit/wboit-resolve-shader-pass-pipeline.ts +++ b/modules/experimental/src/oit/wboit-resolve-shader-pass-pipeline.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Texture} from '@luma.gl/core'; import type {ShaderPass, ShaderPassPipeline} from '@luma.gl/shadertools'; diff --git a/modules/experimental/src/oit/wboit.ts b/modules/experimental/src/oit/wboit.ts index 862bd49e8f..b4b8718f52 100644 --- a/modules/experimental/src/oit/wboit.ts +++ b/modules/experimental/src/oit/wboit.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderModule, ShaderPlugin} from '@luma.gl/shadertools'; diff --git a/modules/experimental/src/rendering/clustered-lighting.ts b/modules/experimental/src/rendering/clustered-lighting.ts index 4dd7910765..1ebe772c27 100644 --- a/modules/experimental/src/rendering/clustered-lighting.ts +++ b/modules/experimental/src/rendering/clustered-lighting.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {CommandEncoder, Device} from '@luma.gl/core'; import {Buffer} from '@luma.gl/core'; diff --git a/modules/experimental/src/rendering/deferred-ambient-lighting.ts b/modules/experimental/src/rendering/deferred-ambient-lighting.ts index e499ee78de..28bb4c2214 100644 --- a/modules/experimental/src/rendering/deferred-ambient-lighting.ts +++ b/modules/experimental/src/rendering/deferred-ambient-lighting.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Texture} from '@luma.gl/core'; import type {NumberArray3} from '@math.gl/core'; diff --git a/modules/experimental/src/rendering/deferred-lighting.ts b/modules/experimental/src/rendering/deferred-lighting.ts index 5e4eb4f24d..d266744e18 100644 --- a/modules/experimental/src/rendering/deferred-lighting.ts +++ b/modules/experimental/src/rendering/deferred-lighting.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Buffer, Texture} from '@luma.gl/core'; import type {NumberArray3, NumberArray16} from '@math.gl/core'; diff --git a/modules/experimental/src/rendering/g-buffer.ts b/modules/experimental/src/rendering/g-buffer.ts index 5285273f92..b585c745fc 100644 --- a/modules/experimental/src/rendering/g-buffer.ts +++ b/modules/experimental/src/rendering/g-buffer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type { Device, diff --git a/modules/experimental/src/rendering/mls-mpm-fluid-simulation-shaders.ts b/modules/experimental/src/rendering/mls-mpm-fluid-simulation-shaders.ts index a102e3bd09..61f06beab9 100644 --- a/modules/experimental/src/rendering/mls-mpm-fluid-simulation-shaders.ts +++ b/modules/experimental/src/rendering/mls-mpm-fluid-simulation-shaders.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ComputeShaderLayout} from '@luma.gl/core'; diff --git a/modules/experimental/src/rendering/mls-mpm-fluid-simulation.ts b/modules/experimental/src/rendering/mls-mpm-fluid-simulation.ts index a7316f52c0..c7252be6db 100644 --- a/modules/experimental/src/rendering/mls-mpm-fluid-simulation.ts +++ b/modules/experimental/src/rendering/mls-mpm-fluid-simulation.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type CommandEncoder, type Device} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/experimental/src/rendering/spectral-caustics-renderer-shaders.ts b/modules/experimental/src/rendering/spectral-caustics-renderer-shaders.ts index b65ba6a4dc..b745f0f1f1 100644 --- a/modules/experimental/src/rendering/spectral-caustics-renderer-shaders.ts +++ b/modules/experimental/src/rendering/spectral-caustics-renderer-shaders.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export const SPECTRAL_CAUSTICS_WAVELENGTH_COUNT = 6; export const SPECTRAL_CAUSTICS_WORKGROUP_SIZE = 64; diff --git a/modules/experimental/src/rendering/spectral-caustics-renderer.ts b/modules/experimental/src/rendering/spectral-caustics-renderer.ts index 2e7252e2b4..018b6d3dd8 100644 --- a/modules/experimental/src/rendering/spectral-caustics-renderer.ts +++ b/modules/experimental/src/rendering/spectral-caustics-renderer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { Buffer, diff --git a/modules/experimental/src/rendering/spectral-caustics.ts b/modules/experimental/src/rendering/spectral-caustics.ts index 7752707069..4585fd09ee 100644 --- a/modules/experimental/src/rendering/spectral-caustics.ts +++ b/modules/experimental/src/rendering/spectral-caustics.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Texture} from '@luma.gl/core'; import type {NumberArray3} from '@math.gl/core'; diff --git a/modules/experimental/src/rendering/volumetric-fire-simulation-shaders.ts b/modules/experimental/src/rendering/volumetric-fire-simulation-shaders.ts index 1e14f524b9..c63059d35f 100644 --- a/modules/experimental/src/rendering/volumetric-fire-simulation-shaders.ts +++ b/modules/experimental/src/rendering/volumetric-fire-simulation-shaders.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ComputeShaderLayout} from '@luma.gl/core'; diff --git a/modules/experimental/src/rendering/volumetric-fire-simulation.ts b/modules/experimental/src/rendering/volumetric-fire-simulation.ts index f818670a7c..c3cf44c46d 100644 --- a/modules/experimental/src/rendering/volumetric-fire-simulation.ts +++ b/modules/experimental/src/rendering/volumetric-fire-simulation.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {CommandEncoder, Device, Sampler, Texture} from '@luma.gl/core'; import {Buffer, Texture as TextureResource} from '@luma.gl/core'; diff --git a/modules/experimental/src/shadows/contact-shadow.ts b/modules/experimental/src/shadows/contact-shadow.ts index 3c57cc1b32..1b5f8dbd37 100644 --- a/modules/experimental/src/shadows/contact-shadow.ts +++ b/modules/experimental/src/shadows/contact-shadow.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Texture} from '@luma.gl/core'; import type {NumberArray3, NumberArray16} from '@math.gl/core'; diff --git a/modules/experimental/src/shadows/shadow-map-renderer.ts b/modules/experimental/src/shadows/shadow-map-renderer.ts index faa7ddfcfc..4b077a004c 100644 --- a/modules/experimental/src/shadows/shadow-map-renderer.ts +++ b/modules/experimental/src/shadows/shadow-map-renderer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type { Framebuffer, diff --git a/modules/experimental/src/shadows/shadow-quality.ts b/modules/experimental/src/shadows/shadow-quality.ts index dfdc704480..982ccb75d8 100644 --- a/modules/experimental/src/shadows/shadow-quality.ts +++ b/modules/experimental/src/shadows/shadow-quality.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export type ShadowQualitySettings = { cascadeCount: number; diff --git a/modules/experimental/src/shadows/shadow.ts b/modules/experimental/src/shadows/shadow.ts index a21e882bb8..3dbbe9df3b 100644 --- a/modules/experimental/src/shadows/shadow.ts +++ b/modules/experimental/src/shadows/shadow.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Sampler, Texture} from '@luma.gl/core'; import type {NumberArray3, NumberArray4, NumberArray16} from '@math.gl/core'; diff --git a/modules/experimental/src/simulation/index.ts b/modules/experimental/src/simulation/index.ts index 09e89665fb..c6d7eeb885 100644 --- a/modules/experimental/src/simulation/index.ts +++ b/modules/experimental/src/simulation/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export { getSpectralOceanSimulationSupport, diff --git a/modules/experimental/src/simulation/spectral-ocean-initial-spectrum.ts b/modules/experimental/src/simulation/spectral-ocean-initial-spectrum.ts index 8892782676..7b016db548 100644 --- a/modules/experimental/src/simulation/spectral-ocean-initial-spectrum.ts +++ b/modules/experimental/src/simulation/spectral-ocean-initial-spectrum.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors const TWO_PI = Math.PI * 2; diff --git a/modules/experimental/src/simulation/spectral-ocean-simulation-shaders.ts b/modules/experimental/src/simulation/spectral-ocean-simulation-shaders.ts index 6568a03fe6..d7d37bd605 100644 --- a/modules/experimental/src/simulation/spectral-ocean-simulation-shaders.ts +++ b/modules/experimental/src/simulation/spectral-ocean-simulation-shaders.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** Number of invocations along each dimension of a spectral-ocean workgroup. */ export const SPECTRAL_OCEAN_WORKGROUP_DIMENSION = 8; diff --git a/modules/experimental/src/simulation/spectral-ocean-simulation.ts b/modules/experimental/src/simulation/spectral-ocean-simulation.ts index 88fe4b29d2..238eba4daf 100644 --- a/modules/experimental/src/simulation/spectral-ocean-simulation.ts +++ b/modules/experimental/src/simulation/spectral-ocean-simulation.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type CommandEncoder, type Device} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/experimental/src/textures/html-texture.ts b/modules/experimental/src/textures/html-texture.ts index d008ed9bc1..cfd6986184 100644 --- a/modules/experimental/src/textures/html-texture.ts +++ b/modules/experimental/src/textures/html-texture.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device, Sampler, SamplerProps, TextureProps} from '@luma.gl/core'; import {Texture} from '@luma.gl/core'; diff --git a/modules/experimental/src/textures/packed-pixels.ts b/modules/experimental/src/textures/packed-pixels.ts index 6d645aead1..a8ded72561 100644 --- a/modules/experimental/src/textures/packed-pixels.ts +++ b/modules/experimental/src/textures/packed-pixels.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type TextureFormatPacked, type DecodeRGBA, EncodeRGBA} from './rgba-decoder'; diff --git a/modules/experimental/src/textures/rgba-decoder.ts b/modules/experimental/src/textures/rgba-decoder.ts index 95e6df4a67..eaeddcac30 100644 --- a/modules/experimental/src/textures/rgba-decoder.ts +++ b/modules/experimental/src/textures/rgba-decoder.ts @@ -1,3 +1,7 @@ +// luma.gl +// SPDX-License-Identifier: MIT +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors + /** @todo - import from texture-types */ // import { type TextureFormatPacked } from "../textures/texture-format-types"; export type TextureFormatPacked = diff --git a/modules/experimental/src/webxr/index.ts b/modules/experimental/src/webxr/index.ts index 5073e82187..978e9d0a0a 100644 --- a/modules/experimental/src/webxr/index.ts +++ b/modules/experimental/src/webxr/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export type {WebXRRawCameraBinding} from './webxr-types'; export {WebXRAnimationFrameProvider} from './webxr-animation-frame-provider'; diff --git a/modules/experimental/src/webxr/webxr-animation-frame-provider.ts b/modules/experimental/src/webxr/webxr-animation-frame-provider.ts index 346cc42118..43a6f62f6a 100644 --- a/modules/experimental/src/webxr/webxr-animation-frame-provider.ts +++ b/modules/experimental/src/webxr/webxr-animation-frame-provider.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {AnimationFrameCallback, AnimationFrameProvider} from '@luma.gl/engine'; diff --git a/modules/experimental/src/webxr/webxr-camera-texture.ts b/modules/experimental/src/webxr/webxr-camera-texture.ts index 2984fabc13..d109c9cfd1 100644 --- a/modules/experimental/src/webxr/webxr-camera-texture.ts +++ b/modules/experimental/src/webxr/webxr-camera-texture.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device, TextureProps} from '@luma.gl/core'; import {Texture} from '@luma.gl/core'; diff --git a/modules/experimental/src/webxr/webxr-manager.ts b/modules/experimental/src/webxr/webxr-manager.ts index e5c35ced35..8ef54d4fc2 100644 --- a/modules/experimental/src/webxr/webxr-manager.ts +++ b/modules/experimental/src/webxr/webxr-manager.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device, Framebuffer, Texture, TextureFormat, TextureViewProps} from '@luma.gl/core'; diff --git a/modules/experimental/src/webxr/webxr-types.ts b/modules/experimental/src/webxr/webxr-types.ts index d1c9ff7063..b74cb734a2 100644 --- a/modules/experimental/src/webxr/webxr-types.ts +++ b/modules/experimental/src/webxr/webxr-types.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** * Keep luma.gl's v10 work-in-progress WebXR declarations local to experimental. diff --git a/modules/experimental/test/controls/orbit-controls.spec.ts b/modules/experimental/test/controls/orbit-controls.spec.ts index 83aa1de446..d270e6ad17 100644 --- a/modules/experimental/test/controls/orbit-controls.spec.ts +++ b/modules/experimental/test/controls/orbit-controls.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {OrbitControls} from '../../src/controls/orbit-controls'; diff --git a/modules/experimental/test/engine/deferred-scene-renderer.node.spec.ts b/modules/experimental/test/engine/deferred-scene-renderer.node.spec.ts index 7642f38797..46beb41a10 100644 --- a/modules/experimental/test/engine/deferred-scene-renderer.node.spec.ts +++ b/modules/experimental/test/engine/deferred-scene-renderer.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Geometry} from '@luma.gl/engine'; import { diff --git a/modules/experimental/test/engine/deferred-scene-renderer.spec.ts b/modules/experimental/test/engine/deferred-scene-renderer.spec.ts index eee38dae26..eb3afdefa9 100644 --- a/modules/experimental/test/engine/deferred-scene-renderer.spec.ts +++ b/modules/experimental/test/engine/deferred-scene-renderer.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Geometry} from '@luma.gl/engine'; import { diff --git a/modules/experimental/test/engine/scene-deformation.node.spec.ts b/modules/experimental/test/engine/scene-deformation.node.spec.ts index ad9fc52496..174727e5f2 100644 --- a/modules/experimental/test/engine/scene-deformation.node.spec.ts +++ b/modules/experimental/test/engine/scene-deformation.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Geometry} from '@luma.gl/engine'; import { diff --git a/modules/experimental/test/engine/scene-deformation.spec.ts b/modules/experimental/test/engine/scene-deformation.spec.ts index 50305780a7..e0369775d4 100644 --- a/modules/experimental/test/engine/scene-deformation.spec.ts +++ b/modules/experimental/test/engine/scene-deformation.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Geometry} from '@luma.gl/engine'; import {SceneRenderer, type SceneSurface} from '@luma.gl/experimental'; diff --git a/modules/experimental/test/engine/scene-reference-pbr.spec.ts b/modules/experimental/test/engine/scene-reference-pbr.spec.ts index 60229a7269..50222d3cca 100644 --- a/modules/experimental/test/engine/scene-reference-pbr.spec.ts +++ b/modules/experimental/test/engine/scene-reference-pbr.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Device, type Framebuffer, Texture} from '@luma.gl/core'; import {Geometry} from '@luma.gl/engine'; diff --git a/modules/experimental/test/engine/scene-renderer.node.spec.ts b/modules/experimental/test/engine/scene-renderer.node.spec.ts index e67cd81ee1..5641b6e069 100644 --- a/modules/experimental/test/engine/scene-renderer.node.spec.ts +++ b/modules/experimental/test/engine/scene-renderer.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {readFileSync} from 'node:fs'; import type {RenderPass, Texture} from '@luma.gl/core'; diff --git a/modules/experimental/test/engine/scene-renderer.spec.ts b/modules/experimental/test/engine/scene-renderer.spec.ts index 4498396347..38eeb869d0 100644 --- a/modules/experimental/test/engine/scene-renderer.spec.ts +++ b/modules/experimental/test/engine/scene-renderer.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Device, Texture} from '@luma.gl/core'; import {Geometry} from '@luma.gl/engine'; diff --git a/modules/experimental/test/geospatial/geospatial-projection-distance.spec.ts b/modules/experimental/test/geospatial/geospatial-projection-distance.spec.ts index 1117c1a4b9..cfdc0c21e8 100644 --- a/modules/experimental/test/geospatial/geospatial-projection-distance.spec.ts +++ b/modules/experimental/test/geospatial/geospatial-projection-distance.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, type Device} from '@luma.gl/core'; diff --git a/modules/experimental/test/geospatial/geospatial-types.spec.ts b/modules/experimental/test/geospatial/geospatial-types.spec.ts index e71046dd71..a8aeda1d72 100644 --- a/modules/experimental/test/geospatial/geospatial-types.spec.ts +++ b/modules/experimental/test/geospatial/geospatial-types.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {expectTypeOf, test} from 'vitest'; import type {GraphDataView} from '../../src/gpu-primitives/gpu-command-graph'; diff --git a/modules/experimental/test/geospatial/geospatial-utils.node.spec.ts b/modules/experimental/test/geospatial/geospatial-utils.node.spec.ts index 73d1d278d6..a18e7b9b3c 100644 --- a/modules/experimental/test/geospatial/geospatial-utils.node.spec.ts +++ b/modules/experimental/test/geospatial/geospatial-utils.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Buffer} from '@luma.gl/core'; import {DynamicBuffer} from '@luma.gl/engine'; diff --git a/modules/experimental/test/geospatial/gpu-pairwise-point-in-polygon.spec.ts b/modules/experimental/test/geospatial/gpu-pairwise-point-in-polygon.spec.ts index ab1fe3caab..61eaa3660e 100644 --- a/modules/experimental/test/geospatial/gpu-pairwise-point-in-polygon.spec.ts +++ b/modules/experimental/test/geospatial/gpu-pairwise-point-in-polygon.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, type Device} from '@luma.gl/core'; diff --git a/modules/experimental/test/geospatial/gpu-pairwise-point-linestring-nearest.spec.ts b/modules/experimental/test/geospatial/gpu-pairwise-point-linestring-nearest.spec.ts index a972885709..b67913b69a 100644 --- a/modules/experimental/test/geospatial/gpu-pairwise-point-linestring-nearest.spec.ts +++ b/modules/experimental/test/geospatial/gpu-pairwise-point-linestring-nearest.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, type Device} from '@luma.gl/core'; diff --git a/modules/experimental/test/geospatial/gpu-point-spatial-query-capacity.spec.ts b/modules/experimental/test/geospatial/gpu-point-spatial-query-capacity.spec.ts index 41230ec7d0..5cc15cfd5b 100644 --- a/modules/experimental/test/geospatial/gpu-point-spatial-query-capacity.spec.ts +++ b/modules/experimental/test/geospatial/gpu-point-spatial-query-capacity.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type ComputePassProps, type Device} from '@luma.gl/core'; import {DynamicBuffer} from '@luma.gl/engine'; diff --git a/modules/experimental/test/geospatial/gpu-point-spatial-query.spec.ts b/modules/experimental/test/geospatial/gpu-point-spatial-query.spec.ts index 89e1958e40..58e095fc8e 100644 --- a/modules/experimental/test/geospatial/gpu-point-spatial-query.spec.ts +++ b/modules/experimental/test/geospatial/gpu-point-spatial-query.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Device} from '@luma.gl/core'; import { diff --git a/modules/experimental/test/gpu-primitives/gpu-batch-hash-join.spec.ts b/modules/experimental/test/gpu-primitives/gpu-batch-hash-join.spec.ts index 3fea637174..81a5737c02 100644 --- a/modules/experimental/test/gpu-primitives/gpu-batch-hash-join.spec.ts +++ b/modules/experimental/test/gpu-primitives/gpu-batch-hash-join.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, type Device} from '@luma.gl/core'; diff --git a/modules/experimental/test/gpu-primitives/gpu-bvh-query.spec.ts b/modules/experimental/test/gpu-primitives/gpu-bvh-query.spec.ts index 13dd1a596b..df8f748197 100644 --- a/modules/experimental/test/gpu-primitives/gpu-bvh-query.spec.ts +++ b/modules/experimental/test/gpu-primitives/gpu-bvh-query.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, type Device} from '@luma.gl/core'; diff --git a/modules/experimental/test/gpu-primitives/gpu-bvh.spec.ts b/modules/experimental/test/gpu-primitives/gpu-bvh.spec.ts index 2ca62ee269..c6d949e099 100644 --- a/modules/experimental/test/gpu-primitives/gpu-bvh.spec.ts +++ b/modules/experimental/test/gpu-primitives/gpu-bvh.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, type Device} from '@luma.gl/core'; diff --git a/modules/experimental/test/gpu-primitives/gpu-command-graph-inspector-types.node.spec.ts b/modules/experimental/test/gpu-primitives/gpu-command-graph-inspector-types.node.spec.ts index 809de607b5..aee7f29c09 100644 --- a/modules/experimental/test/gpu-primitives/gpu-command-graph-inspector-types.node.spec.ts +++ b/modules/experimental/test/gpu-primitives/gpu-command-graph-inspector-types.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type { GPUCommandGraphInspectorCounterSnapshot, diff --git a/modules/experimental/test/gpu-primitives/gpu-command-graph-inspector.node.spec.ts b/modules/experimental/test/gpu-primitives/gpu-command-graph-inspector.node.spec.ts index ce2ab849ca..5a945c2e3a 100644 --- a/modules/experimental/test/gpu-primitives/gpu-command-graph-inspector.node.spec.ts +++ b/modules/experimental/test/gpu-primitives/gpu-command-graph-inspector.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import type {CommandEncoder} from '@luma.gl/core'; diff --git a/modules/experimental/test/gpu-primitives/gpu-command-graph-textures.spec.ts b/modules/experimental/test/gpu-primitives/gpu-command-graph-textures.spec.ts index 0be711b41d..6059c6c32d 100644 --- a/modules/experimental/test/gpu-primitives/gpu-command-graph-textures.spec.ts +++ b/modules/experimental/test/gpu-primitives/gpu-command-graph-textures.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/experimental/test/gpu-primitives/gpu-command-graph.spec.ts b/modules/experimental/test/gpu-primitives/gpu-command-graph.spec.ts index 8a855f0b17..28b953f503 100644 --- a/modules/experimental/test/gpu-primitives/gpu-command-graph.spec.ts +++ b/modules/experimental/test/gpu-primitives/gpu-command-graph.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Device, Texture} from '@luma.gl/core'; import {DynamicBuffer, Model} from '@luma.gl/engine'; diff --git a/modules/experimental/test/gpu-primitives/gpu-data-analysis.spec.ts b/modules/experimental/test/gpu-primitives/gpu-data-analysis.spec.ts index 64c44cddbe..080bc6bc4b 100644 --- a/modules/experimental/test/gpu-primitives/gpu-data-analysis.spec.ts +++ b/modules/experimental/test/gpu-primitives/gpu-data-analysis.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, type Device} from '@luma.gl/core'; diff --git a/modules/experimental/test/gpu-primitives/gpu-fft2d.node.spec.ts b/modules/experimental/test/gpu-primitives/gpu-fft2d.node.spec.ts index f24d6162d0..4a310d91b6 100644 --- a/modules/experimental/test/gpu-primitives/gpu-fft2d.node.spec.ts +++ b/modules/experimental/test/gpu-primitives/gpu-fft2d.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import type {Device} from '@luma.gl/core'; diff --git a/modules/experimental/test/gpu-primitives/gpu-fft2d.spec.ts b/modules/experimental/test/gpu-primitives/gpu-fft2d.spec.ts index 08fd9e746f..a5d3884a8f 100644 --- a/modules/experimental/test/gpu-primitives/gpu-fft2d.spec.ts +++ b/modules/experimental/test/gpu-primitives/gpu-fft2d.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, type Device} from '@luma.gl/core'; diff --git a/modules/experimental/test/gpu-primitives/gpu-graph-traversal.node.spec.ts b/modules/experimental/test/gpu-primitives/gpu-graph-traversal.node.spec.ts index 8192742f0a..8e115e4390 100644 --- a/modules/experimental/test/gpu-primitives/gpu-graph-traversal.node.spec.ts +++ b/modules/experimental/test/gpu-primitives/gpu-graph-traversal.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/experimental/test/gpu-primitives/gpu-grid-index-query.spec.ts b/modules/experimental/test/gpu-primitives/gpu-grid-index-query.spec.ts index 43c244c0e1..72f5c8cac4 100644 --- a/modules/experimental/test/gpu-primitives/gpu-grid-index-query.spec.ts +++ b/modules/experimental/test/gpu-primitives/gpu-grid-index-query.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, type Device} from '@luma.gl/core'; diff --git a/modules/experimental/test/gpu-primitives/gpu-grid-index.spec.ts b/modules/experimental/test/gpu-primitives/gpu-grid-index.spec.ts index ba6e1fb7bb..b6d5003434 100644 --- a/modules/experimental/test/gpu-primitives/gpu-grid-index.spec.ts +++ b/modules/experimental/test/gpu-primitives/gpu-grid-index.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Device} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/experimental/test/gpu-primitives/gpu-hash-index.spec.ts b/modules/experimental/test/gpu-primitives/gpu-hash-index.spec.ts index 60aad9ba88..b8c3252515 100644 --- a/modules/experimental/test/gpu-primitives/gpu-hash-index.spec.ts +++ b/modules/experimental/test/gpu-primitives/gpu-hash-index.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, type Device} from '@luma.gl/core'; diff --git a/modules/experimental/test/gpu-primitives/gpu-hash-join.spec.ts b/modules/experimental/test/gpu-primitives/gpu-hash-join.spec.ts index 4d40b45997..7f8845363b 100644 --- a/modules/experimental/test/gpu-primitives/gpu-hash-join.spec.ts +++ b/modules/experimental/test/gpu-primitives/gpu-hash-join.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, type Device} from '@luma.gl/core'; diff --git a/modules/experimental/test/gpu-primitives/gpu-histogram-mask.node.spec.ts b/modules/experimental/test/gpu-primitives/gpu-histogram-mask.node.spec.ts index 61d5669a67..b9125d527a 100644 --- a/modules/experimental/test/gpu-primitives/gpu-histogram-mask.node.spec.ts +++ b/modules/experimental/test/gpu-primitives/gpu-histogram-mask.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/experimental/test/gpu-primitives/gpu-histogram-mask.spec.ts b/modules/experimental/test/gpu-primitives/gpu-histogram-mask.spec.ts index 6f737e14d7..a1fb07606e 100644 --- a/modules/experimental/test/gpu-primitives/gpu-histogram-mask.spec.ts +++ b/modules/experimental/test/gpu-primitives/gpu-histogram-mask.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, type Device} from '@luma.gl/core'; diff --git a/modules/experimental/test/gpu-primitives/gpu-point-spatial-filter.spec.ts b/modules/experimental/test/gpu-primitives/gpu-point-spatial-filter.spec.ts index 190b15d70d..e8ff969280 100644 --- a/modules/experimental/test/gpu-primitives/gpu-point-spatial-filter.spec.ts +++ b/modules/experimental/test/gpu-primitives/gpu-point-spatial-filter.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, type Device} from '@luma.gl/core'; diff --git a/modules/experimental/test/gpu-primitives/gpu-scene-adapters.spec.ts b/modules/experimental/test/gpu-primitives/gpu-scene-adapters.spec.ts index 4c19c28d1c..0ea4ab5fbe 100644 --- a/modules/experimental/test/gpu-primitives/gpu-scene-adapters.spec.ts +++ b/modules/experimental/test/gpu-primitives/gpu-scene-adapters.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, type Device} from '@luma.gl/core'; diff --git a/modules/experimental/test/gpu-primitives/gpu-scene-draw-generation.spec.ts b/modules/experimental/test/gpu-primitives/gpu-scene-draw-generation.spec.ts index c989f0a973..c0612337bc 100644 --- a/modules/experimental/test/gpu-primitives/gpu-scene-draw-generation.spec.ts +++ b/modules/experimental/test/gpu-primitives/gpu-scene-draw-generation.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, type Device} from '@luma.gl/core'; diff --git a/modules/experimental/test/gpu-primitives/gpu-scene-resource-groups.spec.ts b/modules/experimental/test/gpu-primitives/gpu-scene-resource-groups.spec.ts index c3c4e5d20d..51ea7fb641 100644 --- a/modules/experimental/test/gpu-primitives/gpu-scene-resource-groups.spec.ts +++ b/modules/experimental/test/gpu-primitives/gpu-scene-resource-groups.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, type Device} from '@luma.gl/core'; diff --git a/modules/experimental/test/gpu-primitives/gpu-scene.spec.ts b/modules/experimental/test/gpu-primitives/gpu-scene.spec.ts index 83274b4170..b22ad00e9b 100644 --- a/modules/experimental/test/gpu-primitives/gpu-scene.spec.ts +++ b/modules/experimental/test/gpu-primitives/gpu-scene.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer} from '@luma.gl/core'; diff --git a/modules/experimental/test/gpu-primitives/gpu-sort.spec.ts b/modules/experimental/test/gpu-primitives/gpu-sort.spec.ts index 4ba5f8ea9b..809b988289 100644 --- a/modules/experimental/test/gpu-primitives/gpu-sort.spec.ts +++ b/modules/experimental/test/gpu-primitives/gpu-sort.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, type Device} from '@luma.gl/core'; diff --git a/modules/experimental/test/gpu-primitives/gpu-spatial-query-benchmark.spec.ts b/modules/experimental/test/gpu-primitives/gpu-spatial-query-benchmark.spec.ts index 90ff471e74..cc1412636c 100644 --- a/modules/experimental/test/gpu-primitives/gpu-spatial-query-benchmark.spec.ts +++ b/modules/experimental/test/gpu-primitives/gpu-spatial-query-benchmark.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/experimental/test/gpu-primitives/gpu-trace-manipulation.spec.ts b/modules/experimental/test/gpu-primitives/gpu-trace-manipulation.spec.ts index 3c83a294f4..24a26397cb 100644 --- a/modules/experimental/test/gpu-primitives/gpu-trace-manipulation.spec.ts +++ b/modules/experimental/test/gpu-primitives/gpu-trace-manipulation.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, type Device} from '@luma.gl/core'; diff --git a/modules/experimental/test/gpu-primitives/gpu-virtual-geometry-selection.node.spec.ts b/modules/experimental/test/gpu-primitives/gpu-virtual-geometry-selection.node.spec.ts index 65cb6d47c8..ed117a8788 100644 --- a/modules/experimental/test/gpu-primitives/gpu-virtual-geometry-selection.node.spec.ts +++ b/modules/experimental/test/gpu-primitives/gpu-virtual-geometry-selection.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {makeGPUVirtualGeometrySelectionPlan} from '@luma.gl/experimental'; diff --git a/modules/experimental/test/gpu-primitives/gpu-virtual-geometry-selection.spec.ts b/modules/experimental/test/gpu-primitives/gpu-virtual-geometry-selection.spec.ts index c5797b5e03..ec50c5f362 100644 --- a/modules/experimental/test/gpu-primitives/gpu-virtual-geometry-selection.spec.ts +++ b/modules/experimental/test/gpu-primitives/gpu-virtual-geometry-selection.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, type Device} from '@luma.gl/core'; diff --git a/modules/experimental/test/gpu-primitives/gpu-visibility-workflow.spec.ts b/modules/experimental/test/gpu-primitives/gpu-visibility-workflow.spec.ts index 710f82369d..653aeabf09 100644 --- a/modules/experimental/test/gpu-primitives/gpu-visibility-workflow.spec.ts +++ b/modules/experimental/test/gpu-primitives/gpu-visibility-workflow.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, type Device} from '@luma.gl/core'; diff --git a/modules/experimental/test/gpu-primitives/graph-data-view-utils-types.node.spec.ts b/modules/experimental/test/gpu-primitives/graph-data-view-utils-types.node.spec.ts index 25832d8f74..36e5650007 100644 --- a/modules/experimental/test/gpu-primitives/graph-data-view-utils-types.node.spec.ts +++ b/modules/experimental/test/gpu-primitives/graph-data-view-utils-types.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {VertexFormat} from '@luma.gl/core'; import {createTransientView} from '@luma.gl/experimental'; diff --git a/modules/experimental/test/gpu-primitives/indirect-command-buffer.node.spec.ts b/modules/experimental/test/gpu-primitives/indirect-command-buffer.node.spec.ts index b27065ad62..0fb9f2b71a 100644 --- a/modules/experimental/test/gpu-primitives/indirect-command-buffer.node.spec.ts +++ b/modules/experimental/test/gpu-primitives/indirect-command-buffer.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type BufferProps, type Device} from '@luma.gl/core'; import {describe, expect, test, vi} from 'vitest'; diff --git a/modules/experimental/test/index.ts b/modules/experimental/test/index.ts index c0cac2d38a..80ffa0ff67 100644 --- a/modules/experimental/test/index.ts +++ b/modules/experimental/test/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import './textures/packed-pixels.spec'; import './textures/html-texture.spec'; diff --git a/modules/experimental/test/lugraph/lu-graph-degree.node.spec.ts b/modules/experimental/test/lugraph/lu-graph-degree.node.spec.ts index de32c6bff0..7daabb442e 100644 --- a/modules/experimental/test/lugraph/lu-graph-degree.node.spec.ts +++ b/modules/experimental/test/lugraph/lu-graph-degree.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer} from '@luma.gl/core'; import {DynamicBuffer} from '@luma.gl/engine'; diff --git a/modules/experimental/test/lugraph/lu-graph-degree.spec.ts b/modules/experimental/test/lugraph/lu-graph-degree.spec.ts index 05c6201e86..9fe17619d6 100644 --- a/modules/experimental/test/lugraph/lu-graph-degree.spec.ts +++ b/modules/experimental/test/lugraph/lu-graph-degree.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Device} from '@luma.gl/core'; import {GPUCommandGraph} from '@luma.gl/experimental'; diff --git a/modules/experimental/test/lugraph/lu-graph-topology.node.spec.ts b/modules/experimental/test/lugraph/lu-graph-topology.node.spec.ts index 7570660f30..7a4b764aeb 100644 --- a/modules/experimental/test/lugraph/lu-graph-topology.node.spec.ts +++ b/modules/experimental/test/lugraph/lu-graph-topology.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer} from '@luma.gl/core'; import * as experimentalModule from '@luma.gl/experimental'; diff --git a/modules/experimental/test/lugraph/lu-graph-topology.spec.ts b/modules/experimental/test/lugraph/lu-graph-topology.spec.ts index f7d7b4422b..89ecc9e8a7 100644 --- a/modules/experimental/test/lugraph/lu-graph-topology.spec.ts +++ b/modules/experimental/test/lugraph/lu-graph-topology.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Device} from '@luma.gl/core'; import {GPUCommandGraph} from '@luma.gl/experimental'; diff --git a/modules/experimental/test/lugraph/lu-graph.node.spec.ts b/modules/experimental/test/lugraph/lu-graph.node.spec.ts index fd83e7f400..7dede2f94a 100644 --- a/modules/experimental/test/lugraph/lu-graph.node.spec.ts +++ b/modules/experimental/test/lugraph/lu-graph.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {readFileSync} from 'node:fs'; diff --git a/modules/experimental/test/lugraph/lu-graph.spec.ts b/modules/experimental/test/lugraph/lu-graph.spec.ts index 84616fee60..bd674686e4 100644 --- a/modules/experimental/test/lugraph/lu-graph.spec.ts +++ b/modules/experimental/test/lugraph/lu-graph.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Device} from '@luma.gl/core'; import {LuGraph} from '@luma.gl/experimental/lugraph'; diff --git a/modules/experimental/test/luproj/luproj.spec.ts b/modules/experimental/test/luproj/luproj.spec.ts index 556b2c1b6b..eb62169e1b 100644 --- a/modules/experimental/test/luproj/luproj.spec.ts +++ b/modules/experimental/test/luproj/luproj.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Device} from '@luma.gl/core'; import test from 'test/utils/vitest-tape'; diff --git a/modules/experimental/test/luproj/projection-benchmark.node.spec.ts b/modules/experimental/test/luproj/projection-benchmark.node.spec.ts index 281959feed..2e3bc58d19 100644 --- a/modules/experimental/test/luproj/projection-benchmark.node.spec.ts +++ b/modules/experimental/test/luproj/projection-benchmark.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {readFileSync} from 'node:fs'; diff --git a/modules/experimental/test/luproj/projection-benchmark.spec.ts b/modules/experimental/test/luproj/projection-benchmark.spec.ts index 7293df6e38..e88a022d47 100644 --- a/modules/experimental/test/luproj/projection-benchmark.spec.ts +++ b/modules/experimental/test/luproj/projection-benchmark.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {createWebMercatorProjection} from '@luma.gl/experimental/luproj'; diff --git a/modules/experimental/test/luproj/projection-plan.node.spec.ts b/modules/experimental/test/luproj/projection-plan.node.spec.ts index 1f10ae04e6..47bead468a 100644 --- a/modules/experimental/test/luproj/projection-plan.node.spec.ts +++ b/modules/experimental/test/luproj/projection-plan.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {readFileSync} from 'node:fs'; diff --git a/modules/experimental/test/lutrace/gpu-trace-interaction.spec.ts b/modules/experimental/test/lutrace/gpu-trace-interaction.spec.ts index 26668b0625..d1ee6f44b1 100644 --- a/modules/experimental/test/lutrace/gpu-trace-interaction.spec.ts +++ b/modules/experimental/test/lutrace/gpu-trace-interaction.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, type Device} from '@luma.gl/core'; diff --git a/modules/experimental/test/lutrace/gpu-trace-scene.spec.ts b/modules/experimental/test/lutrace/gpu-trace-scene.spec.ts index 0a590d72ac..1c459d392a 100644 --- a/modules/experimental/test/lutrace/gpu-trace-scene.spec.ts +++ b/modules/experimental/test/lutrace/gpu-trace-scene.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, type Device} from '@luma.gl/core'; diff --git a/modules/experimental/test/lutrace/lutrace.node.spec.ts b/modules/experimental/test/lutrace/lutrace.node.spec.ts index eebc342244..9d17dfe54b 100644 --- a/modules/experimental/test/lutrace/lutrace.node.spec.ts +++ b/modules/experimental/test/lutrace/lutrace.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {existsSync, readFileSync} from 'node:fs'; diff --git a/modules/experimental/test/luxfilter/index.ts b/modules/experimental/test/luxfilter/index.ts index 21bc92cf67..4bc35ab680 100644 --- a/modules/experimental/test/luxfilter/index.ts +++ b/modules/experimental/test/luxfilter/index.ts @@ -1,5 +1,5 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import './lux-filter.spec'; diff --git a/modules/experimental/test/luxfilter/lux-filter.node.spec.ts b/modules/experimental/test/luxfilter/lux-filter.node.spec.ts index f5ebe19d9e..daae45f6d7 100644 --- a/modules/experimental/test/luxfilter/lux-filter.node.spec.ts +++ b/modules/experimental/test/luxfilter/lux-filter.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {readFileSync} from 'node:fs'; diff --git a/modules/experimental/test/luxfilter/lux-filter.spec.ts b/modules/experimental/test/luxfilter/lux-filter.spec.ts index a5c01625da..a88f86fdf4 100644 --- a/modules/experimental/test/luxfilter/lux-filter.spec.ts +++ b/modules/experimental/test/luxfilter/lux-filter.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, type Device} from '@luma.gl/core'; diff --git a/modules/experimental/test/materials/optical-materials.node.spec.ts b/modules/experimental/test/materials/optical-materials.node.spec.ts index 65dcddccad..610ba443bd 100644 --- a/modules/experimental/test/materials/optical-materials.node.spec.ts +++ b/modules/experimental/test/materials/optical-materials.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {makeShaderBlockLayout} from '@luma.gl/core'; diff --git a/modules/experimental/test/oit/a-buffer-renderer.node.spec.ts b/modules/experimental/test/oit/a-buffer-renderer.node.spec.ts index 71cf20290d..960576eeda 100644 --- a/modules/experimental/test/oit/a-buffer-renderer.node.spec.ts +++ b/modules/experimental/test/oit/a-buffer-renderer.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, type Device, type Framebuffer, Texture} from '@luma.gl/core'; diff --git a/modules/experimental/test/oit/a-buffer-renderer.spec.ts b/modules/experimental/test/oit/a-buffer-renderer.spec.ts index 8d06a5e047..b019df5518 100644 --- a/modules/experimental/test/oit/a-buffer-renderer.spec.ts +++ b/modules/experimental/test/oit/a-buffer-renderer.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, Texture} from '@luma.gl/core'; diff --git a/modules/experimental/test/oit/wboit-renderer.spec.ts b/modules/experimental/test/oit/wboit-renderer.spec.ts index 2167b9f149..1c6be76fe0 100644 --- a/modules/experimental/test/oit/wboit-renderer.spec.ts +++ b/modules/experimental/test/oit/wboit-renderer.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/experimental/test/rendering/clustered-lighting.spec.ts b/modules/experimental/test/rendering/clustered-lighting.spec.ts index 0c27223347..a7ce1fa1bf 100644 --- a/modules/experimental/test/rendering/clustered-lighting.spec.ts +++ b/modules/experimental/test/rendering/clustered-lighting.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, Texture} from '@luma.gl/core'; diff --git a/modules/experimental/test/rendering/deferred-lighting.spec.ts b/modules/experimental/test/rendering/deferred-lighting.spec.ts index fe579c11d1..99146e0a78 100644 --- a/modules/experimental/test/rendering/deferred-lighting.spec.ts +++ b/modules/experimental/test/rendering/deferred-lighting.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, Texture} from '@luma.gl/core'; diff --git a/modules/experimental/test/rendering/g-buffer.spec.ts b/modules/experimental/test/rendering/g-buffer.spec.ts index cd8a5d515e..92d5c8cde7 100644 --- a/modules/experimental/test/rendering/g-buffer.spec.ts +++ b/modules/experimental/test/rendering/g-buffer.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {GBuffer} from '@luma.gl/experimental'; diff --git a/modules/experimental/test/rendering/mls-mpm-fluid-simulation.node.spec.ts b/modules/experimental/test/rendering/mls-mpm-fluid-simulation.node.spec.ts index 8538f81739..fc5fd88f42 100644 --- a/modules/experimental/test/rendering/mls-mpm-fluid-simulation.node.spec.ts +++ b/modules/experimental/test/rendering/mls-mpm-fluid-simulation.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import test from 'test/utils/vitest-tape'; diff --git a/modules/experimental/test/rendering/mls-mpm-fluid-simulation.spec.ts b/modules/experimental/test/rendering/mls-mpm-fluid-simulation.spec.ts index eb726944a7..370f4f8170 100644 --- a/modules/experimental/test/rendering/mls-mpm-fluid-simulation.spec.ts +++ b/modules/experimental/test/rendering/mls-mpm-fluid-simulation.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/experimental/test/rendering/spectral-caustics-renderer.node.spec.ts b/modules/experimental/test/rendering/spectral-caustics-renderer.node.spec.ts index d9951eb0b7..5a08ff9367 100644 --- a/modules/experimental/test/rendering/spectral-caustics-renderer.node.spec.ts +++ b/modules/experimental/test/rendering/spectral-caustics-renderer.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getWebGPUTestDevice} from '@luma.gl/test-utils'; diff --git a/modules/experimental/test/rendering/spectral-caustics-renderer.spec.ts b/modules/experimental/test/rendering/spectral-caustics-renderer.spec.ts index 2d40385090..7b7646c8c4 100644 --- a/modules/experimental/test/rendering/spectral-caustics-renderer.spec.ts +++ b/modules/experimental/test/rendering/spectral-caustics-renderer.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, type Texture} from '@luma.gl/core'; diff --git a/modules/experimental/test/rendering/spectral-caustics.node.spec.ts b/modules/experimental/test/rendering/spectral-caustics.node.spec.ts index 4daaef26f4..9a2ec7d4b4 100644 --- a/modules/experimental/test/rendering/spectral-caustics.node.spec.ts +++ b/modules/experimental/test/rendering/spectral-caustics.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {WGSLShaderAssembler} from '@luma.gl/shadertools'; diff --git a/modules/experimental/test/rendering/volumetric-fire-simulation.spec.ts b/modules/experimental/test/rendering/volumetric-fire-simulation.spec.ts index abd400c574..3186953d82 100644 --- a/modules/experimental/test/rendering/volumetric-fire-simulation.spec.ts +++ b/modules/experimental/test/rendering/volumetric-fire-simulation.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, Texture} from '@luma.gl/core'; diff --git a/modules/experimental/test/shadows/shadow-map-renderer.spec.ts b/modules/experimental/test/shadows/shadow-map-renderer.spec.ts index ae0e379d3d..fa8c7027d5 100644 --- a/modules/experimental/test/shadows/shadow-map-renderer.spec.ts +++ b/modules/experimental/test/shadows/shadow-map-renderer.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getWebGPUTestDevice} from '@luma.gl/test-utils'; diff --git a/modules/experimental/test/shadows/shadow-wgsl.spec.ts b/modules/experimental/test/shadows/shadow-wgsl.spec.ts index e861490199..4e58605863 100644 --- a/modules/experimental/test/shadows/shadow-wgsl.spec.ts +++ b/modules/experimental/test/shadows/shadow-wgsl.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, Texture} from '@luma.gl/core'; diff --git a/modules/experimental/test/simulation/spectral-ocean-simulation.node.spec.ts b/modules/experimental/test/simulation/spectral-ocean-simulation.node.spec.ts index 531b4fe120..1cbf487336 100644 --- a/modules/experimental/test/simulation/spectral-ocean-simulation.node.spec.ts +++ b/modules/experimental/test/simulation/spectral-ocean-simulation.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import type {Device} from '@luma.gl/core'; diff --git a/modules/experimental/test/simulation/spectral-ocean-simulation.spec.ts b/modules/experimental/test/simulation/spectral-ocean-simulation.spec.ts index 347f5260c3..bda73cbc82 100644 --- a/modules/experimental/test/simulation/spectral-ocean-simulation.spec.ts +++ b/modules/experimental/test/simulation/spectral-ocean-simulation.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, type Device} from '@luma.gl/core'; diff --git a/modules/experimental/test/test-utils.ts b/modules/experimental/test/test-utils.ts index c49bf0cc19..a77021a9aa 100644 --- a/modules/experimental/test/test-utils.ts +++ b/modules/experimental/test/test-utils.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export function arraysEqual(arr1: ArrayLike, arr2: ArrayLike): boolean { if (arr1.length !== arr2.length) { diff --git a/modules/experimental/test/textures/html-texture.spec.ts b/modules/experimental/test/textures/html-texture.spec.ts index acda044861..e6095f9355 100644 --- a/modules/experimental/test/textures/html-texture.spec.ts +++ b/modules/experimental/test/textures/html-texture.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Texture, type Device} from '@luma.gl/core'; diff --git a/modules/experimental/test/textures/packed-pixels.spec.ts b/modules/experimental/test/textures/packed-pixels.spec.ts index 06a67c39fe..3a827f493f 100644 --- a/modules/experimental/test/textures/packed-pixels.spec.ts +++ b/modules/experimental/test/textures/packed-pixels.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {RGBADecoder, TEXTURE_FORMAT_PIXEL_DECODERS} from '@luma.gl/experimental'; diff --git a/modules/experimental/test/webxr/index.ts b/modules/experimental/test/webxr/index.ts index 8ef6ebb869..a9ab6f03bc 100644 --- a/modules/experimental/test/webxr/index.ts +++ b/modules/experimental/test/webxr/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import './webxr-animation-frame-provider.spec'; import './webxr-camera-texture.spec'; diff --git a/modules/experimental/test/webxr/webxr-animation-frame-provider.spec.ts b/modules/experimental/test/webxr/webxr-animation-frame-provider.spec.ts index 6f99944952..60cc28344d 100644 --- a/modules/experimental/test/webxr/webxr-animation-frame-provider.spec.ts +++ b/modules/experimental/test/webxr/webxr-animation-frame-provider.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {WebXRAnimationFrameProvider} from '../../src'; diff --git a/modules/experimental/test/webxr/webxr-camera-texture.spec.ts b/modules/experimental/test/webxr/webxr-camera-texture.spec.ts index bbf9a81428..290f9bb777 100644 --- a/modules/experimental/test/webxr/webxr-camera-texture.spec.ts +++ b/modules/experimental/test/webxr/webxr-camera-texture.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getWebGLTestDevice} from '@luma.gl/test-utils'; diff --git a/modules/experimental/test/webxr/webxr-manager.node.spec.ts b/modules/experimental/test/webxr/webxr-manager.node.spec.ts index d64cf07fd2..efdac9c078 100644 --- a/modules/experimental/test/webxr/webxr-manager.node.spec.ts +++ b/modules/experimental/test/webxr/webxr-manager.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type { Device, diff --git a/modules/experimental/test/webxr/webxr-manager.spec.ts b/modules/experimental/test/webxr/webxr-manager.spec.ts index cd178d8088..5e39035a92 100644 --- a/modules/experimental/test/webxr/webxr-manager.spec.ts +++ b/modules/experimental/test/webxr/webxr-manager.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getWebGLTestDevice} from '@luma.gl/test-utils'; diff --git a/modules/geoarrow/src/arrow-polygon-tessellation-worker.js b/modules/geoarrow/src/arrow-polygon-tessellation-worker.js index 563dddec39..3a2822a5d4 100644 --- a/modules/geoarrow/src/arrow-polygon-tessellation-worker.js +++ b/modules/geoarrow/src/arrow-polygon-tessellation-worker.js @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {hydrateArrowTable} from './arrow-table-transport.ts'; import {tessellateArrowPolygons} from './arrow-polygon-tessellation.ts'; diff --git a/modules/geoarrow/src/arrow-polygon-tessellation.ts b/modules/geoarrow/src/arrow-polygon-tessellation.ts index 61a5268b38..50e4c8d720 100644 --- a/modules/geoarrow/src/arrow-polygon-tessellation.ts +++ b/modules/geoarrow/src/arrow-polygon-tessellation.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { Data, diff --git a/modules/geoarrow/src/arrow-table-transport.ts b/modules/geoarrow/src/arrow-table-transport.ts index 9206c21bbc..cce77a13f7 100644 --- a/modules/geoarrow/src/arrow-table-transport.ts +++ b/modules/geoarrow/src/arrow-table-transport.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import * as arrow from 'apache-arrow'; import type {Buffers} from 'apache-arrow/data'; diff --git a/modules/geoarrow/src/geoarrow-dense-union.ts b/modules/geoarrow/src/geoarrow-dense-union.ts index 1fcdf2962a..f86aca21b1 100644 --- a/modules/geoarrow/src/geoarrow-dense-union.ts +++ b/modules/geoarrow/src/geoarrow-dense-union.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { Data, diff --git a/modules/geoarrow/src/geoarrow-interleaving-worker.js b/modules/geoarrow/src/geoarrow-interleaving-worker.js index f1096a0384..ed9799bdef 100644 --- a/modules/geoarrow/src/geoarrow-interleaving-worker.js +++ b/modules/geoarrow/src/geoarrow-interleaving-worker.js @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {dehydrateArrowTable, hydrateArrowTable} from './arrow-table-transport.ts'; import {convertGeoArrowTableToInterleaved} from './geoarrow-interleaving.ts'; diff --git a/modules/geoarrow/src/geoarrow-interleaving.ts b/modules/geoarrow/src/geoarrow-interleaving.ts index 19aa907915..42d0cb1235 100644 --- a/modules/geoarrow/src/geoarrow-interleaving.ts +++ b/modules/geoarrow/src/geoarrow-interleaving.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import * as arrow from 'apache-arrow'; import type {Buffers} from 'apache-arrow/data'; diff --git a/modules/geoarrow/src/index.ts b/modules/geoarrow/src/index.ts index c4051ddff9..d2ce90fa97 100644 --- a/modules/geoarrow/src/index.ts +++ b/modules/geoarrow/src/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export { convertGeoArrowTableToDenseUnion, diff --git a/modules/geoarrow/src/optimized-earcut.ts b/modules/geoarrow/src/optimized-earcut.ts index d676dbffb3..686152b363 100644 --- a/modules/geoarrow/src/optimized-earcut.ts +++ b/modules/geoarrow/src/optimized-earcut.ts @@ -1,6 +1,7 @@ // luma.gl -// SPDX-License-Identifier: MIT and ISC -// Copyright (c) vis.gl contributors +// SPDX-License-Identifier: MIT AND ISC +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) 2016, Mapbox /* Adapted from loaders.gl's WKB triangulator and mapbox/earcut. diff --git a/modules/geoarrow/test/geoarrow/arrow-polygon-tessellation.node.spec.ts b/modules/geoarrow/test/geoarrow/arrow-polygon-tessellation.node.spec.ts index c0c5322e39..a92e023c1e 100644 --- a/modules/geoarrow/test/geoarrow/arrow-polygon-tessellation.node.spec.ts +++ b/modules/geoarrow/test/geoarrow/arrow-polygon-tessellation.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {readFileSync} from 'node:fs'; import test from 'test/utils/vitest-tape'; diff --git a/modules/geoarrow/test/geoarrow/geoarrow-dense-union.node.spec.ts b/modules/geoarrow/test/geoarrow/geoarrow-dense-union.node.spec.ts index 6eb93ee607..d7f32e10d9 100644 --- a/modules/geoarrow/test/geoarrow/geoarrow-dense-union.node.spec.ts +++ b/modules/geoarrow/test/geoarrow/geoarrow-dense-union.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {readFileSync} from 'node:fs'; import test from 'test/utils/vitest-tape'; diff --git a/modules/geoarrow/test/geoarrow/geoarrow-interleaving.node.spec.ts b/modules/geoarrow/test/geoarrow/geoarrow-interleaving.node.spec.ts index 773f11ed15..7020f52835 100644 --- a/modules/geoarrow/test/geoarrow/geoarrow-interleaving.node.spec.ts +++ b/modules/geoarrow/test/geoarrow/geoarrow-interleaving.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {readFileSync} from 'node:fs'; import test from 'test/utils/vitest-tape'; diff --git a/modules/geoarrow/test/geoarrow/geoarrow-interleaving.spec.ts b/modules/geoarrow/test/geoarrow/geoarrow-interleaving.spec.ts index 44cdbe35d1..055f0af34b 100644 --- a/modules/geoarrow/test/geoarrow/geoarrow-interleaving.spec.ts +++ b/modules/geoarrow/test/geoarrow/geoarrow-interleaving.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/gltf/src/gltf/animations/animations.ts b/modules/gltf/src/gltf/animations/animations.ts index 54d5ed6cd6..045520c43c 100644 --- a/modules/gltf/src/gltf/animations/animations.ts +++ b/modules/gltf/src/gltf/animations/animations.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {AnimationSampler} from '@luma.gl/engine'; diff --git a/modules/gltf/src/gltf/create-gltf-model.ts b/modules/gltf/src/gltf/create-gltf-model.ts index fc384016ce..cf69c1273a 100644 --- a/modules/gltf/src/gltf/create-gltf-model.ts +++ b/modules/gltf/src/gltf/create-gltf-model.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { Buffer, diff --git a/modules/gltf/src/gltf/create-scenegraph-from-gltf.ts b/modules/gltf/src/gltf/create-scenegraph-from-gltf.ts index 46fb8da2a1..e9b0d2712a 100644 --- a/modules/gltf/src/gltf/create-scenegraph-from-gltf.ts +++ b/modules/gltf/src/gltf/create-scenegraph-from-gltf.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Device} from '@luma.gl/core'; import {GroupNode, Material} from '@luma.gl/engine'; diff --git a/modules/gltf/src/gltf/gltf-animator.ts b/modules/gltf/src/gltf/gltf-animator.ts index 39e0e2a0df..7de6c4b973 100644 --- a/modules/gltf/src/gltf/gltf-animator.ts +++ b/modules/gltf/src/gltf/gltf-animator.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {log} from '@luma.gl/core'; import { diff --git a/modules/gltf/src/gltf/gltf-extension-support.ts b/modules/gltf/src/gltf/gltf-extension-support.ts index d6cb42ca0a..b4b23e7000 100644 --- a/modules/gltf/src/gltf/gltf-extension-support.ts +++ b/modules/gltf/src/gltf/gltf-extension-support.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {GLTFPostprocessed} from '@loaders.gl/gltf'; diff --git a/modules/gltf/src/gltf/gltf-skin.ts b/modules/gltf/src/gltf/gltf-skin.ts index 2adab4ed74..03a703b47d 100644 --- a/modules/gltf/src/gltf/gltf-skin.ts +++ b/modules/gltf/src/gltf/gltf-skin.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {GLTFPostprocessed} from '@loaders.gl/gltf'; import {GroupNode, ModelNode, updateSkinJointMatrices} from '@luma.gl/engine'; diff --git a/modules/gltf/src/gltf/morph-targets.ts b/modules/gltf/src/gltf/morph-targets.ts index c7e782b3e1..e1c85d51ac 100644 --- a/modules/gltf/src/gltf/morph-targets.ts +++ b/modules/gltf/src/gltf/morph-targets.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { type Geometry, diff --git a/modules/gltf/src/index.ts b/modules/gltf/src/index.ts index 14a99bc63f..3330123fc8 100644 --- a/modules/gltf/src/index.ts +++ b/modules/gltf/src/index.ts @@ -1,4 +1,6 @@ -// luma.gl, MIT license +// luma.gl +// SPDX-License-Identifier: MIT +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export type { GLTFAnimation, diff --git a/modules/gltf/src/parsers/parse-gltf-animations.ts b/modules/gltf/src/parsers/parse-gltf-animations.ts index 4ea4102faf..fae3dbc193 100644 --- a/modules/gltf/src/parsers/parse-gltf-animations.ts +++ b/modules/gltf/src/parsers/parse-gltf-animations.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type GLTFAccessorPostprocessed, type GLTFPostprocessed} from '@loaders.gl/gltf'; import {log} from '@luma.gl/core'; diff --git a/modules/gltf/src/parsers/parse-gltf-lights.ts b/modules/gltf/src/parsers/parse-gltf-lights.ts index af227757aa..f0cb66746a 100644 --- a/modules/gltf/src/parsers/parse-gltf-lights.ts +++ b/modules/gltf/src/parsers/parse-gltf-lights.ts @@ -1,3 +1,7 @@ +// luma.gl +// SPDX-License-Identifier: MIT +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors + import {Matrix4} from '@math.gl/core'; import type {GLTFNodePostprocessed, GLTFPostprocessed} from '@loaders.gl/gltf'; import { diff --git a/modules/gltf/src/parsers/parse-gltf.ts b/modules/gltf/src/parsers/parse-gltf.ts index bf27c11956..2f11525284 100644 --- a/modules/gltf/src/parsers/parse-gltf.ts +++ b/modules/gltf/src/parsers/parse-gltf.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { type GLTFMaterialPostprocessed, diff --git a/modules/gltf/src/parsers/parse-pbr-material.ts b/modules/gltf/src/parsers/parse-pbr-material.ts index a55e9eb854..1799ee7838 100644 --- a/modules/gltf/src/parsers/parse-pbr-material.ts +++ b/modules/gltf/src/parsers/parse-pbr-material.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {GLTFPostprocessed} from '@loaders.gl/gltf'; import type {Device, ExternalImage, SamplerProps, TextureFormat, TypedArray} from '@luma.gl/core'; diff --git a/modules/gltf/src/pbr/pbr-environment.ts b/modules/gltf/src/pbr/pbr-environment.ts index b66eefdebb..cc3b430178 100644 --- a/modules/gltf/src/pbr/pbr-environment.ts +++ b/modules/gltf/src/pbr/pbr-environment.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Device, SamplerProps} from '@luma.gl/core'; import { diff --git a/modules/gltf/src/pbr/pbr-material.ts b/modules/gltf/src/pbr/pbr-material.ts index 07f7f5c455..28d750cf46 100644 --- a/modules/gltf/src/pbr/pbr-material.ts +++ b/modules/gltf/src/pbr/pbr-material.ts @@ -1,3 +1,7 @@ +// luma.gl +// SPDX-License-Identifier: MIT +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors + import type {Texture, Parameters} from '@luma.gl/core'; import { IBLBindings, diff --git a/modules/gltf/src/pbr/texture-transform.ts b/modules/gltf/src/pbr/texture-transform.ts index d3fd28e16b..66e0d765e5 100644 --- a/modules/gltf/src/pbr/texture-transform.ts +++ b/modules/gltf/src/pbr/texture-transform.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Matrix3} from '@math.gl/core'; diff --git a/modules/gltf/src/webgl-to-webgpu/convert-webgl-attribute.ts b/modules/gltf/src/webgl-to-webgpu/convert-webgl-attribute.ts index c23fb5b018..8987243537 100644 --- a/modules/gltf/src/webgl-to-webgpu/convert-webgl-attribute.ts +++ b/modules/gltf/src/webgl-to-webgpu/convert-webgl-attribute.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // TODO: convert in loaders.gl? import type {TypedArray} from '@math.gl/types'; diff --git a/modules/gltf/src/webgl-to-webgpu/convert-webgl-sampler.ts b/modules/gltf/src/webgl-to-webgpu/convert-webgl-sampler.ts index e646775ad8..c616faad76 100644 --- a/modules/gltf/src/webgl-to-webgpu/convert-webgl-sampler.ts +++ b/modules/gltf/src/webgl-to-webgpu/convert-webgl-sampler.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // TODO: convert in loaders.gl? diff --git a/modules/gltf/src/webgl-to-webgpu/convert-webgl-topology.ts b/modules/gltf/src/webgl-to-webgpu/convert-webgl-topology.ts index 512b8c81df..a1a03393f7 100644 --- a/modules/gltf/src/webgl-to-webgpu/convert-webgl-topology.ts +++ b/modules/gltf/src/webgl-to-webgpu/convert-webgl-topology.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {PrimitiveTopology} from '@luma.gl/core'; import {GLEnum} from './gltf-webgl-constants'; diff --git a/modules/gltf/src/webgl-to-webgpu/gltf-webgl-constants.ts b/modules/gltf/src/webgl-to-webgpu/gltf-webgl-constants.ts index 1be6a82a45..133d286890 100644 --- a/modules/gltf/src/webgl-to-webgpu/gltf-webgl-constants.ts +++ b/modules/gltf/src/webgl-to-webgpu/gltf-webgl-constants.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // NOTE: `@luma.gl/gltf` intentionally keeps this as a local enum subset so it // does not need to depend on `@luma.gl/webgl` for a handful of stable WebGL values. diff --git a/modules/gltf/test/gltf/gltf-animator.node.spec.ts b/modules/gltf/test/gltf/gltf-animator.node.spec.ts index 3d382680dd..4604f748cd 100644 --- a/modules/gltf/test/gltf/gltf-animator.node.spec.ts +++ b/modules/gltf/test/gltf/gltf-animator.node.spec.ts @@ -1,5 +1,5 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import './gltf-animator.spec'; diff --git a/modules/gltf/test/gltf/gltf-animator.spec.ts b/modules/gltf/test/gltf/gltf-animator.spec.ts index 3bc2604859..bd2027bb6f 100644 --- a/modules/gltf/test/gltf/gltf-animator.spec.ts +++ b/modules/gltf/test/gltf/gltf-animator.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Geometry, GroupNode, ModelNode} from '@luma.gl/engine'; import {GLTFAnimator, parseGLTFAnimations} from '@luma.gl/gltf'; diff --git a/modules/gltf/test/gltf/gltf-extension-support.spec.ts b/modules/gltf/test/gltf/gltf-extension-support.spec.ts index 5529b1aec8..0a1c4dba3e 100644 --- a/modules/gltf/test/gltf/gltf-extension-support.spec.ts +++ b/modules/gltf/test/gltf/gltf-extension-support.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import type {GLTFPostprocessed} from '@loaders.gl/gltf'; diff --git a/modules/gltf/test/gltf/gltf-production-animation.node.spec.ts b/modules/gltf/test/gltf/gltf-production-animation.node.spec.ts index 5c015b1ea0..684c3d6e38 100644 --- a/modules/gltf/test/gltf/gltf-production-animation.node.spec.ts +++ b/modules/gltf/test/gltf/gltf-production-animation.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {readFile} from 'node:fs/promises'; import {parse} from '@loaders.gl/core'; diff --git a/modules/gltf/test/gltf/gltf.spec.ts b/modules/gltf/test/gltf/gltf.spec.ts index 454fb50542..cee7053eaa 100644 --- a/modules/gltf/test/gltf/gltf.spec.ts +++ b/modules/gltf/test/gltf/gltf.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getWebGLTestDevice} from '@luma.gl/test-utils'; diff --git a/modules/gltf/test/index.ts b/modules/gltf/test/index.ts index a59cccf461..0bcd3fb778 100644 --- a/modules/gltf/test/index.ts +++ b/modules/gltf/test/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import './webgl-to-webgpu/convert-webgl-sampler.spec'; diff --git a/modules/gltf/test/parsers/parse-gltf-animations.node.spec.ts b/modules/gltf/test/parsers/parse-gltf-animations.node.spec.ts index 94fac4ae1c..fbac1e7ae7 100644 --- a/modules/gltf/test/parsers/parse-gltf-animations.node.spec.ts +++ b/modules/gltf/test/parsers/parse-gltf-animations.node.spec.ts @@ -1,5 +1,5 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import './parse-gltf-animations.spec'; diff --git a/modules/gltf/test/parsers/parse-gltf-animations.spec.ts b/modules/gltf/test/parsers/parse-gltf-animations.spec.ts index fc898797e6..dd3e7231a0 100644 --- a/modules/gltf/test/parsers/parse-gltf-animations.spec.ts +++ b/modules/gltf/test/parsers/parse-gltf-animations.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {GLTFPostprocessed} from '@loaders.gl/gltf'; import {log} from '@luma.gl/core'; diff --git a/modules/gltf/test/parsers/parse-gltf.spec.ts b/modules/gltf/test/parsers/parse-gltf.spec.ts index cee7876011..0b8cd07223 100644 --- a/modules/gltf/test/parsers/parse-gltf.spec.ts +++ b/modules/gltf/test/parsers/parse-gltf.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {load} from '@loaders.gl/core'; diff --git a/modules/gltf/test/parsers/parse-pbr-compressed-texture.spec.ts b/modules/gltf/test/parsers/parse-pbr-compressed-texture.spec.ts index 1e6dd8fcd7..77ee6d0726 100644 --- a/modules/gltf/test/parsers/parse-pbr-compressed-texture.spec.ts +++ b/modules/gltf/test/parsers/parse-pbr-compressed-texture.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {NullDevice} from '@luma.gl/test-utils'; diff --git a/modules/gltf/test/parsers/parse-pbr-material.spec.ts b/modules/gltf/test/parsers/parse-pbr-material.spec.ts index 17bb959c0a..0fb8ac72d5 100644 --- a/modules/gltf/test/parsers/parse-pbr-material.spec.ts +++ b/modules/gltf/test/parsers/parse-pbr-material.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {log} from '@luma.gl/core'; import {parsePBRMaterial} from '@luma.gl/gltf/parsers/parse-pbr-material'; diff --git a/modules/gltf/test/parsers/parse-pbr-reference-material.node.spec.ts b/modules/gltf/test/parsers/parse-pbr-reference-material.node.spec.ts index 1fc69deeab..ad4ab2c683 100644 --- a/modules/gltf/test/parsers/parse-pbr-reference-material.node.spec.ts +++ b/modules/gltf/test/parsers/parse-pbr-reference-material.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {parsePBRMaterial} from '@luma.gl/gltf/parsers/parse-pbr-material'; import {pbrMaterial} from '@luma.gl/shadertools'; diff --git a/modules/gltf/test/parsers/parse-pbr-sampler.spec.ts b/modules/gltf/test/parsers/parse-pbr-sampler.spec.ts index 36f14a838f..61cc79211b 100644 --- a/modules/gltf/test/parsers/parse-pbr-sampler.spec.ts +++ b/modules/gltf/test/parsers/parse-pbr-sampler.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer} from '@luma.gl/core'; import {createGLTFTexture} from '@luma.gl/gltf'; diff --git a/modules/gltf/test/webgl-to-webgpu/convert-webgl-sampler.node.spec.ts b/modules/gltf/test/webgl-to-webgpu/convert-webgl-sampler.node.spec.ts index fd02cc59d4..3a65fb0e87 100644 --- a/modules/gltf/test/webgl-to-webgpu/convert-webgl-sampler.node.spec.ts +++ b/modules/gltf/test/webgl-to-webgpu/convert-webgl-sampler.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerConvertWebGLSamplerTests} from './convert-webgl-sampler.spec.shared'; diff --git a/modules/gltf/test/webgl-to-webgpu/convert-webgl-sampler.spec.shared.ts b/modules/gltf/test/webgl-to-webgpu/convert-webgl-sampler.spec.shared.ts index 115e240ce2..912a60e0cc 100644 --- a/modules/gltf/test/webgl-to-webgpu/convert-webgl-sampler.spec.shared.ts +++ b/modules/gltf/test/webgl-to-webgpu/convert-webgl-sampler.spec.shared.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { convertSampler, diff --git a/modules/gltf/test/webgl-to-webgpu/convert-webgl-sampler.spec.ts b/modules/gltf/test/webgl-to-webgpu/convert-webgl-sampler.spec.ts index fd02cc59d4..3a65fb0e87 100644 --- a/modules/gltf/test/webgl-to-webgpu/convert-webgl-sampler.spec.ts +++ b/modules/gltf/test/webgl-to-webgpu/convert-webgl-sampler.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerConvertWebGLSamplerTests} from './convert-webgl-sampler.spec.shared'; diff --git a/modules/gpgpu/src/index.ts b/modules/gpgpu/src/index.ts index a8bb50d1f9..e3ce9ddb58 100644 --- a/modules/gpgpu/src/index.ts +++ b/modules/gpgpu/src/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // Resources export {getGPUDataEvaluator, GPUDataEvaluator} from './operation/gpu-data-evaluator'; diff --git a/modules/gpgpu/src/operation/backend-registry.ts b/modules/gpgpu/src/operation/backend-registry.ts index c133461806..fa5b86de52 100644 --- a/modules/gpgpu/src/operation/backend-registry.ts +++ b/modules/gpgpu/src/operation/backend-registry.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {log} from '@luma.gl/core'; import type {OperationHandler} from './operation'; diff --git a/modules/gpgpu/src/operation/gpu-data-evaluator.ts b/modules/gpgpu/src/operation/gpu-data-evaluator.ts index 9dac67f4c9..cce6f615d6 100644 --- a/modules/gpgpu/src/operation/gpu-data-evaluator.ts +++ b/modules/gpgpu/src/operation/gpu-data-evaluator.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { Device, Buffer, diff --git a/modules/gpgpu/src/operation/gpu-table-format-types.ts b/modules/gpgpu/src/operation/gpu-table-format-types.ts index b327dee96e..e1fe4a383a 100644 --- a/modules/gpgpu/src/operation/gpu-table-format-types.ts +++ b/modules/gpgpu/src/operation/gpu-table-format-types.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type { SignedDataType, diff --git a/modules/gpgpu/src/operation/gpu-vector-evaluator.ts b/modules/gpgpu/src/operation/gpu-vector-evaluator.ts index 2b9e367155..2975ce7607 100644 --- a/modules/gpgpu/src/operation/gpu-vector-evaluator.ts +++ b/modules/gpgpu/src/operation/gpu-vector-evaluator.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import {GPUVector, type GPUVectorFormat} from '@luma.gl/tables'; diff --git a/modules/gpgpu/src/operation/operation.ts b/modules/gpgpu/src/operation/operation.ts index ec264e89aa..4b8cb8636f 100644 --- a/modules/gpgpu/src/operation/operation.ts +++ b/modules/gpgpu/src/operation/operation.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device, Buffer} from '@luma.gl/core'; import type {TypedArray} from '@math.gl/types'; diff --git a/modules/gpgpu/src/operations/arithmetic-expression.ts b/modules/gpgpu/src/operations/arithmetic-expression.ts index 1baa7fa44d..a415b49854 100644 --- a/modules/gpgpu/src/operations/arithmetic-expression.ts +++ b/modules/gpgpu/src/operations/arithmetic-expression.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {GPUDataEvaluator} from '../operation/gpu-data-evaluator'; import type {Expression, ExpressionOperations} from '../utils/expression'; diff --git a/modules/gpgpu/src/operations/arithmetic-operation.ts b/modules/gpgpu/src/operations/arithmetic-operation.ts index 6d2221d37f..6f40d3e02e 100644 --- a/modules/gpgpu/src/operations/arithmetic-operation.ts +++ b/modules/gpgpu/src/operations/arithmetic-operation.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { getCompatibleGPUDataEvaluatorFormat, diff --git a/modules/gpgpu/src/operations/arithmetic.ts b/modules/gpgpu/src/operations/arithmetic.ts index 827a692a20..4b56d9a5ee 100644 --- a/modules/gpgpu/src/operations/arithmetic.ts +++ b/modules/gpgpu/src/operations/arithmetic.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {GPUDataEvaluator} from '../operation/gpu-data-evaluator'; import {getGPUDataEvaluator} from '../operation/gpu-data-evaluator'; diff --git a/modules/gpgpu/src/operations/cpu/arithmetic.ts b/modules/gpgpu/src/operations/cpu/arithmetic.ts index 599fce1026..c4fa2de369 100644 --- a/modules/gpgpu/src/operations/cpu/arithmetic.ts +++ b/modules/gpgpu/src/operations/cpu/arithmetic.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {OperationHandler} from '../../operation/operation'; import {Expression} from '../../utils/expression'; diff --git a/modules/gpgpu/src/operations/cpu/common.ts b/modules/gpgpu/src/operations/cpu/common.ts index 8c4f5833d4..acf8b90e42 100644 --- a/modules/gpgpu/src/operations/cpu/common.ts +++ b/modules/gpgpu/src/operations/cpu/common.ts @@ -1,6 +1,6 @@ // deck.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Buffer, TypedArray} from '@luma.gl/core'; import {GPUDataEvaluator} from '../../operation/gpu-data-evaluator'; diff --git a/modules/gpgpu/src/operations/cpu/dot.ts b/modules/gpgpu/src/operations/cpu/dot.ts index f7f65ef2e8..d02a2bf71f 100644 --- a/modules/gpgpu/src/operations/cpu/dot.ts +++ b/modules/gpgpu/src/operations/cpu/dot.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {OperationHandler} from '../../operation/operation'; import {GPUDataEvaluator} from '../../operation/gpu-data-evaluator'; diff --git a/modules/gpgpu/src/operations/cpu/equal-all.ts b/modules/gpgpu/src/operations/cpu/equal-all.ts index d3ae705981..5a6dba24c6 100644 --- a/modules/gpgpu/src/operations/cpu/equal-all.ts +++ b/modules/gpgpu/src/operations/cpu/equal-all.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {OperationHandler} from '../../operation/operation'; import {GPUDataEvaluator} from '../../operation/gpu-data-evaluator'; diff --git a/modules/gpgpu/src/operations/cpu/extent.ts b/modules/gpgpu/src/operations/cpu/extent.ts index b7d55041fd..2ade0bbf5d 100644 --- a/modules/gpgpu/src/operations/cpu/extent.ts +++ b/modules/gpgpu/src/operations/cpu/extent.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {OperationHandler} from '../../operation/operation'; import {GPUDataEvaluator} from '../../operation/gpu-data-evaluator'; diff --git a/modules/gpgpu/src/operations/cpu/fround.ts b/modules/gpgpu/src/operations/cpu/fround.ts index 5978158138..551cacb759 100644 --- a/modules/gpgpu/src/operations/cpu/fround.ts +++ b/modules/gpgpu/src/operations/cpu/fround.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {OperationHandler} from '../../operation/operation'; import {GPUDataEvaluator} from '../../operation/gpu-data-evaluator'; diff --git a/modules/gpgpu/src/operations/cpu/gather.ts b/modules/gpgpu/src/operations/cpu/gather.ts index f5114b7ff0..d931eab165 100644 --- a/modules/gpgpu/src/operations/cpu/gather.ts +++ b/modules/gpgpu/src/operations/cpu/gather.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {OperationHandler} from '../../operation/operation'; import {GPUDataEvaluator} from '../../operation/gpu-data-evaluator'; diff --git a/modules/gpgpu/src/operations/cpu/index.ts b/modules/gpgpu/src/operations/cpu/index.ts index a4a53b77e5..6068962802 100644 --- a/modules/gpgpu/src/operations/cpu/index.ts +++ b/modules/gpgpu/src/operations/cpu/index.ts @@ -1,3 +1,7 @@ +// luma.gl +// SPDX-License-Identifier: MIT +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors + import {arithmetic} from './arithmetic'; import {extent} from './extent'; import {fround} from './fround'; diff --git a/modules/gpgpu/src/operations/cpu/interleave.ts b/modules/gpgpu/src/operations/cpu/interleave.ts index f375e80f3b..c2380c7855 100644 --- a/modules/gpgpu/src/operations/cpu/interleave.ts +++ b/modules/gpgpu/src/operations/cpu/interleave.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {OperationHandler} from '../../operation/operation'; import {GPUDataEvaluator} from '../../operation/gpu-data-evaluator'; diff --git a/modules/gpgpu/src/operations/cpu/length.ts b/modules/gpgpu/src/operations/cpu/length.ts index e7e32b0d44..ea4b61f805 100644 --- a/modules/gpgpu/src/operations/cpu/length.ts +++ b/modules/gpgpu/src/operations/cpu/length.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {OperationHandler} from '../../operation/operation'; import {GPUDataEvaluator} from '../../operation/gpu-data-evaluator'; diff --git a/modules/gpgpu/src/operations/cpu/segmented-map.ts b/modules/gpgpu/src/operations/cpu/segmented-map.ts index fce0247d39..2e8c17da0d 100644 --- a/modules/gpgpu/src/operations/cpu/segmented-map.ts +++ b/modules/gpgpu/src/operations/cpu/segmented-map.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {OperationHandler} from '../../operation/operation'; import {GPUDataEvaluator} from '../../operation/gpu-data-evaluator'; diff --git a/modules/gpgpu/src/operations/cpu/select.ts b/modules/gpgpu/src/operations/cpu/select.ts index bbb7cbba96..b2e7762595 100644 --- a/modules/gpgpu/src/operations/cpu/select.ts +++ b/modules/gpgpu/src/operations/cpu/select.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {OperationHandler} from '../../operation/operation'; import {GPUDataEvaluator} from '../../operation/gpu-data-evaluator'; diff --git a/modules/gpgpu/src/operations/cpu/sequence.ts b/modules/gpgpu/src/operations/cpu/sequence.ts index e7f5dedc19..437b621bce 100644 --- a/modules/gpgpu/src/operations/cpu/sequence.ts +++ b/modules/gpgpu/src/operations/cpu/sequence.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {OperationHandler} from '../../operation/operation'; diff --git a/modules/gpgpu/src/operations/cpu/swizzle.ts b/modules/gpgpu/src/operations/cpu/swizzle.ts index 996b425b90..3400be9a64 100644 --- a/modules/gpgpu/src/operations/cpu/swizzle.ts +++ b/modules/gpgpu/src/operations/cpu/swizzle.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {TypedArray} from '@luma.gl/core'; import {OperationHandler} from '../../operation/operation'; diff --git a/modules/gpgpu/src/operations/dot.ts b/modules/gpgpu/src/operations/dot.ts index 5251af5b39..f5efa5efff 100644 --- a/modules/gpgpu/src/operations/dot.ts +++ b/modules/gpgpu/src/operations/dot.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { getGPUDataEvaluator, diff --git a/modules/gpgpu/src/operations/equal-all.ts b/modules/gpgpu/src/operations/equal-all.ts index a5a509ffc0..cbbe3bb652 100644 --- a/modules/gpgpu/src/operations/equal-all.ts +++ b/modules/gpgpu/src/operations/equal-all.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { getGPUDataEvaluator, diff --git a/modules/gpgpu/src/operations/extent.ts b/modules/gpgpu/src/operations/extent.ts index e59c6a9a25..0eefe69403 100644 --- a/modules/gpgpu/src/operations/extent.ts +++ b/modules/gpgpu/src/operations/extent.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { getGPUDataEvaluator, diff --git a/modules/gpgpu/src/operations/fround.ts b/modules/gpgpu/src/operations/fround.ts index 1519a3859c..90fa82933d 100644 --- a/modules/gpgpu/src/operations/fround.ts +++ b/modules/gpgpu/src/operations/fround.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {assert} from '@luma.gl/core'; import { diff --git a/modules/gpgpu/src/operations/gather.ts b/modules/gpgpu/src/operations/gather.ts index eef16df5f7..e311ef4ff7 100644 --- a/modules/gpgpu/src/operations/gather.ts +++ b/modules/gpgpu/src/operations/gather.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { getGPUDataEvaluator, diff --git a/modules/gpgpu/src/operations/interleave.ts b/modules/gpgpu/src/operations/interleave.ts index e7deceaa95..64cdbe6b91 100644 --- a/modules/gpgpu/src/operations/interleave.ts +++ b/modules/gpgpu/src/operations/interleave.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { getGPUDataEvaluator, diff --git a/modules/gpgpu/src/operations/length.ts b/modules/gpgpu/src/operations/length.ts index 808f5a60a5..f2f149103f 100644 --- a/modules/gpgpu/src/operations/length.ts +++ b/modules/gpgpu/src/operations/length.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { getGPUDataEvaluator, diff --git a/modules/gpgpu/src/operations/segmented-map.ts b/modules/gpgpu/src/operations/segmented-map.ts index 5597940e36..f708156165 100644 --- a/modules/gpgpu/src/operations/segmented-map.ts +++ b/modules/gpgpu/src/operations/segmented-map.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { getGPUDataEvaluator, diff --git a/modules/gpgpu/src/operations/select.ts b/modules/gpgpu/src/operations/select.ts index 9d465f863e..4db92a0187 100644 --- a/modules/gpgpu/src/operations/select.ts +++ b/modules/gpgpu/src/operations/select.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { getCompatibleGPUDataEvaluatorFormat, diff --git a/modules/gpgpu/src/operations/sequence.ts b/modules/gpgpu/src/operations/sequence.ts index 38c373f9f3..f657d2c5e8 100644 --- a/modules/gpgpu/src/operations/sequence.ts +++ b/modules/gpgpu/src/operations/sequence.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {GPUDataEvaluator} from '../operation/gpu-data-evaluator'; import {Operation} from '../operation/operation'; diff --git a/modules/gpgpu/src/operations/swizzle.ts b/modules/gpgpu/src/operations/swizzle.ts index 8c9828def0..db0dc63d62 100644 --- a/modules/gpgpu/src/operations/swizzle.ts +++ b/modules/gpgpu/src/operations/swizzle.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type TypedArray} from '@math.gl/types'; import { diff --git a/modules/gpgpu/src/operations/webgl/arithmetic.ts b/modules/gpgpu/src/operations/webgl/arithmetic.ts index efbedcbc35..161015f65f 100644 --- a/modules/gpgpu/src/operations/webgl/arithmetic.ts +++ b/modules/gpgpu/src/operations/webgl/arithmetic.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {fp32} from '@luma.gl/shadertools'; import {OperationHandler} from '../../operation/operation'; diff --git a/modules/gpgpu/src/operations/webgl/common/helper.ts b/modules/gpgpu/src/operations/webgl/common/helper.ts index 108f8bc552..f839d35faf 100644 --- a/modules/gpgpu/src/operations/webgl/common/helper.ts +++ b/modules/gpgpu/src/operations/webgl/common/helper.ts @@ -1,6 +1,6 @@ // deck.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {SignedDataType, type TextureFormat, type VertexFormat} from '@luma.gl/core'; diff --git a/modules/gpgpu/src/operations/webgl/common/random-access-transform.ts b/modules/gpgpu/src/operations/webgl/common/random-access-transform.ts index 26a9201b55..838fda733d 100644 --- a/modules/gpgpu/src/operations/webgl/common/random-access-transform.ts +++ b/modules/gpgpu/src/operations/webgl/common/random-access-transform.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, SignedDataType, Texture} from '@luma.gl/core'; import {ShaderModule} from '@luma.gl/shadertools'; diff --git a/modules/gpgpu/src/operations/webgl/common/row-transform.ts b/modules/gpgpu/src/operations/webgl/common/row-transform.ts index 505b1eedb4..61ca0b3a1c 100644 --- a/modules/gpgpu/src/operations/webgl/common/row-transform.ts +++ b/modules/gpgpu/src/operations/webgl/common/row-transform.ts @@ -1,6 +1,6 @@ // deck.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {SignedDataType, Buffer, BufferLayout} from '@luma.gl/core'; import {BufferTransform} from '@luma.gl/engine'; diff --git a/modules/gpgpu/src/operations/webgl/dot.ts b/modules/gpgpu/src/operations/webgl/dot.ts index fd69f8a89c..fe8bbb4dab 100644 --- a/modules/gpgpu/src/operations/webgl/dot.ts +++ b/modules/gpgpu/src/operations/webgl/dot.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {OperationHandler} from '../../operation/operation'; import {GPUDataEvaluator} from '../../operation/gpu-data-evaluator'; diff --git a/modules/gpgpu/src/operations/webgl/equal-all.ts b/modules/gpgpu/src/operations/webgl/equal-all.ts index e45951dc6f..f24181d7c9 100644 --- a/modules/gpgpu/src/operations/webgl/equal-all.ts +++ b/modules/gpgpu/src/operations/webgl/equal-all.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {OperationHandler} from '../../operation/operation'; import {GPUDataEvaluator} from '../../operation/gpu-data-evaluator'; diff --git a/modules/gpgpu/src/operations/webgl/extent.ts b/modules/gpgpu/src/operations/webgl/extent.ts index e7fd1548c3..deeb79a86b 100644 --- a/modules/gpgpu/src/operations/webgl/extent.ts +++ b/modules/gpgpu/src/operations/webgl/extent.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Texture} from '@luma.gl/core'; import {Model} from '@luma.gl/engine'; diff --git a/modules/gpgpu/src/operations/webgl/fround.ts b/modules/gpgpu/src/operations/webgl/fround.ts index 7c22209784..c5262d3c0e 100644 --- a/modules/gpgpu/src/operations/webgl/fround.ts +++ b/modules/gpgpu/src/operations/webgl/fround.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {OperationHandler} from '../../operation/operation'; import {GPUDataEvaluator} from '../../operation/gpu-data-evaluator'; diff --git a/modules/gpgpu/src/operations/webgl/gather.ts b/modules/gpgpu/src/operations/webgl/gather.ts index 330968528e..f4d60d1888 100644 --- a/modules/gpgpu/src/operations/webgl/gather.ts +++ b/modules/gpgpu/src/operations/webgl/gather.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {BufferLayout} from '@luma.gl/core'; import {BufferTransform} from '@luma.gl/engine'; diff --git a/modules/gpgpu/src/operations/webgl/index.ts b/modules/gpgpu/src/operations/webgl/index.ts index 5e04ff3555..b9bdcac588 100644 --- a/modules/gpgpu/src/operations/webgl/index.ts +++ b/modules/gpgpu/src/operations/webgl/index.ts @@ -1,3 +1,7 @@ +// luma.gl +// SPDX-License-Identifier: MIT +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors + import {arithmetic} from './arithmetic'; import {extent} from './extent'; import {interleave} from './interleave'; diff --git a/modules/gpgpu/src/operations/webgl/interleave.ts b/modules/gpgpu/src/operations/webgl/interleave.ts index 5d046e012e..0d0bf794a2 100644 --- a/modules/gpgpu/src/operations/webgl/interleave.ts +++ b/modules/gpgpu/src/operations/webgl/interleave.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {OperationHandler} from '../../operation/operation'; import {GPUDataEvaluator} from '../../operation/gpu-data-evaluator'; diff --git a/modules/gpgpu/src/operations/webgl/length.ts b/modules/gpgpu/src/operations/webgl/length.ts index 2301ddb7ba..72f75031e0 100644 --- a/modules/gpgpu/src/operations/webgl/length.ts +++ b/modules/gpgpu/src/operations/webgl/length.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {OperationHandler} from '../../operation/operation'; import {GPUDataEvaluator} from '../../operation/gpu-data-evaluator'; diff --git a/modules/gpgpu/src/operations/webgl/segmented-map.ts b/modules/gpgpu/src/operations/webgl/segmented-map.ts index ea09cc172a..ee2881b459 100644 --- a/modules/gpgpu/src/operations/webgl/segmented-map.ts +++ b/modules/gpgpu/src/operations/webgl/segmented-map.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {BufferTransform} from '@luma.gl/engine'; import {OperationHandler} from '../../operation/operation'; diff --git a/modules/gpgpu/src/operations/webgl/select.ts b/modules/gpgpu/src/operations/webgl/select.ts index 101eec9fc2..aca5fc0735 100644 --- a/modules/gpgpu/src/operations/webgl/select.ts +++ b/modules/gpgpu/src/operations/webgl/select.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {OperationHandler} from '../../operation/operation'; import {GPUDataEvaluator} from '../../operation/gpu-data-evaluator'; diff --git a/modules/gpgpu/src/operations/webgl/sequence.ts b/modules/gpgpu/src/operations/webgl/sequence.ts index 201ba340fc..f083ed6192 100644 --- a/modules/gpgpu/src/operations/webgl/sequence.ts +++ b/modules/gpgpu/src/operations/webgl/sequence.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {BufferTransform} from '@luma.gl/engine'; import {OperationHandler} from '../../operation/operation'; diff --git a/modules/gpgpu/src/operations/webgl/swizzle.ts b/modules/gpgpu/src/operations/webgl/swizzle.ts index 0532d65a12..50edf776dc 100644 --- a/modules/gpgpu/src/operations/webgl/swizzle.ts +++ b/modules/gpgpu/src/operations/webgl/swizzle.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {OperationHandler} from '../../operation/operation'; import {GPUDataEvaluator} from '../../operation/gpu-data-evaluator'; diff --git a/modules/gpgpu/src/operations/webgpu/arithmetic.ts b/modules/gpgpu/src/operations/webgpu/arithmetic.ts index 01607ac400..9942707f13 100644 --- a/modules/gpgpu/src/operations/webgpu/arithmetic.ts +++ b/modules/gpgpu/src/operations/webgpu/arithmetic.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import {OperationHandler} from '../../operation/operation'; diff --git a/modules/gpgpu/src/operations/webgpu/common/dispatch.ts b/modules/gpgpu/src/operations/webgpu/common/dispatch.ts index a770ce1d23..a3d583c879 100644 --- a/modules/gpgpu/src/operations/webgpu/common/dispatch.ts +++ b/modules/gpgpu/src/operations/webgpu/common/dispatch.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export type WebGPUDispatchLayout = { x: number; diff --git a/modules/gpgpu/src/operations/webgpu/common/helper.ts b/modules/gpgpu/src/operations/webgpu/common/helper.ts index 2c1615c0cc..8e988c0e47 100644 --- a/modules/gpgpu/src/operations/webgpu/common/helper.ts +++ b/modules/gpgpu/src/operations/webgpu/common/helper.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {SignedDataType} from '@luma.gl/core'; diff --git a/modules/gpgpu/src/operations/webgpu/common/random-access-transform.ts b/modules/gpgpu/src/operations/webgpu/common/random-access-transform.ts index 81d068decf..894fdcb55f 100644 --- a/modules/gpgpu/src/operations/webgpu/common/random-access-transform.ts +++ b/modules/gpgpu/src/operations/webgpu/common/random-access-transform.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {SignedDataType} from '@luma.gl/core'; import {GPUDataEvaluator} from '../../../operation/gpu-data-evaluator'; diff --git a/modules/gpgpu/src/operations/webgpu/common/row-transform.ts b/modules/gpgpu/src/operations/webgpu/common/row-transform.ts index 599b9b074f..f3ae0b3f9d 100644 --- a/modules/gpgpu/src/operations/webgpu/common/row-transform.ts +++ b/modules/gpgpu/src/operations/webgpu/common/row-transform.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, SignedDataType} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/gpgpu/src/operations/webgpu/dot.ts b/modules/gpgpu/src/operations/webgpu/dot.ts index d520c98c86..1560a13685 100644 --- a/modules/gpgpu/src/operations/webgpu/dot.ts +++ b/modules/gpgpu/src/operations/webgpu/dot.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {OperationHandler} from '../../operation/operation'; import {GPUDataEvaluator} from '../../operation/gpu-data-evaluator'; diff --git a/modules/gpgpu/src/operations/webgpu/equal-all.ts b/modules/gpgpu/src/operations/webgpu/equal-all.ts index 660ed3e861..b0a47e3f68 100644 --- a/modules/gpgpu/src/operations/webgpu/equal-all.ts +++ b/modules/gpgpu/src/operations/webgpu/equal-all.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {OperationHandler} from '../../operation/operation'; import {GPUDataEvaluator} from '../../operation/gpu-data-evaluator'; diff --git a/modules/gpgpu/src/operations/webgpu/extent.ts b/modules/gpgpu/src/operations/webgpu/extent.ts index c6fd05845d..db1b482bf1 100644 --- a/modules/gpgpu/src/operations/webgpu/extent.ts +++ b/modules/gpgpu/src/operations/webgpu/extent.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/gpgpu/src/operations/webgpu/fround.ts b/modules/gpgpu/src/operations/webgpu/fround.ts index fd7612ed39..8603160b20 100644 --- a/modules/gpgpu/src/operations/webgpu/fround.ts +++ b/modules/gpgpu/src/operations/webgpu/fround.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {OperationHandler} from '../../operation/operation'; import {GPUDataEvaluator} from '../../operation/gpu-data-evaluator'; diff --git a/modules/gpgpu/src/operations/webgpu/gather.ts b/modules/gpgpu/src/operations/webgpu/gather.ts index e234b272fd..7196e3a267 100644 --- a/modules/gpgpu/src/operations/webgpu/gather.ts +++ b/modules/gpgpu/src/operations/webgpu/gather.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/gpgpu/src/operations/webgpu/index.ts b/modules/gpgpu/src/operations/webgpu/index.ts index 3747c5b027..24a4909a3a 100644 --- a/modules/gpgpu/src/operations/webgpu/index.ts +++ b/modules/gpgpu/src/operations/webgpu/index.ts @@ -1,3 +1,7 @@ +// luma.gl +// SPDX-License-Identifier: MIT +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors + import {arithmetic} from './arithmetic'; import {dot} from './dot'; import {equalAll} from './equal-all'; diff --git a/modules/gpgpu/src/operations/webgpu/interleave.ts b/modules/gpgpu/src/operations/webgpu/interleave.ts index dbcb25de98..9d92453ab8 100644 --- a/modules/gpgpu/src/operations/webgpu/interleave.ts +++ b/modules/gpgpu/src/operations/webgpu/interleave.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {OperationHandler} from '../../operation/operation'; import {GPUDataEvaluator} from '../../operation/gpu-data-evaluator'; diff --git a/modules/gpgpu/src/operations/webgpu/length.ts b/modules/gpgpu/src/operations/webgpu/length.ts index ad75ffc84e..e9b84036be 100644 --- a/modules/gpgpu/src/operations/webgpu/length.ts +++ b/modules/gpgpu/src/operations/webgpu/length.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {OperationHandler} from '../../operation/operation'; import {GPUDataEvaluator} from '../../operation/gpu-data-evaluator'; diff --git a/modules/gpgpu/src/operations/webgpu/segmented-map.ts b/modules/gpgpu/src/operations/webgpu/segmented-map.ts index 9776a2db01..931856e183 100644 --- a/modules/gpgpu/src/operations/webgpu/segmented-map.ts +++ b/modules/gpgpu/src/operations/webgpu/segmented-map.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/gpgpu/src/operations/webgpu/select.ts b/modules/gpgpu/src/operations/webgpu/select.ts index f25e88ae32..4da158cf61 100644 --- a/modules/gpgpu/src/operations/webgpu/select.ts +++ b/modules/gpgpu/src/operations/webgpu/select.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {OperationHandler} from '../../operation/operation'; import {GPUDataEvaluator} from '../../operation/gpu-data-evaluator'; diff --git a/modules/gpgpu/src/operations/webgpu/sequence.ts b/modules/gpgpu/src/operations/webgpu/sequence.ts index 6dcd92177f..36accf6232 100644 --- a/modules/gpgpu/src/operations/webgpu/sequence.ts +++ b/modules/gpgpu/src/operations/webgpu/sequence.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Computation} from '@luma.gl/engine'; import {OperationHandler} from '../../operation/operation'; diff --git a/modules/gpgpu/src/operations/webgpu/swizzle.ts b/modules/gpgpu/src/operations/webgpu/swizzle.ts index 8ce4082842..9a6e85bf34 100644 --- a/modules/gpgpu/src/operations/webgpu/swizzle.ts +++ b/modules/gpgpu/src/operations/webgpu/swizzle.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {OperationHandler} from '../../operation/operation'; import {GPUDataEvaluator} from '../../operation/gpu-data-evaluator'; diff --git a/modules/gpgpu/src/utils/buffer-pool.ts b/modules/gpgpu/src/utils/buffer-pool.ts index cb8cceefcf..fb7b630d2a 100644 --- a/modules/gpgpu/src/utils/buffer-pool.ts +++ b/modules/gpgpu/src/utils/buffer-pool.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Device, Buffer} from '@luma.gl/core'; diff --git a/modules/gpgpu/src/utils/clean-evaluate.ts b/modules/gpgpu/src/utils/clean-evaluate.ts index 422e618f35..60a366aadb 100644 --- a/modules/gpgpu/src/utils/clean-evaluate.ts +++ b/modules/gpgpu/src/utils/clean-evaluate.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Buffer, Device} from '@luma.gl/core'; import {DynamicBuffer} from '@luma.gl/engine'; diff --git a/modules/gpgpu/src/utils/expression.ts b/modules/gpgpu/src/utils/expression.ts index 2ccd93f8c1..a3c2c56836 100644 --- a/modules/gpgpu/src/utils/expression.ts +++ b/modules/gpgpu/src/utils/expression.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** JSON-friendly scalar expression tree for elementwise row transforms. */ export type ExpressionLiteral = number | number[]; diff --git a/modules/gpgpu/src/utils/output-props.ts b/modules/gpgpu/src/utils/output-props.ts index b2f6f738f4..886e9d27a4 100644 --- a/modules/gpgpu/src/utils/output-props.ts +++ b/modules/gpgpu/src/utils/output-props.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {SignedDataType} from '@luma.gl/core'; import {GPUDataEvaluator} from '../operation/gpu-data-evaluator'; diff --git a/modules/gpgpu/src/utils/uid.ts b/modules/gpgpu/src/utils/uid.ts index 74bdb6fe76..941cc07903 100644 --- a/modules/gpgpu/src/utils/uid.ts +++ b/modules/gpgpu/src/utils/uid.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors const uidCounters: Record = {}; diff --git a/modules/gpgpu/src/webgpu.ts b/modules/gpgpu/src/webgpu.ts index d90cfd09cf..f2197c44eb 100644 --- a/modules/gpgpu/src/webgpu.ts +++ b/modules/gpgpu/src/webgpu.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** WebGPU GPGPU backend handlers. */ export * from './operations/webgpu/index'; diff --git a/modules/gpgpu/test/gpu-vector/gpu-data-evaluator-types.spec.ts b/modules/gpgpu/test/gpu-vector/gpu-data-evaluator-types.spec.ts index cbf1042ea6..72be44759a 100644 --- a/modules/gpgpu/test/gpu-vector/gpu-data-evaluator-types.spec.ts +++ b/modules/gpgpu/test/gpu-vector/gpu-data-evaluator-types.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import { diff --git a/modules/gpgpu/test/gpu-vector/gpu-data-evaluator.node.spec.ts b/modules/gpgpu/test/gpu-vector/gpu-data-evaluator.node.spec.ts index ab6303c1d7..9dccdc6c50 100644 --- a/modules/gpgpu/test/gpu-vector/gpu-data-evaluator.node.spec.ts +++ b/modules/gpgpu/test/gpu-vector/gpu-data-evaluator.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, NativeFloat16ArrayConstructor, type Device} from '@luma.gl/core'; import {GPUDataEvaluator} from '@luma.gl/gpgpu'; diff --git a/modules/gpgpu/test/gpu-vector/gpu-vector-compute.spec.ts b/modules/gpgpu/test/gpu-vector/gpu-vector-compute.spec.ts index 1fed232ae6..91c122879c 100644 --- a/modules/gpgpu/test/gpu-vector/gpu-vector-compute.spec.ts +++ b/modules/gpgpu/test/gpu-vector/gpu-vector-compute.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer} from '@luma.gl/core'; import {add, fround, GPUDataEvaluator, GPUVectorEvaluator, interleave} from '@luma.gl/gpgpu'; diff --git a/modules/gpgpu/test/operations/add.spec.ts b/modules/gpgpu/test/operations/add.spec.ts index 9fb362f488..f4c31445f8 100644 --- a/modules/gpgpu/test/operations/add.spec.ts +++ b/modules/gpgpu/test/operations/add.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {test, expect, describe, beforeEach} from 'vitest'; import type {Device} from '@luma.gl/core'; diff --git a/modules/gpgpu/test/operations/arithmetic-operation.spec.ts b/modules/gpgpu/test/operations/arithmetic-operation.spec.ts index 2b66591b2e..283088ac71 100644 --- a/modules/gpgpu/test/operations/arithmetic-operation.spec.ts +++ b/modules/gpgpu/test/operations/arithmetic-operation.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {expect, test} from 'vitest'; import {GPUDataEvaluator} from '../../src/operation/gpu-data-evaluator'; diff --git a/modules/gpgpu/test/operations/arithmetic.spec.ts b/modules/gpgpu/test/operations/arithmetic.spec.ts index 81f17c4e30..bf24395d4e 100644 --- a/modules/gpgpu/test/operations/arithmetic.spec.ts +++ b/modules/gpgpu/test/operations/arithmetic.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {test, expect, describe, beforeEach} from 'vitest'; import type {Device} from '@luma.gl/core'; diff --git a/modules/gpgpu/test/operations/divide.spec.ts b/modules/gpgpu/test/operations/divide.spec.ts index 91e0b01d1a..ebc005ae59 100644 --- a/modules/gpgpu/test/operations/divide.spec.ts +++ b/modules/gpgpu/test/operations/divide.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {test, expect, describe, beforeEach} from 'vitest'; import type {Device} from '@luma.gl/core'; diff --git a/modules/gpgpu/test/operations/dot.spec.ts b/modules/gpgpu/test/operations/dot.spec.ts index a2619f8528..ec1690a16f 100644 --- a/modules/gpgpu/test/operations/dot.spec.ts +++ b/modules/gpgpu/test/operations/dot.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {test, expect, describe, beforeEach} from 'vitest'; import type {Device} from '@luma.gl/core'; diff --git a/modules/gpgpu/test/operations/equal-all.spec.ts b/modules/gpgpu/test/operations/equal-all.spec.ts index f083a868be..bd304daa35 100644 --- a/modules/gpgpu/test/operations/equal-all.spec.ts +++ b/modules/gpgpu/test/operations/equal-all.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {test, expect, describe, beforeEach} from 'vitest'; import type {Device} from '@luma.gl/core'; diff --git a/modules/gpgpu/test/operations/extent.spec.ts b/modules/gpgpu/test/operations/extent.spec.ts index 116ec7bbd0..8992634675 100644 --- a/modules/gpgpu/test/operations/extent.spec.ts +++ b/modules/gpgpu/test/operations/extent.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {test, expect, describe, beforeEach} from 'vitest'; import type {Device} from '@luma.gl/core'; diff --git a/modules/gpgpu/test/operations/fixtures.ts b/modules/gpgpu/test/operations/fixtures.ts index a904f47fd5..716fd17608 100644 --- a/modules/gpgpu/test/operations/fixtures.ts +++ b/modules/gpgpu/test/operations/fixtures.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {SignedDataType, Device} from '@luma.gl/core'; import {TypedArray, equals} from '@math.gl/core'; import {GPUDataEvaluator, backendRegistry} from '@luma.gl/gpgpu'; diff --git a/modules/gpgpu/test/operations/fround.spec.ts b/modules/gpgpu/test/operations/fround.spec.ts index 775b8d2686..9a3ecb6c4d 100644 --- a/modules/gpgpu/test/operations/fround.spec.ts +++ b/modules/gpgpu/test/operations/fround.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {test, expect, describe, beforeEach} from 'vitest'; import type {Device} from '@luma.gl/core'; diff --git a/modules/gpgpu/test/operations/gather.spec.ts b/modules/gpgpu/test/operations/gather.spec.ts index 1d292f8a3c..2e1701e7e5 100644 --- a/modules/gpgpu/test/operations/gather.spec.ts +++ b/modules/gpgpu/test/operations/gather.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {test, expect, describe, beforeEach} from 'vitest'; import type {Device} from '@luma.gl/core'; diff --git a/modules/gpgpu/test/operations/gpu-data-view.node.spec.ts b/modules/gpgpu/test/operations/gpu-data-view.node.spec.ts index 4c91ddc7eb..c8c64ddccd 100644 --- a/modules/gpgpu/test/operations/gpu-data-view.node.spec.ts +++ b/modules/gpgpu/test/operations/gpu-data-view.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {expect, test} from 'vitest'; import {Buffer} from '@luma.gl/core'; diff --git a/modules/gpgpu/test/operations/gpu-data-view.spec.ts b/modules/gpgpu/test/operations/gpu-data-view.spec.ts index 73869dcfe1..60df8572e2 100644 --- a/modules/gpgpu/test/operations/gpu-data-view.spec.ts +++ b/modules/gpgpu/test/operations/gpu-data-view.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {beforeEach, describe, expect, test} from 'vitest'; import {Buffer, type Device} from '@luma.gl/core'; diff --git a/modules/gpgpu/test/operations/interleave.spec.ts b/modules/gpgpu/test/operations/interleave.spec.ts index d3095635b5..d723f05434 100644 --- a/modules/gpgpu/test/operations/interleave.spec.ts +++ b/modules/gpgpu/test/operations/interleave.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {test, expect, describe, beforeEach} from 'vitest'; import type {Device} from '@luma.gl/core'; diff --git a/modules/gpgpu/test/operations/length.spec.ts b/modules/gpgpu/test/operations/length.spec.ts index cbaa008d4f..c60dbd72d7 100644 --- a/modules/gpgpu/test/operations/length.spec.ts +++ b/modules/gpgpu/test/operations/length.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {test, expect, describe, beforeEach} from 'vitest'; import type {Device} from '@luma.gl/core'; diff --git a/modules/gpgpu/test/operations/multiply.spec.ts b/modules/gpgpu/test/operations/multiply.spec.ts index 881a1fe67e..9d3334bf85 100644 --- a/modules/gpgpu/test/operations/multiply.spec.ts +++ b/modules/gpgpu/test/operations/multiply.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {test, expect, describe, beforeEach} from 'vitest'; import type {Device} from '@luma.gl/core'; diff --git a/modules/gpgpu/test/operations/segmented-map.spec.ts b/modules/gpgpu/test/operations/segmented-map.spec.ts index baf80d5986..5d085ba624 100644 --- a/modules/gpgpu/test/operations/segmented-map.spec.ts +++ b/modules/gpgpu/test/operations/segmented-map.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {test, expect, describe, beforeEach} from 'vitest'; import type {Device} from '@luma.gl/core'; diff --git a/modules/gpgpu/test/operations/select.spec.ts b/modules/gpgpu/test/operations/select.spec.ts index 4dac616c73..cce61ffbcb 100644 --- a/modules/gpgpu/test/operations/select.spec.ts +++ b/modules/gpgpu/test/operations/select.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {test, expect, describe, beforeEach} from 'vitest'; import type {Device} from '@luma.gl/core'; diff --git a/modules/gpgpu/test/operations/sequence.spec.ts b/modules/gpgpu/test/operations/sequence.spec.ts index 1b7786c5d6..6129d6256e 100644 --- a/modules/gpgpu/test/operations/sequence.spec.ts +++ b/modules/gpgpu/test/operations/sequence.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {test, expect, describe, beforeEach} from 'vitest'; import type {Device} from '@luma.gl/core'; diff --git a/modules/gpgpu/test/operations/subtract.spec.ts b/modules/gpgpu/test/operations/subtract.spec.ts index 4b87eed351..7d27900bcd 100644 --- a/modules/gpgpu/test/operations/subtract.spec.ts +++ b/modules/gpgpu/test/operations/subtract.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {test, expect, describe, beforeEach} from 'vitest'; import type {Device} from '@luma.gl/core'; diff --git a/modules/gpgpu/test/operations/swizzle.spec.ts b/modules/gpgpu/test/operations/swizzle.spec.ts index 0b200ca66f..76e0d1307f 100644 --- a/modules/gpgpu/test/operations/swizzle.spec.ts +++ b/modules/gpgpu/test/operations/swizzle.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {test, expect, describe, beforeEach} from 'vitest'; import type {Device} from '@luma.gl/core'; diff --git a/modules/gpgpu/test/utils/clean-evaluate.spec.ts b/modules/gpgpu/test/utils/clean-evaluate.spec.ts index 43916212e3..c7fc9e7932 100644 --- a/modules/gpgpu/test/utils/clean-evaluate.spec.ts +++ b/modules/gpgpu/test/utils/clean-evaluate.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {GPUVector} from '@luma.gl/tables'; import {expect, test} from 'vitest'; diff --git a/modules/gpgpu/test/utils/expression.spec.ts b/modules/gpgpu/test/utils/expression.spec.ts index 7d606b1d90..17477119cf 100644 --- a/modules/gpgpu/test/utils/expression.spec.ts +++ b/modules/gpgpu/test/utils/expression.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {expect, test} from 'vitest'; import { diff --git a/modules/gpgpu/test/utils/webgpu-dispatch.spec.ts b/modules/gpgpu/test/utils/webgpu-dispatch.spec.ts index 43bba43718..8b3ca0ff2b 100644 --- a/modules/gpgpu/test/utils/webgpu-dispatch.spec.ts +++ b/modules/gpgpu/test/utils/webgpu-dispatch.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {expect, test} from 'vitest'; import {getWebGPUDispatchLayout} from '../../src/operations/webgpu/common/dispatch'; diff --git a/modules/shadertools/src/index.ts b/modules/shadertools/src/index.ts index e5ca750de3..a52877aa2c 100644 --- a/modules/shadertools/src/index.ts +++ b/modules/shadertools/src/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // shadertools exports diff --git a/modules/shadertools/src/lib/color/normalize-byte-colors.ts b/modules/shadertools/src/lib/color/normalize-byte-colors.ts index 0a2cdddcc0..84eea6b230 100644 --- a/modules/shadertools/src/lib/color/normalize-byte-colors.ts +++ b/modules/shadertools/src/lib/color/normalize-byte-colors.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {NumberArray3, NumberArray4} from '@math.gl/types'; diff --git a/modules/shadertools/src/lib/filters/prop-types.ts b/modules/shadertools/src/lib/filters/prop-types.ts index 172af3eaa0..2c9d4dcc90 100644 --- a/modules/shadertools/src/lib/filters/prop-types.ts +++ b/modules/shadertools/src/lib/filters/prop-types.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {assert} from '../utils/assert'; diff --git a/modules/shadertools/src/lib/glsl-utils/get-shader-info.ts b/modules/shadertools/src/lib/glsl-utils/get-shader-info.ts index e840743cf2..25c1b72454 100644 --- a/modules/shadertools/src/lib/glsl-utils/get-shader-info.ts +++ b/modules/shadertools/src/lib/glsl-utils/get-shader-info.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** Information extracted from shader source code */ export type ShaderInfo = { diff --git a/modules/shadertools/src/lib/glsl-utils/shader-utils.ts b/modules/shadertools/src/lib/glsl-utils/shader-utils.ts index cd34e2552b..776c81d148 100644 --- a/modules/shadertools/src/lib/glsl-utils/shader-utils.ts +++ b/modules/shadertools/src/lib/glsl-utils/shader-utils.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors const FS_GLES = /* glsl */ `\ out vec4 transform_output; diff --git a/modules/shadertools/src/lib/preprocessor/preprocessor.ts b/modules/shadertools/src/lib/preprocessor/preprocessor.ts index 1fe66abbc9..ab2758a387 100644 --- a/modules/shadertools/src/lib/preprocessor/preprocessor.ts +++ b/modules/shadertools/src/lib/preprocessor/preprocessor.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors const DEFINE_NAME_PATTERN = '([a-zA-Z_][a-zA-Z0-9_]*)'; const IF_REGEXP = /^\s*\#\s*if\s+(.+?)\s*(?:\/\/.*)?$/; diff --git a/modules/shadertools/src/lib/shader-assembler.ts b/modules/shadertools/src/lib/shader-assembler.ts index 1bd7b1f30f..0ab9b669c2 100644 --- a/modules/shadertools/src/lib/shader-assembler.ts +++ b/modules/shadertools/src/lib/shader-assembler.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderModule} from './shader-module/shader-module'; import {initializeShaderModules} from './shader-module/shader-module'; diff --git a/modules/shadertools/src/lib/shader-assembly/assemble-shaders.ts b/modules/shadertools/src/lib/shader-assembly/assemble-shaders.ts index f5601dac42..7580b6fb03 100644 --- a/modules/shadertools/src/lib/shader-assembly/assemble-shaders.ts +++ b/modules/shadertools/src/lib/shader-assembly/assemble-shaders.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {getShaderModuleDependencies} from '../shader-module/shader-module-dependencies'; import {PlatformInfo} from './platform-info'; diff --git a/modules/shadertools/src/lib/shader-assembly/platform-defines.ts b/modules/shadertools/src/lib/shader-assembly/platform-defines.ts index a261c22f73..5e81ef0691 100644 --- a/modules/shadertools/src/lib/shader-assembly/platform-defines.ts +++ b/modules/shadertools/src/lib/shader-assembly/platform-defines.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {PlatformInfo} from './platform-info'; diff --git a/modules/shadertools/src/lib/shader-assembly/platform-info.ts b/modules/shadertools/src/lib/shader-assembly/platform-info.ts index 931ad80004..13ca326a48 100644 --- a/modules/shadertools/src/lib/shader-assembly/platform-info.ts +++ b/modules/shadertools/src/lib/shader-assembly/platform-info.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** * PlatformInfo diff --git a/modules/shadertools/src/lib/shader-assembly/shader-hooks.ts b/modules/shadertools/src/lib/shader-assembly/shader-hooks.ts index ad1ce0fe95..1f0841c867 100644 --- a/modules/shadertools/src/lib/shader-assembly/shader-hooks.ts +++ b/modules/shadertools/src/lib/shader-assembly/shader-hooks.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {ShaderInjection} from './shader-injections'; diff --git a/modules/shadertools/src/lib/shader-assembly/shader-injections.ts b/modules/shadertools/src/lib/shader-assembly/shader-injections.ts index 0aacc73b91..4ed8414eeb 100644 --- a/modules/shadertools/src/lib/shader-assembly/shader-injections.ts +++ b/modules/shadertools/src/lib/shader-assembly/shader-injections.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {MODULE_INJECTORS_VS, MODULE_INJECTORS_FS} from '../../module-injectors'; import {assert} from '../utils/assert'; diff --git a/modules/shadertools/src/lib/shader-assembly/shader-plugin-varyings.ts b/modules/shadertools/src/lib/shader-assembly/shader-plugin-varyings.ts index 2a446a9bde..5beb90df2a 100644 --- a/modules/shadertools/src/lib/shader-assembly/shader-plugin-varyings.ts +++ b/modules/shadertools/src/lib/shader-assembly/shader-plugin-varyings.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {shaderTypeDecoder} from '@luma.gl/core'; import type {ResolvedShaderPluginVarying} from '../shader-plugin'; diff --git a/modules/shadertools/src/lib/shader-assembly/shader-plugin-vertex-inputs.ts b/modules/shadertools/src/lib/shader-assembly/shader-plugin-vertex-inputs.ts index ae165b207a..72589f990e 100644 --- a/modules/shadertools/src/lib/shader-assembly/shader-plugin-vertex-inputs.ts +++ b/modules/shadertools/src/lib/shader-assembly/shader-plugin-vertex-inputs.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {shaderTypeDecoder, type AttributeShaderType} from '@luma.gl/core'; diff --git a/modules/shadertools/src/lib/shader-assembly/wgsl-binding-debug.ts b/modules/shadertools/src/lib/shader-assembly/wgsl-binding-debug.ts index e2bfca41b3..5a658dbb30 100644 --- a/modules/shadertools/src/lib/shader-assembly/wgsl-binding-debug.ts +++ b/modules/shadertools/src/lib/shader-assembly/wgsl-binding-debug.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {WGSL_BINDABLE_VARIABLE_PATTERN, maskWGSLComments} from './wgsl-binding-scan'; diff --git a/modules/shadertools/src/lib/shader-assembly/wgsl-binding-scan.ts b/modules/shadertools/src/lib/shader-assembly/wgsl-binding-scan.ts index b286a7b5c5..3a9d8cb1bc 100644 --- a/modules/shadertools/src/lib/shader-assembly/wgsl-binding-scan.ts +++ b/modules/shadertools/src/lib/shader-assembly/wgsl-binding-scan.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export const WGSL_BINDABLE_VARIABLE_PATTERN = '(?:var<\\s*(uniform|storage(?:\\s*,\\s*[A-Za-z_][A-Za-z0-9_]*)?)\\s*>|var)\\s+([A-Za-z_][A-Za-z0-9_]*)'; diff --git a/modules/shadertools/src/lib/shader-assembly/wgsl-interface-scan.ts b/modules/shadertools/src/lib/shader-assembly/wgsl-interface-scan.ts index 024edf1021..6f157253fb 100644 --- a/modules/shadertools/src/lib/shader-assembly/wgsl-interface-scan.ts +++ b/modules/shadertools/src/lib/shader-assembly/wgsl-interface-scan.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type { AttributeDeclaration, diff --git a/modules/shadertools/src/lib/shader-generator/generate-shader.ts b/modules/shadertools/src/lib/shader-generator/generate-shader.ts index ad4f173dd2..9f54c03f17 100644 --- a/modules/shadertools/src/lib/shader-generator/generate-shader.ts +++ b/modules/shadertools/src/lib/shader-generator/generate-shader.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {ShaderModule} from '../shader-module/shader-module'; diff --git a/modules/shadertools/src/lib/shader-generator/glsl/generate-glsl.ts b/modules/shadertools/src/lib/shader-generator/glsl/generate-glsl.ts index 70adf6df65..e126dd6542 100644 --- a/modules/shadertools/src/lib/shader-generator/glsl/generate-glsl.ts +++ b/modules/shadertools/src/lib/shader-generator/glsl/generate-glsl.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {UniformFormat} from '../../../types'; import {ShaderModule} from '../../../lib/shader-module/shader-module'; diff --git a/modules/shadertools/src/lib/shader-generator/utils/capitalize.ts b/modules/shadertools/src/lib/shader-generator/utils/capitalize.ts index dd16a2fe4c..d822dffc95 100644 --- a/modules/shadertools/src/lib/shader-generator/utils/capitalize.ts +++ b/modules/shadertools/src/lib/shader-generator/utils/capitalize.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** * Capitalize first letter of a string diff --git a/modules/shadertools/src/lib/shader-generator/wgsl/generate-wgsl.ts b/modules/shadertools/src/lib/shader-generator/wgsl/generate-wgsl.ts index e1a71b58e1..40bd895203 100644 --- a/modules/shadertools/src/lib/shader-generator/wgsl/generate-wgsl.ts +++ b/modules/shadertools/src/lib/shader-generator/wgsl/generate-wgsl.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {ShaderModule} from '../../../lib/shader-module/shader-module'; import {capitalize} from '../utils/capitalize'; diff --git a/modules/shadertools/src/lib/shader-module/shader-module-dependencies.ts b/modules/shadertools/src/lib/shader-module/shader-module-dependencies.ts index 0fe69a4e24..86529bc498 100644 --- a/modules/shadertools/src/lib/shader-module/shader-module-dependencies.ts +++ b/modules/shadertools/src/lib/shader-module/shader-module-dependencies.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {ShaderModule, initializeShaderModules} from './shader-module'; diff --git a/modules/shadertools/src/lib/shader-module/shader-module-uniform-layout.ts b/modules/shadertools/src/lib/shader-module/shader-module-uniform-layout.ts index 472418637a..17fe7ed8e3 100644 --- a/modules/shadertools/src/lib/shader-module/shader-module-uniform-layout.ts +++ b/modules/shadertools/src/lib/shader-module/shader-module-uniform-layout.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderModule} from './shader-module'; import {assert} from '../utils/assert'; diff --git a/modules/shadertools/src/lib/shader-module/shader-module.ts b/modules/shadertools/src/lib/shader-module/shader-module.ts index 6eaa9f237a..e5c4c3fd13 100644 --- a/modules/shadertools/src/lib/shader-module/shader-module.ts +++ b/modules/shadertools/src/lib/shader-module/shader-module.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {UniformFormat} from '../../types'; import { diff --git a/modules/shadertools/src/lib/shader-module/shader-pass-pipeline.ts b/modules/shadertools/src/lib/shader-module/shader-pass-pipeline.ts index 69df5e8ff8..2116fa5f48 100644 --- a/modules/shadertools/src/lib/shader-module/shader-pass-pipeline.ts +++ b/modules/shadertools/src/lib/shader-module/shader-pass-pipeline.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {UniformValue} from '../utils/uniform-types'; import type {ShaderPass, ShaderPassInputSource, ShaderPassRenderTarget} from './shader-pass'; diff --git a/modules/shadertools/src/lib/shader-module/shader-pass.ts b/modules/shadertools/src/lib/shader-module/shader-pass.ts index 9f14fe896a..88a988d824 100644 --- a/modules/shadertools/src/lib/shader-module/shader-pass.ts +++ b/modules/shadertools/src/lib/shader-module/shader-pass.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Binding, SamplerProps, TextureFormat} from '@luma.gl/core'; import type {PickBindings, PickUniforms, ShaderModule} from './shader-module'; diff --git a/modules/shadertools/src/lib/shader-plugin.ts b/modules/shadertools/src/lib/shader-plugin.ts index 2dfb08aabd..920d35d154 100644 --- a/modules/shadertools/src/lib/shader-plugin.ts +++ b/modules/shadertools/src/lib/shader-plugin.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderInjection} from './shader-assembly/shader-injections'; import type {ShaderModule} from './shader-module/shader-module'; diff --git a/modules/shadertools/src/lib/shader-transpiler/transpile-glsl-shader.ts b/modules/shadertools/src/lib/shader-transpiler/transpile-glsl-shader.ts index 0e00177751..91fbf41ca4 100644 --- a/modules/shadertools/src/lib/shader-transpiler/transpile-glsl-shader.ts +++ b/modules/shadertools/src/lib/shader-transpiler/transpile-glsl-shader.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // TRANSPILATION TABLES diff --git a/modules/shadertools/src/lib/utils/assert.ts b/modules/shadertools/src/lib/utils/assert.ts index 9ff3f6e398..5a2669d594 100644 --- a/modules/shadertools/src/lib/utils/assert.ts +++ b/modules/shadertools/src/lib/utils/assert.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // Recommendation is to ignore message but current test suite checks against the // message so keep it for now. diff --git a/modules/shadertools/src/lib/utils/uniform-types.ts b/modules/shadertools/src/lib/utils/uniform-types.ts index f2c3d80381..cd38dec625 100644 --- a/modules/shadertools/src/lib/utils/uniform-types.ts +++ b/modules/shadertools/src/lib/utils/uniform-types.ts @@ -1,3 +1,7 @@ +// luma.gl +// SPDX-License-Identifier: MIT +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors + import type { Matrix3, Matrix4, diff --git a/modules/shadertools/src/module-injectors.ts b/modules/shadertools/src/module-injectors.ts index 997d6ef3b9..392d22b9fb 100644 --- a/modules/shadertools/src/module-injectors.ts +++ b/modules/shadertools/src/module-injectors.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export const MODULE_INJECTORS_VS = /* glsl */ `\ #ifdef MODULE_LOGDEPTH diff --git a/modules/shadertools/src/modules/color/float-colors.ts b/modules/shadertools/src/modules/color/float-colors.ts index fedf5203b1..bcd30c54de 100644 --- a/modules/shadertools/src/modules/color/float-colors.ts +++ b/modules/shadertools/src/modules/color/float-colors.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Binding} from '@luma.gl/core'; import {ShaderModule} from '../../lib/shader-module/shader-module'; diff --git a/modules/shadertools/src/modules/engine/clip/clip.ts b/modules/shadertools/src/modules/engine/clip/clip.ts index 860a8bf70e..01d7627f7e 100644 --- a/modules/shadertools/src/modules/engine/clip/clip.ts +++ b/modules/shadertools/src/modules/engine/clip/clip.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderModule} from '../../../lib/shader-module/shader-module'; import type {ShaderPlugin} from '../../../lib/shader-plugin'; diff --git a/modules/shadertools/src/modules/engine/filter/filter.ts b/modules/shadertools/src/modules/engine/filter/filter.ts index cff80f1b9b..0aa29568ad 100644 --- a/modules/shadertools/src/modules/engine/filter/filter.ts +++ b/modules/shadertools/src/modules/engine/filter/filter.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderModule} from '../../../lib/shader-module/shader-module'; import type {ShaderPlugin} from '../../../lib/shader-plugin'; diff --git a/modules/shadertools/src/modules/engine/geometry/geometry.ts b/modules/shadertools/src/modules/engine/geometry/geometry.ts index 46eb832d50..fdfac6550a 100644 --- a/modules/shadertools/src/modules/engine/geometry/geometry.ts +++ b/modules/shadertools/src/modules/engine/geometry/geometry.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // import {ShaderModule} from '../../types'; diff --git a/modules/shadertools/src/modules/engine/picking/picking.ts b/modules/shadertools/src/modules/engine/picking/picking.ts index 0ed733fd44..791ea8468b 100644 --- a/modules/shadertools/src/modules/engine/picking/picking.ts +++ b/modules/shadertools/src/modules/engine/picking/picking.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {ShaderModule} from '../../../lib/shader-module/shader-module'; import type {NumberArray3, NumberArray4} from '@math.gl/core'; diff --git a/modules/shadertools/src/modules/engine/project/project.ts b/modules/shadertools/src/modules/engine/project/project.ts index 79c673026f..04d6d257fc 100644 --- a/modules/shadertools/src/modules/engine/project/project.ts +++ b/modules/shadertools/src/modules/engine/project/project.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Matrix4, Vector3} from '@math.gl/core'; import {ShaderModule} from '../../../lib/shader-module/shader-module'; diff --git a/modules/shadertools/src/modules/engine/skin/skin.ts b/modules/shadertools/src/modules/engine/skin/skin.ts index d20fb06edd..35fa43310a 100644 --- a/modules/shadertools/src/modules/engine/skin/skin.ts +++ b/modules/shadertools/src/modules/engine/skin/skin.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Matrix4} from '@math.gl/core'; diff --git a/modules/shadertools/src/modules/engine/transform/transform.ts b/modules/shadertools/src/modules/engine/transform/transform.ts index 9c2455ad7d..4341744e18 100644 --- a/modules/shadertools/src/modules/engine/transform/transform.ts +++ b/modules/shadertools/src/modules/engine/transform/transform.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors const vs = /* glsl */ `\ attribute float transform_elementID; diff --git a/modules/shadertools/src/modules/geospatial/dggs/dggs-wgsl.ts b/modules/shadertools/src/modules/geospatial/dggs/dggs-wgsl.ts index 1281184bd7..f95ce746eb 100644 --- a/modules/shadertools/src/modules/geospatial/dggs/dggs-wgsl.ts +++ b/modules/shadertools/src/modules/geospatial/dggs/dggs-wgsl.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** WGSL source implementing 64-bit DGGS cell key and boundary helpers. */ export const dggsWGSL = /* wgsl */ `\ diff --git a/modules/shadertools/src/modules/geospatial/dggs/dggs.ts b/modules/shadertools/src/modules/geospatial/dggs/dggs.ts index f321ecdc21..a5b9a99214 100644 --- a/modules/shadertools/src/modules/geospatial/dggs/dggs.ts +++ b/modules/shadertools/src/modules/geospatial/dggs/dggs.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderModule} from '../../../lib/shader-module/shader-module'; import {dggsWGSL} from './dggs-wgsl'; diff --git a/modules/shadertools/src/modules/lighting/gouraud-material/gouraud-material.ts b/modules/shadertools/src/modules/lighting/gouraud-material/gouraud-material.ts index 524c82fe40..21dd3a355e 100644 --- a/modules/shadertools/src/modules/lighting/gouraud-material/gouraud-material.ts +++ b/modules/shadertools/src/modules/lighting/gouraud-material/gouraud-material.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {NumberArray3} from '@math.gl/types'; import {ShaderModule} from '../../../lib/shader-module/shader-module'; diff --git a/modules/shadertools/src/modules/lighting/ibl/ibl.ts b/modules/shadertools/src/modules/lighting/ibl/ibl.ts index e7be403e68..57aa2844de 100644 --- a/modules/shadertools/src/modules/lighting/ibl/ibl.ts +++ b/modules/shadertools/src/modules/lighting/ibl/ibl.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Texture} from '@luma.gl/core'; import {ShaderModule} from '../../../lib/shader-module/shader-module'; diff --git a/modules/shadertools/src/modules/lighting/lambert-material/lambert-material.ts b/modules/shadertools/src/modules/lighting/lambert-material/lambert-material.ts index dca3a504c0..3441df933b 100644 --- a/modules/shadertools/src/modules/lighting/lambert-material/lambert-material.ts +++ b/modules/shadertools/src/modules/lighting/lambert-material/lambert-material.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {ShaderModule} from '../../../lib/shader-module/shader-module'; import {lighting} from '../lights/lighting'; diff --git a/modules/shadertools/src/modules/lighting/lambert-material/lambert-shaders-glsl.ts b/modules/shadertools/src/modules/lighting/lambert-material/lambert-shaders-glsl.ts index 95c259ea72..f872cced2b 100644 --- a/modules/shadertools/src/modules/lighting/lambert-material/lambert-shaders-glsl.ts +++ b/modules/shadertools/src/modules/lighting/lambert-material/lambert-shaders-glsl.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export const LAMBERT_VS = /* glsl */ `\ layout(std140) uniform lambertMaterialUniforms { diff --git a/modules/shadertools/src/modules/lighting/lambert-material/lambert-shaders-wgsl.ts b/modules/shadertools/src/modules/lighting/lambert-material/lambert-shaders-wgsl.ts index e94227e4cc..208bb2287c 100644 --- a/modules/shadertools/src/modules/lighting/lambert-material/lambert-shaders-wgsl.ts +++ b/modules/shadertools/src/modules/lighting/lambert-material/lambert-shaders-wgsl.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export const LAMBERT_WGSL = /* wgsl */ `\ struct lambertMaterialUniforms { diff --git a/modules/shadertools/src/modules/lighting/lights/lighting-glsl.ts b/modules/shadertools/src/modules/lighting/lights/lighting-glsl.ts index 0c19525328..80ae87f0b8 100644 --- a/modules/shadertools/src/modules/lighting/lights/lighting-glsl.ts +++ b/modules/shadertools/src/modules/lighting/lights/lighting-glsl.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export const lightingUniformsGLSL = /* glsl */ `\ precision highp int; diff --git a/modules/shadertools/src/modules/lighting/lights/lighting-wgsl.ts b/modules/shadertools/src/modules/lighting/lights/lighting-wgsl.ts index ea15a7ab03..91347d3e82 100644 --- a/modules/shadertools/src/modules/lighting/lights/lighting-wgsl.ts +++ b/modules/shadertools/src/modules/lighting/lights/lighting-wgsl.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export const lightingUniformsWGSL = /* wgsl */ `\ // #if (defined(SHADER_TYPE_FRAGMENT) && defined(LIGHTING_FRAGMENT)) || (defined(SHADER_TYPE_VERTEX) && defined(LIGHTING_VERTEX)) diff --git a/modules/shadertools/src/modules/lighting/lights/lighting.ts b/modules/shadertools/src/modules/lighting/lights/lighting.ts index c0cee2ef2d..0b30d3236c 100644 --- a/modules/shadertools/src/modules/lighting/lights/lighting.ts +++ b/modules/shadertools/src/modules/lighting/lights/lighting.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {log} from '@luma.gl/core'; import {ShaderModule} from '../../../lib/shader-module/shader-module'; diff --git a/modules/shadertools/src/modules/lighting/no-material/dirlight.ts b/modules/shadertools/src/modules/lighting/no-material/dirlight.ts index 9cf6fdd249..d85272a145 100644 --- a/modules/shadertools/src/modules/lighting/no-material/dirlight.ts +++ b/modules/shadertools/src/modules/lighting/no-material/dirlight.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {NumberArray3} from '@math.gl/core'; import {ShaderModule} from '../../../lib/shader-module/shader-module'; diff --git a/modules/shadertools/src/modules/lighting/pbr-material/pbr-material-glsl.ts b/modules/shadertools/src/modules/lighting/pbr-material/pbr-material-glsl.ts index aa4b79eb76..2cfb340a0c 100644 --- a/modules/shadertools/src/modules/lighting/pbr-material/pbr-material-glsl.ts +++ b/modules/shadertools/src/modules/lighting/pbr-material/pbr-material-glsl.ts @@ -1,6 +1,7 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) 2016-2017 Mohamad Moneimne and Contributors // Attribution: // MIT license, Copyright (c) 2016-2017 Mohamad Moneimne and Contributors diff --git a/modules/shadertools/src/modules/lighting/pbr-material/pbr-material-wgsl.ts b/modules/shadertools/src/modules/lighting/pbr-material/pbr-material-wgsl.ts index 0549224e14..f362ac57ea 100644 --- a/modules/shadertools/src/modules/lighting/pbr-material/pbr-material-wgsl.ts +++ b/modules/shadertools/src/modules/lighting/pbr-material/pbr-material-wgsl.ts @@ -1,6 +1,7 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) 2016-2017 Mohamad Moneimne and Contributors // Attribution: // MIT license, Copyright (c) 2016-2017 Mohamad Moneimne and Contributors diff --git a/modules/shadertools/src/modules/lighting/pbr-material/pbr-material.ts b/modules/shadertools/src/modules/lighting/pbr-material/pbr-material.ts index c821f1d37d..5c05d9091d 100644 --- a/modules/shadertools/src/modules/lighting/pbr-material/pbr-material.ts +++ b/modules/shadertools/src/modules/lighting/pbr-material/pbr-material.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /* eslint-disable camelcase */ diff --git a/modules/shadertools/src/modules/lighting/pbr-material/pbr-projection.ts b/modules/shadertools/src/modules/lighting/pbr-material/pbr-projection.ts index e7ce3677b3..26dcc30b69 100644 --- a/modules/shadertools/src/modules/lighting/pbr-material/pbr-projection.ts +++ b/modules/shadertools/src/modules/lighting/pbr-material/pbr-projection.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {NumberArray3, NumberArray16} from '@math.gl/core'; diff --git a/modules/shadertools/src/modules/lighting/pbr-material/pbr-scene.ts b/modules/shadertools/src/modules/lighting/pbr-material/pbr-scene.ts index 7a89234bc8..f34a803e71 100644 --- a/modules/shadertools/src/modules/lighting/pbr-material/pbr-scene.ts +++ b/modules/shadertools/src/modules/lighting/pbr-material/pbr-scene.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Texture} from '@luma.gl/core'; import type {NumberArray2, NumberArray16} from '@math.gl/core'; diff --git a/modules/shadertools/src/modules/lighting/phong-material/phong-material.ts b/modules/shadertools/src/modules/lighting/phong-material/phong-material.ts index a9661e1655..5dbfbc4f2f 100644 --- a/modules/shadertools/src/modules/lighting/phong-material/phong-material.ts +++ b/modules/shadertools/src/modules/lighting/phong-material/phong-material.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {NumberArray3} from '@math.gl/types'; import {ShaderModule} from '../../../lib/shader-module/shader-module'; diff --git a/modules/shadertools/src/modules/lighting/phong-material/phong-shaders-glsl.ts b/modules/shadertools/src/modules/lighting/phong-material/phong-shaders-glsl.ts index c5c4e1e3ca..f8ac0d9a10 100644 --- a/modules/shadertools/src/modules/lighting/phong-material/phong-shaders-glsl.ts +++ b/modules/shadertools/src/modules/lighting/phong-material/phong-shaders-glsl.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export const PHONG_VS = /* glsl */ `\ layout(std140) uniform phongMaterialUniforms { diff --git a/modules/shadertools/src/modules/lighting/phong-material/phong-shaders-wgsl.ts b/modules/shadertools/src/modules/lighting/phong-material/phong-shaders-wgsl.ts index e39dc19066..d1ff74a7b6 100644 --- a/modules/shadertools/src/modules/lighting/phong-material/phong-shaders-wgsl.ts +++ b/modules/shadertools/src/modules/lighting/phong-material/phong-shaders-wgsl.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export const PHONG_WGSL = /* wgsl */ `\ struct phongMaterialUniforms { diff --git a/modules/shadertools/src/modules/lighting/water-material/water-material.ts b/modules/shadertools/src/modules/lighting/water-material/water-material.ts index 52d5d7bca9..b19820734e 100644 --- a/modules/shadertools/src/modules/lighting/water-material/water-material.ts +++ b/modules/shadertools/src/modules/lighting/water-material/water-material.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {NumberArray2, NumberArray3, Vector2, Vector3} from '@math.gl/core'; import {ShaderModule} from '../../../lib/shader-module/shader-module'; diff --git a/modules/shadertools/src/modules/lighting/water-material/water-shaders-glsl.ts b/modules/shadertools/src/modules/lighting/water-material/water-shaders-glsl.ts index b5913dee17..176d142bea 100644 --- a/modules/shadertools/src/modules/lighting/water-material/water-shaders-glsl.ts +++ b/modules/shadertools/src/modules/lighting/water-material/water-shaders-glsl.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export const WATER_VS = /* glsl */ `\ layout(std140) uniform waterMaterialUniforms { diff --git a/modules/shadertools/src/modules/lighting/water-material/water-shaders-wgsl.ts b/modules/shadertools/src/modules/lighting/water-material/water-shaders-wgsl.ts index c57cd0e4f9..61eab9b5de 100644 --- a/modules/shadertools/src/modules/lighting/water-material/water-shaders-wgsl.ts +++ b/modules/shadertools/src/modules/lighting/water-material/water-shaders-wgsl.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export const WATER_WGSL = /* wgsl */ `\ struct waterMaterialUniforms { diff --git a/modules/shadertools/src/modules/math/fp16/fp16-utils.ts b/modules/shadertools/src/modules/math/fp16/fp16-utils.ts index 4e54da4e73..ac7f83f852 100644 --- a/modules/shadertools/src/modules/math/fp16/fp16-utils.ts +++ b/modules/shadertools/src/modules/math/fp16/fp16-utils.ts @@ -1,6 +1,7 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) three.js authors // Forked from THREE.js under MIT license // Fast Half Float Conversions, http://www.fox-toolkit.org/ftp/fasthalffloatconversion.pdf diff --git a/modules/shadertools/src/modules/math/fp32/fp32.ts b/modules/shadertools/src/modules/math/fp32/fp32.ts index 1d5c1c7b89..b7f3e2b6cd 100644 --- a/modules/shadertools/src/modules/math/fp32/fp32.ts +++ b/modules/shadertools/src/modules/math/fp32/fp32.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // import {ShaderModule} from '../../types'; diff --git a/modules/shadertools/src/modules/math/fp64/fp64-arithmetic-glsl.ts b/modules/shadertools/src/modules/math/fp64/fp64-arithmetic-glsl.ts index ae5e210457..937d53efb2 100644 --- a/modules/shadertools/src/modules/math/fp64/fp64-arithmetic-glsl.ts +++ b/modules/shadertools/src/modules/math/fp64/fp64-arithmetic-glsl.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export const fp64arithmeticShader = /* glsl */ `\ diff --git a/modules/shadertools/src/modules/math/fp64/fp64-arithmetic-wgsl-integer.ts b/modules/shadertools/src/modules/math/fp64/fp64-arithmetic-wgsl-integer.ts index 55a8b23089..5465fd10ae 100644 --- a/modules/shadertools/src/modules/math/fp64/fp64-arithmetic-wgsl-integer.ts +++ b/modules/shadertools/src/modules/math/fp64/fp64-arithmetic-wgsl-integer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** * Optimizer-independent double-single arithmetic for WGSL implementations that diff --git a/modules/shadertools/src/modules/math/fp64/fp64-arithmetic-wgsl.ts b/modules/shadertools/src/modules/math/fp64/fp64-arithmetic-wgsl.ts index 3de3a2b05f..e23cab26c5 100644 --- a/modules/shadertools/src/modules/math/fp64/fp64-arithmetic-wgsl.ts +++ b/modules/shadertools/src/modules/math/fp64/fp64-arithmetic-wgsl.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {fp64arithmeticWGSLInteger} from './fp64-arithmetic-wgsl-integer'; diff --git a/modules/shadertools/src/modules/math/fp64/fp64-functions-glsl.ts b/modules/shadertools/src/modules/math/fp64/fp64-functions-glsl.ts index 516585f0aa..3042591858 100644 --- a/modules/shadertools/src/modules/math/fp64/fp64-functions-glsl.ts +++ b/modules/shadertools/src/modules/math/fp64/fp64-functions-glsl.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export const fp64functionShader = /* glsl */ `\ const vec2 E_FP64 = vec2(2.7182817459106445e+00, 8.254840366817007e-08); diff --git a/modules/shadertools/src/modules/math/fp64/fp64-utils.ts b/modules/shadertools/src/modules/math/fp64/fp64-utils.ts index a08446de00..a23e5e0486 100644 --- a/modules/shadertools/src/modules/math/fp64/fp64-utils.ts +++ b/modules/shadertools/src/modules/math/fp64/fp64-utils.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {NumericArray} from '@math.gl/types'; diff --git a/modules/shadertools/src/modules/math/fp64/fp64.ts b/modules/shadertools/src/modules/math/fp64/fp64.ts index 2d675b9340..073e865127 100644 --- a/modules/shadertools/src/modules/math/fp64/fp64.ts +++ b/modules/shadertools/src/modules/math/fp64/fp64.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {ShaderModule} from '../../../lib/shader-module/shader-module'; diff --git a/modules/shadertools/src/modules/math/random/random.ts b/modules/shadertools/src/modules/math/random/random.ts index bc0dff05be..ce3e2e2afc 100644 --- a/modules/shadertools/src/modules/math/random/random.ts +++ b/modules/shadertools/src/modules/math/random/random.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {ShaderModule} from '../../../lib/shader-module/shader-module'; diff --git a/modules/shadertools/src/types.ts b/modules/shadertools/src/types.ts index 7658c392d9..c190fb5c0e 100644 --- a/modules/shadertools/src/types.ts +++ b/modules/shadertools/src/types.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // MATH TYPES export {TypedArray, NumberArray, NumericArray} from '@math.gl/types'; diff --git a/modules/shadertools/src/wgsl.ts b/modules/shadertools/src/wgsl.ts index 5d337f631d..b9ba59efef 100644 --- a/modules/shadertools/src/wgsl.ts +++ b/modules/shadertools/src/wgsl.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export { scanWGSLInterface, diff --git a/modules/shadertools/test/index.ts b/modules/shadertools/test/index.ts index 0d35e70fec..f7fbda0225 100644 --- a/modules/shadertools/test/index.ts +++ b/modules/shadertools/test/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // SHADER MODULE API diff --git a/modules/shadertools/test/lib/generator/captialize.node.spec.ts b/modules/shadertools/test/lib/generator/captialize.node.spec.ts index 9cbd09a9fa..1972dd84be 100644 --- a/modules/shadertools/test/lib/generator/captialize.node.spec.ts +++ b/modules/shadertools/test/lib/generator/captialize.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerCapitalizeTests} from './captialize.spec.shared'; diff --git a/modules/shadertools/test/lib/generator/captialize.spec.shared.ts b/modules/shadertools/test/lib/generator/captialize.spec.shared.ts index 470384536b..387ced6cb2 100644 --- a/modules/shadertools/test/lib/generator/captialize.spec.shared.ts +++ b/modules/shadertools/test/lib/generator/captialize.spec.shared.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {capitalize} from '@luma.gl/shadertools'; import type {TapeTestFunction} from 'test/utils/vitest-tape'; diff --git a/modules/shadertools/test/lib/generator/captialize.spec.ts b/modules/shadertools/test/lib/generator/captialize.spec.ts index 9cbd09a9fa..1972dd84be 100644 --- a/modules/shadertools/test/lib/generator/captialize.spec.ts +++ b/modules/shadertools/test/lib/generator/captialize.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerCapitalizeTests} from './captialize.spec.shared'; diff --git a/modules/shadertools/test/lib/generator/generate-shader.node.spec.ts b/modules/shadertools/test/lib/generator/generate-shader.node.spec.ts index 688a943a1b..f9367f0c7c 100644 --- a/modules/shadertools/test/lib/generator/generate-shader.node.spec.ts +++ b/modules/shadertools/test/lib/generator/generate-shader.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerGenerateShaderTests} from './generate-shader.spec.shared'; diff --git a/modules/shadertools/test/lib/generator/generate-shader.spec.shared.ts b/modules/shadertools/test/lib/generator/generate-shader.spec.shared.ts index bf320737af..2b43cbbcda 100644 --- a/modules/shadertools/test/lib/generator/generate-shader.spec.shared.ts +++ b/modules/shadertools/test/lib/generator/generate-shader.spec.shared.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {ShaderModule, generateShaderForModule, ShaderGenerationOptions} from '@luma.gl/shadertools'; import type {TapeTestFunction} from 'test/utils/vitest-tape'; diff --git a/modules/shadertools/test/lib/generator/generate-shader.spec.ts b/modules/shadertools/test/lib/generator/generate-shader.spec.ts index 688a943a1b..f9367f0c7c 100644 --- a/modules/shadertools/test/lib/generator/generate-shader.spec.ts +++ b/modules/shadertools/test/lib/generator/generate-shader.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerGenerateShaderTests} from './generate-shader.spec.shared'; diff --git a/modules/shadertools/test/lib/glsl-utils/get-shader-info.spec.ts b/modules/shadertools/test/lib/glsl-utils/get-shader-info.spec.ts index ff77153694..e97e8523ea 100644 --- a/modules/shadertools/test/lib/glsl-utils/get-shader-info.spec.ts +++ b/modules/shadertools/test/lib/glsl-utils/get-shader-info.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getShaderInfo} from '@luma.gl/shadertools'; diff --git a/modules/shadertools/test/lib/glsl-utils/shader-utils.node.spec.ts b/modules/shadertools/test/lib/glsl-utils/shader-utils.node.spec.ts index b8f2efb69b..dc5871f1c1 100644 --- a/modules/shadertools/test/lib/glsl-utils/shader-utils.node.spec.ts +++ b/modules/shadertools/test/lib/glsl-utils/shader-utils.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerShaderUtilsTests} from './shader-utils.spec.shared'; diff --git a/modules/shadertools/test/lib/glsl-utils/shader-utils.spec.shared.ts b/modules/shadertools/test/lib/glsl-utils/shader-utils.spec.shared.ts index 9016ddfa37..190d0e8dbe 100644 --- a/modules/shadertools/test/lib/glsl-utils/shader-utils.spec.shared.ts +++ b/modules/shadertools/test/lib/glsl-utils/shader-utils.spec.shared.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { getQualifierDetails, diff --git a/modules/shadertools/test/lib/glsl-utils/shader-utils.spec.ts b/modules/shadertools/test/lib/glsl-utils/shader-utils.spec.ts index b8f2efb69b..dc5871f1c1 100644 --- a/modules/shadertools/test/lib/glsl-utils/shader-utils.spec.ts +++ b/modules/shadertools/test/lib/glsl-utils/shader-utils.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerShaderUtilsTests} from './shader-utils.spec.shared'; diff --git a/modules/shadertools/test/lib/preprocessor/preprocessor.node.spec.ts b/modules/shadertools/test/lib/preprocessor/preprocessor.node.spec.ts index afb3001427..c75c60661e 100644 --- a/modules/shadertools/test/lib/preprocessor/preprocessor.node.spec.ts +++ b/modules/shadertools/test/lib/preprocessor/preprocessor.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerPreprocessorTests} from './preprocessor.spec.shared'; diff --git a/modules/shadertools/test/lib/preprocessor/preprocessor.spec.shared.ts b/modules/shadertools/test/lib/preprocessor/preprocessor.spec.shared.ts index 2f29707ac1..89a0a4a29c 100644 --- a/modules/shadertools/test/lib/preprocessor/preprocessor.spec.shared.ts +++ b/modules/shadertools/test/lib/preprocessor/preprocessor.spec.shared.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {preprocess} from '@luma.gl/shadertools'; import type {TapeTestFunction} from 'test/utils/vitest-tape'; diff --git a/modules/shadertools/test/lib/preprocessor/preprocessor.spec.ts b/modules/shadertools/test/lib/preprocessor/preprocessor.spec.ts index afb3001427..c75c60661e 100644 --- a/modules/shadertools/test/lib/preprocessor/preprocessor.spec.ts +++ b/modules/shadertools/test/lib/preprocessor/preprocessor.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerPreprocessorTests} from './preprocessor.spec.shared'; diff --git a/modules/shadertools/test/lib/shader-assembler.spec.ts b/modules/shadertools/test/lib/shader-assembler.spec.ts index 738480c3a6..fa00b9f7ba 100644 --- a/modules/shadertools/test/lib/shader-assembler.spec.ts +++ b/modules/shadertools/test/lib/shader-assembler.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/shadertools/test/lib/shader-assembly/assemble-shaders.spec.ts b/modules/shadertools/test/lib/shader-assembly/assemble-shaders.spec.ts index f18d16fdb7..861c768a9f 100644 --- a/modules/shadertools/test/lib/shader-assembly/assemble-shaders.spec.ts +++ b/modules/shadertools/test/lib/shader-assembly/assemble-shaders.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Device} from '@luma.gl/core'; diff --git a/modules/shadertools/test/lib/shader-assembly/assemble-wgsl-auto-bindings.spec.ts b/modules/shadertools/test/lib/shader-assembly/assemble-wgsl-auto-bindings.spec.ts index fabb5e3322..7a73e01f4d 100644 --- a/modules/shadertools/test/lib/shader-assembly/assemble-wgsl-auto-bindings.spec.ts +++ b/modules/shadertools/test/lib/shader-assembly/assemble-wgsl-auto-bindings.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {WGSLShaderAssembler, type PlatformInfo, type ShaderModule} from '@luma.gl/shadertools'; diff --git a/modules/shadertools/test/lib/shader-assembly/inject-shader.spec.ts b/modules/shadertools/test/lib/shader-assembly/inject-shader.spec.ts index 0446fd8499..9b86c3b37a 100644 --- a/modules/shadertools/test/lib/shader-assembly/inject-shader.spec.ts +++ b/modules/shadertools/test/lib/shader-assembly/inject-shader.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /* eslint-disable camelcase, no-console, no-undef */ import test from 'test/utils/vitest-tape'; diff --git a/modules/shadertools/test/lib/shader-assembly/wgsl-interface-scan.node.spec.ts b/modules/shadertools/test/lib/shader-assembly/wgsl-interface-scan.node.spec.ts index d0d92c6ba9..24839e4606 100644 --- a/modules/shadertools/test/lib/shader-assembly/wgsl-interface-scan.node.spec.ts +++ b/modules/shadertools/test/lib/shader-assembly/wgsl-interface-scan.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {scanWGSLInterface, WGSLShaderAssembler, type PlatformInfo} from '@luma.gl/shadertools'; diff --git a/modules/shadertools/test/lib/shader-module/project-layout-regression.spec.ts b/modules/shadertools/test/lib/shader-module/project-layout-regression.spec.ts index d3470c4287..a583b0c733 100644 --- a/modules/shadertools/test/lib/shader-module/project-layout-regression.spec.ts +++ b/modules/shadertools/test/lib/shader-module/project-layout-regression.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getWebGLTestDevice} from '@luma.gl/test-utils'; diff --git a/modules/shadertools/test/lib/shader-module/shader-module-dependencies.spec.ts b/modules/shadertools/test/lib/shader-module/shader-module-dependencies.spec.ts index ecf8eb5bd9..8134ca112f 100644 --- a/modules/shadertools/test/lib/shader-module/shader-module-dependencies.spec.ts +++ b/modules/shadertools/test/lib/shader-module/shader-module-dependencies.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/shadertools/test/lib/shader-module/shader-module.spec.ts b/modules/shadertools/test/lib/shader-module/shader-module.spec.ts index bff5cbfd8c..7301d3fa28 100644 --- a/modules/shadertools/test/lib/shader-module/shader-module.spec.ts +++ b/modules/shadertools/test/lib/shader-module/shader-module.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import type {ShaderModule} from '@luma.gl/shadertools'; diff --git a/modules/shadertools/test/lib/shader-plugin.spec.ts b/modules/shadertools/test/lib/shader-plugin.spec.ts index 48fa4e5e69..d3833355bf 100644 --- a/modules/shadertools/test/lib/shader-plugin.spec.ts +++ b/modules/shadertools/test/lib/shader-plugin.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/shadertools/test/lib/shader-transpiler/minify-shader.ts b/modules/shadertools/test/lib/shader-transpiler/minify-shader.ts index 60be830c29..307960b74b 100644 --- a/modules/shadertools/test/lib/shader-transpiler/minify-shader.ts +++ b/modules/shadertools/test/lib/shader-transpiler/minify-shader.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // copied from rollup-plugin-glslify export function minifyShader(code) { diff --git a/modules/shadertools/test/lib/shader-transpiler/transpile-shader-cases.ts b/modules/shadertools/test/lib/shader-transpiler/transpile-shader-cases.ts index 2acbb0488b..87eb19138c 100644 --- a/modules/shadertools/test/lib/shader-transpiler/transpile-shader-cases.ts +++ b/modules/shadertools/test/lib/shader-transpiler/transpile-shader-cases.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors type TranspilationTestCase = { title: string; diff --git a/modules/shadertools/test/lib/shader-transpiler/transpile-shader.spec.ts b/modules/shadertools/test/lib/shader-transpiler/transpile-shader.spec.ts index 77193b19f1..72f86dbdd6 100644 --- a/modules/shadertools/test/lib/shader-transpiler/transpile-shader.spec.ts +++ b/modules/shadertools/test/lib/shader-transpiler/transpile-shader.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {getWebGLTestDevice} from '@luma.gl/test-utils'; import {transpileGLSLShader} from '@luma.gl/shadertools/lib/shader-transpiler/transpile-glsl-shader'; diff --git a/modules/shadertools/test/lib/uniform-types.spec.ts b/modules/shadertools/test/lib/uniform-types.spec.ts index 839fe695bc..07967ab235 100644 --- a/modules/shadertools/test/lib/uniform-types.spec.ts +++ b/modules/shadertools/test/lib/uniform-types.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {NumberArray16, NumberArray3, NumberArray4} from '@math.gl/core'; import type {ShaderModule, UniformTypes} from '../../src/index'; diff --git a/modules/shadertools/test/modules/color/float-colors.spec.ts b/modules/shadertools/test/modules/color/float-colors.spec.ts index 0e6916f887..f6198e6d95 100644 --- a/modules/shadertools/test/modules/color/float-colors.spec.ts +++ b/modules/shadertools/test/modules/color/float-colors.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer} from '@luma.gl/core'; diff --git a/modules/shadertools/test/modules/engine/clip.spec.ts b/modules/shadertools/test/modules/engine/clip.spec.ts index 648611732e..be3fbb00a1 100644 --- a/modules/shadertools/test/modules/engine/clip.spec.ts +++ b/modules/shadertools/test/modules/engine/clip.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import type {Test} from 'test/utils/vitest-tape'; diff --git a/modules/shadertools/test/modules/engine/filter.spec.ts b/modules/shadertools/test/modules/engine/filter.spec.ts index 41797e45c9..e4750353ae 100644 --- a/modules/shadertools/test/modules/engine/filter.spec.ts +++ b/modules/shadertools/test/modules/engine/filter.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer} from '@luma.gl/core'; diff --git a/modules/shadertools/test/modules/engine/picking.spec.ts b/modules/shadertools/test/modules/engine/picking.spec.ts index ad4c7d57de..bf1291bf27 100644 --- a/modules/shadertools/test/modules/engine/picking.spec.ts +++ b/modules/shadertools/test/modules/engine/picking.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getWebGLTestDevice} from '@luma.gl/test-utils'; diff --git a/modules/shadertools/test/modules/engine/skin.node.spec.ts b/modules/shadertools/test/modules/engine/skin.node.spec.ts index 62edff2f9c..35e982a6e4 100644 --- a/modules/shadertools/test/modules/engine/skin.node.spec.ts +++ b/modules/shadertools/test/modules/engine/skin.node.spec.ts @@ -1,5 +1,5 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import './skin.spec'; diff --git a/modules/shadertools/test/modules/engine/skin.spec.ts b/modules/shadertools/test/modules/engine/skin.spec.ts index 5daf644413..04b2ea0558 100644 --- a/modules/shadertools/test/modules/engine/skin.spec.ts +++ b/modules/shadertools/test/modules/engine/skin.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {GroupNode} from '@luma.gl/engine'; import {SKIN_MAX_JOINTS, skin} from '@luma.gl/shadertools'; diff --git a/modules/shadertools/test/modules/geospatial/dggs.node.spec.ts b/modules/shadertools/test/modules/geospatial/dggs.node.spec.ts index be07fd5102..7a5b871811 100644 --- a/modules/shadertools/test/modules/geospatial/dggs.node.spec.ts +++ b/modules/shadertools/test/modules/geospatial/dggs.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {checkType} from '@luma.gl/test-utils'; diff --git a/modules/shadertools/test/modules/geospatial/dggs.spec.ts b/modules/shadertools/test/modules/geospatial/dggs.spec.ts index 65b8cb7e88..cf612dc764 100644 --- a/modules/shadertools/test/modules/geospatial/dggs.spec.ts +++ b/modules/shadertools/test/modules/geospatial/dggs.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import type {Test} from 'test/utils/vitest-tape'; diff --git a/modules/shadertools/test/modules/lighting/dirlight.node.spec.ts b/modules/shadertools/test/modules/lighting/dirlight.node.spec.ts index eef4656c58..0de532ecd2 100644 --- a/modules/shadertools/test/modules/lighting/dirlight.node.spec.ts +++ b/modules/shadertools/test/modules/lighting/dirlight.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerDirlightTests} from './dirlight.spec.shared'; diff --git a/modules/shadertools/test/modules/lighting/dirlight.spec.shared.ts b/modules/shadertools/test/modules/lighting/dirlight.spec.shared.ts index fbc2aca88b..67cebb6f6f 100644 --- a/modules/shadertools/test/modules/lighting/dirlight.spec.shared.ts +++ b/modules/shadertools/test/modules/lighting/dirlight.spec.shared.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {checkType} from '@luma.gl/test-utils'; import {dirlight, ShaderModule} from '@luma.gl/shadertools'; diff --git a/modules/shadertools/test/modules/lighting/dirlight.spec.ts b/modules/shadertools/test/modules/lighting/dirlight.spec.ts index eef4656c58..0de532ecd2 100644 --- a/modules/shadertools/test/modules/lighting/dirlight.spec.ts +++ b/modules/shadertools/test/modules/lighting/dirlight.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerDirlightTests} from './dirlight.spec.shared'; diff --git a/modules/shadertools/test/modules/lighting/gouraud-material.node.spec.ts b/modules/shadertools/test/modules/lighting/gouraud-material.node.spec.ts index caf2d510e5..11ecb89a26 100644 --- a/modules/shadertools/test/modules/lighting/gouraud-material.node.spec.ts +++ b/modules/shadertools/test/modules/lighting/gouraud-material.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerGouraudMaterialTests} from './gouraud-material.spec.shared'; diff --git a/modules/shadertools/test/modules/lighting/gouraud-material.spec.shared.ts b/modules/shadertools/test/modules/lighting/gouraud-material.spec.shared.ts index 71b67e43e6..f814ea571a 100644 --- a/modules/shadertools/test/modules/lighting/gouraud-material.spec.shared.ts +++ b/modules/shadertools/test/modules/lighting/gouraud-material.spec.shared.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {UniformValue} from '@luma.gl/core'; import {gouraudMaterial} from '@luma.gl/shadertools'; diff --git a/modules/shadertools/test/modules/lighting/gouraud-material.spec.ts b/modules/shadertools/test/modules/lighting/gouraud-material.spec.ts index caf2d510e5..11ecb89a26 100644 --- a/modules/shadertools/test/modules/lighting/gouraud-material.spec.ts +++ b/modules/shadertools/test/modules/lighting/gouraud-material.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerGouraudMaterialTests} from './gouraud-material.spec.shared'; diff --git a/modules/shadertools/test/modules/lighting/lambert-material.node.spec.ts b/modules/shadertools/test/modules/lighting/lambert-material.node.spec.ts index 4988389407..e07b4e7e52 100644 --- a/modules/shadertools/test/modules/lighting/lambert-material.node.spec.ts +++ b/modules/shadertools/test/modules/lighting/lambert-material.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerLambertMaterialTests} from './lambert-material.spec.shared'; diff --git a/modules/shadertools/test/modules/lighting/lambert-material.spec.shared.ts b/modules/shadertools/test/modules/lighting/lambert-material.spec.shared.ts index d11de0f91d..41ea40cf8a 100644 --- a/modules/shadertools/test/modules/lighting/lambert-material.spec.shared.ts +++ b/modules/shadertools/test/modules/lighting/lambert-material.spec.shared.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {lambertMaterial} from '@luma.gl/shadertools'; import type {TapeTestFunction} from 'test/utils/vitest-tape'; diff --git a/modules/shadertools/test/modules/lighting/lambert-material.spec.ts b/modules/shadertools/test/modules/lighting/lambert-material.spec.ts index 4988389407..e07b4e7e52 100644 --- a/modules/shadertools/test/modules/lighting/lambert-material.spec.ts +++ b/modules/shadertools/test/modules/lighting/lambert-material.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerLambertMaterialTests} from './lambert-material.spec.shared'; diff --git a/modules/shadertools/test/modules/lighting/lights.node.spec.ts b/modules/shadertools/test/modules/lighting/lights.node.spec.ts index 91eca05f4f..06a9ba043f 100644 --- a/modules/shadertools/test/modules/lighting/lights.node.spec.ts +++ b/modules/shadertools/test/modules/lighting/lights.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerLightingTests} from './lights.spec.shared'; diff --git a/modules/shadertools/test/modules/lighting/lights.spec.shared.ts b/modules/shadertools/test/modules/lighting/lights.spec.shared.ts index 6b932644a8..1b922e82ab 100644 --- a/modules/shadertools/test/modules/lighting/lights.spec.shared.ts +++ b/modules/shadertools/test/modules/lighting/lights.spec.shared.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {makeShaderBlockLayout, ShaderBlockWriter} from '@luma.gl/core'; import {lighting, type LightingUniforms} from '../../../src/index'; diff --git a/modules/shadertools/test/modules/lighting/lights.spec.ts b/modules/shadertools/test/modules/lighting/lights.spec.ts index 91eca05f4f..06a9ba043f 100644 --- a/modules/shadertools/test/modules/lighting/lights.spec.ts +++ b/modules/shadertools/test/modules/lighting/lights.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerLightingTests} from './lights.spec.shared'; diff --git a/modules/shadertools/test/modules/lighting/pbr-material.spec.ts b/modules/shadertools/test/modules/lighting/pbr-material.spec.ts index b5104a1a8f..a8f3073c0c 100644 --- a/modules/shadertools/test/modules/lighting/pbr-material.spec.ts +++ b/modules/shadertools/test/modules/lighting/pbr-material.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {makeShaderBlockLayout, ShaderBlockWriter, UniformStore} from '@luma.gl/core'; import { diff --git a/modules/shadertools/test/modules/lighting/pbr-scene.spec.ts b/modules/shadertools/test/modules/lighting/pbr-scene.spec.ts index 3690aba048..5a1e9641b7 100644 --- a/modules/shadertools/test/modules/lighting/pbr-scene.spec.ts +++ b/modules/shadertools/test/modules/lighting/pbr-scene.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {makeShaderBlockLayout} from '@luma.gl/core'; import { diff --git a/modules/shadertools/test/modules/lighting/phong-material.node.spec.ts b/modules/shadertools/test/modules/lighting/phong-material.node.spec.ts index 34cc05197d..a28f0c9b87 100644 --- a/modules/shadertools/test/modules/lighting/phong-material.node.spec.ts +++ b/modules/shadertools/test/modules/lighting/phong-material.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerPhongMaterialTests} from './phong-material.spec.shared'; diff --git a/modules/shadertools/test/modules/lighting/phong-material.spec.shared.ts b/modules/shadertools/test/modules/lighting/phong-material.spec.shared.ts index b4450c0ed1..edc0ea97e2 100644 --- a/modules/shadertools/test/modules/lighting/phong-material.spec.shared.ts +++ b/modules/shadertools/test/modules/lighting/phong-material.spec.shared.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {phongMaterial} from '@luma.gl/shadertools'; import type {TapeTestFunction} from 'test/utils/vitest-tape'; diff --git a/modules/shadertools/test/modules/lighting/phong-material.spec.ts b/modules/shadertools/test/modules/lighting/phong-material.spec.ts index 34cc05197d..a28f0c9b87 100644 --- a/modules/shadertools/test/modules/lighting/phong-material.spec.ts +++ b/modules/shadertools/test/modules/lighting/phong-material.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerPhongMaterialTests} from './phong-material.spec.shared'; diff --git a/modules/shadertools/test/modules/lighting/water-material.spec.shared.ts b/modules/shadertools/test/modules/lighting/water-material.spec.shared.ts index c0621cbb47..6c5f32ef69 100644 --- a/modules/shadertools/test/modules/lighting/water-material.spec.shared.ts +++ b/modules/shadertools/test/modules/lighting/water-material.spec.shared.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {waterMaterial} from '@luma.gl/shadertools'; import type {TapeTestFunction} from 'test/utils/vitest-tape'; diff --git a/modules/shadertools/test/modules/lighting/water-material.spec.ts b/modules/shadertools/test/modules/lighting/water-material.spec.ts index ccd867a28d..557e6ac45f 100644 --- a/modules/shadertools/test/modules/lighting/water-material.spec.ts +++ b/modules/shadertools/test/modules/lighting/water-material.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {makeShaderBlockLayout} from '@luma.gl/core'; diff --git a/modules/shadertools/test/modules/math/fp16-utils.spec.ts b/modules/shadertools/test/modules/math/fp16-utils.spec.ts index c1a0a97699..dac09b7bed 100644 --- a/modules/shadertools/test/modules/math/fp16-utils.spec.ts +++ b/modules/shadertools/test/modules/math/fp16-utils.spec.ts @@ -1,6 +1,7 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) three.js authors // Forked from THREE.js under MIT license diff --git a/modules/shadertools/test/modules/math/fp64-arithmetic-compute.spec.ts b/modules/shadertools/test/modules/math/fp64-arithmetic-compute.spec.ts index 8ccd442f2c..f6ae6e49af 100644 --- a/modules/shadertools/test/modules/math/fp64-arithmetic-compute.spec.ts +++ b/modules/shadertools/test/modules/math/fp64-arithmetic-compute.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, type Device} from '@luma.gl/core'; diff --git a/modules/shadertools/test/modules/math/fp64-arithmetic-transform.spec.ts b/modules/shadertools/test/modules/math/fp64-arithmetic-transform.spec.ts index 45cffe6f65..668b422945 100644 --- a/modules/shadertools/test/modules/math/fp64-arithmetic-transform.spec.ts +++ b/modules/shadertools/test/modules/math/fp64-arithmetic-transform.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getWebGLTestDevice} from '@luma.gl/test-utils'; diff --git a/modules/shadertools/test/modules/math/fp64-test-utils-transform.ts b/modules/shadertools/test/modules/math/fp64-test-utils-transform.ts index fdd5bfe871..73bd48de56 100644 --- a/modules/shadertools/test/modules/math/fp64-test-utils-transform.ts +++ b/modules/shadertools/test/modules/math/fp64-test-utils-transform.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Device} from '@luma.gl/core'; import {BufferTransform} from '@luma.gl/engine'; diff --git a/modules/shadertools/test/modules/math/fp64-utils.spec.ts b/modules/shadertools/test/modules/math/fp64-utils.spec.ts index 1415cdbffe..82f3957497 100644 --- a/modules/shadertools/test/modules/math/fp64-utils.spec.ts +++ b/modules/shadertools/test/modules/math/fp64-utils.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {fp64} from '@luma.gl/shadertools'; diff --git a/modules/shadertools/test/modules/modules.spec.ts b/modules/shadertools/test/modules/modules.spec.ts index 26a326379c..9a2256cb41 100644 --- a/modules/shadertools/test/modules/modules.spec.ts +++ b/modules/shadertools/test/modules/modules.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; diff --git a/modules/shadertools/test/modules/utils/random.spec.ts b/modules/shadertools/test/modules/utils/random.spec.ts index 0a19b57eb9..92b6c412db 100644 --- a/modules/shadertools/test/modules/utils/random.spec.ts +++ b/modules/shadertools/test/modules/utils/random.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {random} from '@luma.gl/shadertools'; diff --git a/modules/splats/src/gpu-splat-graph-renderer.ts b/modules/splats/src/gpu-splat-graph-renderer.ts index e52d1f4c48..2637433f3e 100644 --- a/modules/splats/src/gpu-splat-graph-renderer.ts +++ b/modules/splats/src/gpu-splat-graph-renderer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {assert, Buffer, type CommandEncoder, type Device, type ShaderLayout} from '@luma.gl/core'; import {Computation, Model} from '@luma.gl/engine'; diff --git a/modules/splats/src/gpu-splat-graph-shaders.ts b/modules/splats/src/gpu-splat-graph-shaders.ts index 4f112ccde9..d76171f0f6 100644 --- a/modules/splats/src/gpu-splat-graph-shaders.ts +++ b/modules/splats/src/gpu-splat-graph-shaders.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderLayout} from '@luma.gl/core'; diff --git a/modules/splats/src/index.ts b/modules/splats/src/index.ts index 0ba8d29697..0e0605bb89 100644 --- a/modules/splats/src/index.ts +++ b/modules/splats/src/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export { GPUSplatData, diff --git a/modules/splats/src/splat-covariance.ts b/modules/splats/src/splat-covariance.ts index 2ec72df359..9261c8aaae 100644 --- a/modules/splats/src/splat-covariance.ts +++ b/modules/splats/src/splat-covariance.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** One-sigma screen-space axes of an anisotropic projected Gaussian. */ export type ProjectedSplatCovariance = { diff --git a/modules/splats/src/splat-data.ts b/modules/splats/src/splat-data.ts index 9234bb17bb..057a030724 100644 --- a/modules/splats/src/splat-data.ts +++ b/modules/splats/src/splat-data.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Device} from '@luma.gl/core'; import {GPUTable, GPUVector, type GPURecordBatchSourceInfo} from '@luma.gl/tables'; diff --git a/modules/splats/src/splat-renderer.ts b/modules/splats/src/splat-renderer.ts index f13cdef8d6..5056de58bb 100644 --- a/modules/splats/src/splat-renderer.ts +++ b/modules/splats/src/splat-renderer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { Buffer, diff --git a/modules/splats/src/splat-shaders.ts b/modules/splats/src/splat-shaders.ts index 5142c889bb..a4f4163ba5 100644 --- a/modules/splats/src/splat-shaders.ts +++ b/modules/splats/src/splat-shaders.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderLayout} from '@luma.gl/core'; import type {ShaderModule} from '@luma.gl/shadertools'; diff --git a/modules/splats/src/splat-sort.ts b/modules/splats/src/splat-sort.ts index d33e8f326d..21b41ffb2e 100644 --- a/modules/splats/src/splat-sort.ts +++ b/modules/splats/src/splat-sort.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** Camera-dependent Gaussian splat depth-ordering strategies. */ export type SplatSortMode = 'none' | 'global' | 'tile'; diff --git a/modules/splats/test/gpu-splat-graph-renderer.node.spec.ts b/modules/splats/test/gpu-splat-graph-renderer.node.spec.ts index a4dfebda3b..7add4b9156 100644 --- a/modules/splats/test/gpu-splat-graph-renderer.node.spec.ts +++ b/modules/splats/test/gpu-splat-graph-renderer.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {GPUSplatGraphRenderer, makeGPUSplatData, type SplatSource} from '@luma.gl/splats'; diff --git a/modules/splats/test/gpu-splat-graph-renderer.spec.ts b/modules/splats/test/gpu-splat-graph-renderer.spec.ts index d16d5a2e32..c8cd5134a3 100644 --- a/modules/splats/test/gpu-splat-graph-renderer.spec.ts +++ b/modules/splats/test/gpu-splat-graph-renderer.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import type {Device} from '@luma.gl/core'; diff --git a/modules/splats/test/gpu-splat-graph-shaders.node.spec.ts b/modules/splats/test/gpu-splat-graph-shaders.node.spec.ts index 5e1cf3284b..2203db815b 100644 --- a/modules/splats/test/gpu-splat-graph-shaders.node.spec.ts +++ b/modules/splats/test/gpu-splat-graph-shaders.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {WgslReflect} from 'wgsl_reflect'; diff --git a/modules/splats/test/gpu-splat-graph-shaders.spec.ts b/modules/splats/test/gpu-splat-graph-shaders.spec.ts index d38407b386..660a955fc6 100644 --- a/modules/splats/test/gpu-splat-graph-shaders.spec.ts +++ b/modules/splats/test/gpu-splat-graph-shaders.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getWebGPUTestDevice} from '@luma.gl/test-utils'; diff --git a/modules/splats/test/gpu-splat-progressive-renderer.node.spec.ts b/modules/splats/test/gpu-splat-progressive-renderer.node.spec.ts index 9fcaec3957..067029d6b7 100644 --- a/modules/splats/test/gpu-splat-progressive-renderer.node.spec.ts +++ b/modules/splats/test/gpu-splat-progressive-renderer.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {GPUSplatGraphRenderer, makeGPUSplatData, type SplatSource} from '@luma.gl/splats'; diff --git a/modules/splats/test/gpu-splat-progressive-renderer.spec.ts b/modules/splats/test/gpu-splat-progressive-renderer.spec.ts index da1bf91de6..e7fb3dd3cd 100644 --- a/modules/splats/test/gpu-splat-progressive-renderer.spec.ts +++ b/modules/splats/test/gpu-splat-progressive-renderer.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test, {type Test} from 'test/utils/vitest-tape'; import type {Device} from '@luma.gl/core'; diff --git a/modules/splats/test/index.ts b/modules/splats/test/index.ts index 8fb1fb313c..e213bfac7d 100644 --- a/modules/splats/test/index.ts +++ b/modules/splats/test/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import './splat-renderer.node.spec'; import './splat-renderer.spec'; diff --git a/modules/splats/test/splat-renderer.node.spec.ts b/modules/splats/test/splat-renderer.node.spec.ts index 20fe792b46..2c9592ee80 100644 --- a/modules/splats/test/splat-renderer.node.spec.ts +++ b/modules/splats/test/splat-renderer.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer} from '@luma.gl/core'; diff --git a/modules/splats/test/splat-renderer.spec.ts b/modules/splats/test/splat-renderer.spec.ts index b29cfd77ae..ef58ab84d9 100644 --- a/modules/splats/test/splat-renderer.spec.ts +++ b/modules/splats/test/splat-renderer.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, type Device, Texture} from '@luma.gl/core'; diff --git a/modules/tables/src/engine/gpu-input-schema.ts b/modules/tables/src/engine/gpu-input-schema.ts index 089f40acd6..b876266acb 100644 --- a/modules/tables/src/engine/gpu-input-schema.ts +++ b/modules/tables/src/engine/gpu-input-schema.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {assert} from '@luma.gl/core'; import type {GPUVector} from '../table/gpu-vector'; diff --git a/modules/tables/src/engine/gpu-renderable.ts b/modules/tables/src/engine/gpu-renderable.ts index 72a0124ce7..9c6510301e 100644 --- a/modules/tables/src/engine/gpu-renderable.ts +++ b/modules/tables/src/engine/gpu-renderable.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {CommandEncoder} from '@luma.gl/core'; diff --git a/modules/tables/src/engine/gpu-table-computation.ts b/modules/tables/src/engine/gpu-table-computation.ts index 2a8c2b99eb..b008c93d87 100644 --- a/modules/tables/src/engine/gpu-table-computation.ts +++ b/modules/tables/src/engine/gpu-table-computation.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type Binding, type ComputePass, Device} from '@luma.gl/core'; import {Computation, type ComputationProps} from '@luma.gl/engine'; diff --git a/modules/tables/src/engine/gpu-table-geometry.ts b/modules/tables/src/engine/gpu-table-geometry.ts index ab0b3ad47c..96b727ba24 100644 --- a/modules/tables/src/engine/gpu-table-geometry.ts +++ b/modules/tables/src/engine/gpu-table-geometry.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type PrimitiveTopology} from '@luma.gl/core'; import {DynamicBuffer, GPUGeometry} from '@luma.gl/engine'; diff --git a/modules/tables/src/engine/gpu-table-model.ts b/modules/tables/src/engine/gpu-table-model.ts index dfcc15aa0a..a3d3ea2475 100644 --- a/modules/tables/src/engine/gpu-table-model.ts +++ b/modules/tables/src/engine/gpu-table-model.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { Buffer, diff --git a/modules/tables/src/engine/gpu-table-shader-bindings.ts b/modules/tables/src/engine/gpu-table-shader-bindings.ts index 265dea6d92..d02f865e51 100644 --- a/modules/tables/src/engine/gpu-table-shader-bindings.ts +++ b/modules/tables/src/engine/gpu-table-shader-bindings.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { assert, diff --git a/modules/tables/src/engine/gpu-table-transform.ts b/modules/tables/src/engine/gpu-table-transform.ts index ec51ccf84b..69ad72c00b 100644 --- a/modules/tables/src/engine/gpu-table-transform.ts +++ b/modules/tables/src/engine/gpu-table-transform.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type BufferLayout, Device, type RenderPassProps} from '@luma.gl/core'; import {BufferTransform, DynamicBuffer, type BufferTransformProps} from '@luma.gl/engine'; diff --git a/modules/tables/src/index.ts b/modules/tables/src/index.ts index 20419697a3..3954beaea1 100644 --- a/modules/tables/src/index.ts +++ b/modules/tables/src/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export { GPUConstant, diff --git a/modules/tables/src/models/path/gpu/gpu-path-expansion.ts b/modules/tables/src/models/path/gpu/gpu-path-expansion.ts index 236ce978e1..0ff2e0203c 100644 --- a/modules/tables/src/models/path/gpu/gpu-path-expansion.ts +++ b/modules/tables/src/models/path/gpu/gpu-path-expansion.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Binding, type Device, type ShaderLayout} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/tables/src/models/path/gpu/path-storage-gpu-inputs.ts b/modules/tables/src/models/path/gpu/path-storage-gpu-inputs.ts index d6b88eb923..b0db7266d3 100644 --- a/modules/tables/src/models/path/gpu/path-storage-gpu-inputs.ts +++ b/modules/tables/src/models/path/gpu/path-storage-gpu-inputs.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type Binding, type Buffer} from '@luma.gl/core'; import {DynamicBuffer} from '@luma.gl/engine'; diff --git a/modules/tables/src/models/path/path-attribute-model.ts b/modules/tables/src/models/path/path-attribute-model.ts index 7178a2331a..777fb0084b 100644 --- a/modules/tables/src/models/path/path-attribute-model.ts +++ b/modules/tables/src/models/path/path-attribute-model.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { type Buffer, diff --git a/modules/tables/src/models/path/path-storage-model.ts b/modules/tables/src/models/path/path-storage-model.ts index 13b89a50d4..78083ee929 100644 --- a/modules/tables/src/models/path/path-storage-model.ts +++ b/modules/tables/src/models/path/path-storage-model.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { Buffer, diff --git a/modules/tables/src/models/path/path-trips-storage-model.ts b/modules/tables/src/models/path/path-trips-storage-model.ts index 9b47617997..cdef821310 100644 --- a/modules/tables/src/models/path/path-trips-storage-model.ts +++ b/modules/tables/src/models/path/path-trips-storage-model.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Device} from '@luma.gl/core'; import {DynamicBuffer} from '@luma.gl/engine'; diff --git a/modules/tables/src/models/polygon/polygon-attribute-model.ts b/modules/tables/src/models/polygon/polygon-attribute-model.ts index aeaa817fa1..ac176054d7 100644 --- a/modules/tables/src/models/polygon/polygon-attribute-model.ts +++ b/modules/tables/src/models/polygon/polygon-attribute-model.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {BufferLayout, Device} from '@luma.gl/core'; import {getIndexPickingModule, indexPicking, supportsIndexPicking} from '@luma.gl/engine'; diff --git a/modules/tables/src/models/polygon/polygon-gpu-inputs.ts b/modules/tables/src/models/polygon/polygon-gpu-inputs.ts index 1c340ea716..0dc1ff9ab3 100644 --- a/modules/tables/src/models/polygon/polygon-gpu-inputs.ts +++ b/modules/tables/src/models/polygon/polygon-gpu-inputs.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {GPURecordBatchSourceInfo} from '../../table/gpu-record-batch'; import type {GPUConstant} from '../../table/gpu-constant'; diff --git a/modules/tables/src/models/polygon/polygon-shaders.ts b/modules/tables/src/models/polygon/polygon-shaders.ts index 7264276f3c..912abd6658 100644 --- a/modules/tables/src/models/polygon/polygon-shaders.ts +++ b/modules/tables/src/models/polygon/polygon-shaders.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device, ShaderLayout} from '@luma.gl/core'; import {getIndexPickingModule, indexPicking, ShaderInputs} from '@luma.gl/engine'; diff --git a/modules/tables/src/models/polygon/polygon-storage-model.ts b/modules/tables/src/models/polygon/polygon-storage-model.ts index 5916cde609..17f651f259 100644 --- a/modules/tables/src/models/polygon/polygon-storage-model.ts +++ b/modules/tables/src/models/polygon/polygon-storage-model.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type Device} from '@luma.gl/core'; import {getIndexPickingModule, indexPicking, supportsIndexPicking} from '@luma.gl/engine'; diff --git a/modules/tables/src/table/gpu-constant.ts b/modules/tables/src/table/gpu-constant.ts index 04732cf503..34b1006a62 100644 --- a/modules/tables/src/table/gpu-constant.ts +++ b/modules/tables/src/table/gpu-constant.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { getTypedArrayFromDataType, diff --git a/modules/tables/src/table/gpu-data-format.ts b/modules/tables/src/table/gpu-data-format.ts index f3ec763be3..f211c311b2 100644 --- a/modules/tables/src/table/gpu-data-format.ts +++ b/modules/tables/src/table/gpu-data-format.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { makeShaderBlockLayout, diff --git a/modules/tables/src/table/gpu-data-view.ts b/modules/tables/src/table/gpu-data-view.ts index 8fcd5cba33..e9f9f13163 100644 --- a/modules/tables/src/table/gpu-data-view.ts +++ b/modules/tables/src/table/gpu-data-view.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { vertexFormatDecoder, diff --git a/modules/tables/src/table/gpu-data.ts b/modules/tables/src/table/gpu-data.ts index af0a8ec31a..4a9e6d2cab 100644 --- a/modules/tables/src/table/gpu-data.ts +++ b/modules/tables/src/table/gpu-data.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer} from '@luma.gl/core'; import {DynamicBuffer} from '@luma.gl/engine'; diff --git a/modules/tables/src/table/gpu-record-batch.ts b/modules/tables/src/table/gpu-record-batch.ts index a8970558b6..f5c2e29619 100644 --- a/modules/tables/src/table/gpu-record-batch.ts +++ b/modules/tables/src/table/gpu-record-batch.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {BufferLayout, VertexFormat} from '@luma.gl/core'; import type {GPUData} from './gpu-data'; diff --git a/modules/tables/src/table/gpu-schema.ts b/modules/tables/src/table/gpu-schema.ts index a639cc7e31..459d86292c 100644 --- a/modules/tables/src/table/gpu-schema.ts +++ b/modules/tables/src/table/gpu-schema.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {GPUVectorFormat} from './gpu-vector-format'; diff --git a/modules/tables/src/table/gpu-table.ts b/modules/tables/src/table/gpu-table.ts index 3205e23960..b66a5efc0a 100644 --- a/modules/tables/src/table/gpu-table.ts +++ b/modules/tables/src/table/gpu-table.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type BufferLayout, type VertexFormat} from '@luma.gl/core'; import {DynamicBuffer} from '@luma.gl/engine'; diff --git a/modules/tables/src/table/gpu-vector-format.ts b/modules/tables/src/table/gpu-vector-format.ts index 3fef32fbfd..dcdc0b4eb0 100644 --- a/modules/tables/src/table/gpu-vector-format.ts +++ b/modules/tables/src/table/gpu-vector-format.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type { AttributeShaderType, diff --git a/modules/tables/src/table/gpu-vector-utils.ts b/modules/tables/src/table/gpu-vector-utils.ts index 9e83fc864e..c1168079f7 100644 --- a/modules/tables/src/table/gpu-vector-utils.ts +++ b/modules/tables/src/table/gpu-vector-utils.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Buffer, BufferLayout} from '@luma.gl/core'; import type {DynamicBuffer} from '@luma.gl/engine'; diff --git a/modules/tables/src/table/gpu-vector.ts b/modules/tables/src/table/gpu-vector.ts index b58925ccb9..cdfc8166fc 100644 --- a/modules/tables/src/table/gpu-vector.ts +++ b/modules/tables/src/table/gpu-vector.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { type Buffer, diff --git a/modules/tables/src/utils/generated-buffer-batches.ts b/modules/tables/src/utils/generated-buffer-batches.ts index f0bf9684a2..54283089ac 100644 --- a/modules/tables/src/utils/generated-buffer-batches.ts +++ b/modules/tables/src/utils/generated-buffer-batches.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; diff --git a/modules/tables/src/utils/gpu-table-buffer-planner.ts b/modules/tables/src/utils/gpu-table-buffer-planner.ts index e68055bf49..10a76d5186 100644 --- a/modules/tables/src/utils/gpu-table-buffer-planner.ts +++ b/modules/tables/src/utils/gpu-table-buffer-planner.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; diff --git a/modules/tables/test/index.ts b/modules/tables/test/index.ts index c5c0c4927b..d3f1ab57f2 100644 --- a/modules/tables/test/index.ts +++ b/modules/tables/test/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import './table/table-buffer-planner.spec'; import './table/generated-buffer-batches.spec'; diff --git a/modules/tables/test/table/generated-buffer-batches.spec.ts b/modules/tables/test/table/generated-buffer-batches.spec.ts index 55db0fdc5d..efe0aa57a9 100644 --- a/modules/tables/test/table/generated-buffer-batches.spec.ts +++ b/modules/tables/test/table/generated-buffer-batches.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {NullDevice} from '@luma.gl/test-utils'; diff --git a/modules/tables/test/table/gpu-constant-render.spec.ts b/modules/tables/test/table/gpu-constant-render.spec.ts index d8bc7fd4b4..e51d612183 100644 --- a/modules/tables/test/table/gpu-constant-render.spec.ts +++ b/modules/tables/test/table/gpu-constant-render.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, Texture} from '@luma.gl/core'; diff --git a/modules/tables/test/table/gpu-constant.node.spec.ts b/modules/tables/test/table/gpu-constant.node.spec.ts index bb992b7f75..2e3802e866 100644 --- a/modules/tables/test/table/gpu-constant.node.spec.ts +++ b/modules/tables/test/table/gpu-constant.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {NullDevice} from '@luma.gl/test-utils'; diff --git a/modules/tables/test/table/gpu-data-struct.node.spec.ts b/modules/tables/test/table/gpu-data-struct.node.spec.ts index d97ad6cdbe..a03db0d057 100644 --- a/modules/tables/test/table/gpu-data-struct.node.spec.ts +++ b/modules/tables/test/table/gpu-data-struct.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {NullDevice} from '@luma.gl/test-utils'; diff --git a/modules/tables/test/table/gpu-data-types.node.spec.ts b/modules/tables/test/table/gpu-data-types.node.spec.ts index cddb529707..87cd2d0e6f 100644 --- a/modules/tables/test/table/gpu-data-types.node.spec.ts +++ b/modules/tables/test/table/gpu-data-types.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {NullDevice} from '@luma.gl/test-utils'; import {GPUData, type GPUDataView} from '@luma.gl/tables'; diff --git a/modules/tables/test/table/gpu-data-view.node.spec.ts b/modules/tables/test/table/gpu-data-view.node.spec.ts index d40ac374f2..f56f57b2d0 100644 --- a/modules/tables/test/table/gpu-data-view.node.spec.ts +++ b/modules/tables/test/table/gpu-data-view.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import type {BufferLayout} from '@luma.gl/core'; diff --git a/modules/tables/test/table/gpu-renderable.node.spec.ts b/modules/tables/test/table/gpu-renderable.node.spec.ts index 8d0ab83014..30c5aaad82 100644 --- a/modules/tables/test/table/gpu-renderable.node.spec.ts +++ b/modules/tables/test/table/gpu-renderable.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import type {CommandEncoder} from '@luma.gl/core'; diff --git a/modules/tables/test/table/gpu-table-geometry.node.spec.ts b/modules/tables/test/table/gpu-table-geometry.node.spec.ts index 36f2a0116c..b4e0347041 100644 --- a/modules/tables/test/table/gpu-table-geometry.node.spec.ts +++ b/modules/tables/test/table/gpu-table-geometry.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer} from '@luma.gl/core'; diff --git a/modules/tables/test/table/gpu-table-model.node.spec.ts b/modules/tables/test/table/gpu-table-model.node.spec.ts index 05958ee3a0..0c7269a420 100644 --- a/modules/tables/test/table/gpu-table-model.node.spec.ts +++ b/modules/tables/test/table/gpu-table-model.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, type ShaderLayout} from '@luma.gl/core'; diff --git a/modules/tables/test/table/gpu-table-shader-bindings.node.spec.ts b/modules/tables/test/table/gpu-table-shader-bindings.node.spec.ts index 3d19bf95ee..2c60d911cc 100644 --- a/modules/tables/test/table/gpu-table-shader-bindings.node.spec.ts +++ b/modules/tables/test/table/gpu-table-shader-bindings.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import type {ShaderLayout} from '@luma.gl/core'; diff --git a/modules/tables/test/table/gpu-vector-format.node.spec.ts b/modules/tables/test/table/gpu-vector-format.node.spec.ts index 83fd5a89e5..4198b1190c 100644 --- a/modules/tables/test/table/gpu-vector-format.node.spec.ts +++ b/modules/tables/test/table/gpu-vector-format.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/tables/test/table/polygon-model.node.spec.ts b/modules/tables/test/table/polygon-model.node.spec.ts index b5477f8758..8f3ed84bf8 100644 --- a/modules/tables/test/table/polygon-model.node.spec.ts +++ b/modules/tables/test/table/polygon-model.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, type Device} from '@luma.gl/core'; diff --git a/modules/tables/test/table/table-buffer-planner.spec.ts b/modules/tables/test/table/table-buffer-planner.spec.ts index be9fdf2fb4..ccff6410fd 100644 --- a/modules/tables/test/table/table-buffer-planner.spec.ts +++ b/modules/tables/test/table/table-buffer-planner.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {GPUTableBufferPlanner, type GPUTableColumnDescriptor} from '@luma.gl/tables'; diff --git a/modules/tables/test/table/table-computation.spec.ts b/modules/tables/test/table/table-computation.spec.ts index 41d2ebd318..b7cd1c7af2 100644 --- a/modules/tables/test/table/table-computation.spec.ts +++ b/modules/tables/test/table/table-computation.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {makeGPUVectorFromArrow} from '@luma.gl/arrow'; diff --git a/modules/tables/test/table/table-transform.spec.ts b/modules/tables/test/table/table-transform.spec.ts index dd67c929e9..00be603fb8 100644 --- a/modules/tables/test/table/table-transform.spec.ts +++ b/modules/tables/test/table/table-transform.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {makeGPUVectorFromArrow} from '@luma.gl/arrow'; diff --git a/modules/test-utils/src/create-test-device.ts b/modules/test-utils/src/create-test-device.ts index afd624de05..96c624563e 100644 --- a/modules/test-utils/src/create-test-device.ts +++ b/modules/test-utils/src/create-test-device.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device, CanvasContextProps, DeviceProps} from '@luma.gl/core'; import {luma, log} from '@luma.gl/core'; diff --git a/modules/test-utils/src/deprecated/classic-animation-loop.ts b/modules/test-utils/src/deprecated/classic-animation-loop.ts index 88eaf6a0d4..523c56b414 100644 --- a/modules/test-utils/src/deprecated/classic-animation-loop.ts +++ b/modules/test-utils/src/deprecated/classic-animation-loop.ts @@ -1,6 +1,6 @@ // luma.gl -// SPDX-License -// Copyright (c) vis.gl contributors +// SPDX-License-Identifier: MIT +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // @ts-nocheck This should be replaced with model animation loop diff --git a/modules/test-utils/src/deprecated/sync-test-device.ts b/modules/test-utils/src/deprecated/sync-test-device.ts index 49d1bd8573..42060f5f83 100644 --- a/modules/test-utils/src/deprecated/sync-test-device.ts +++ b/modules/test-utils/src/deprecated/sync-test-device.ts @@ -1,6 +1,6 @@ // luma.gl -// SPDX-License -// Copyright (c) vis.gl contributors +// SPDX-License-Identifier: MIT +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {CanvasContextProps} from '@luma.gl/core'; import {WebGLDevice} from '@luma.gl/webgl'; diff --git a/modules/test-utils/src/index.ts b/modules/test-utils/src/index.ts index 3cf49f24ab..5106b7fffa 100644 --- a/modules/test-utils/src/index.ts +++ b/modules/test-utils/src/index.ts @@ -1,3 +1,7 @@ +// luma.gl +// SPDX-License-Identifier: MIT +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors + import './register-devices'; // TEST RUNNERS diff --git a/modules/test-utils/src/null-device/null-adapter.ts b/modules/test-utils/src/null-device/null-adapter.ts index c745bc7af2..b79a0768ed 100644 --- a/modules/test-utils/src/null-device/null-adapter.ts +++ b/modules/test-utils/src/null-device/null-adapter.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Adapter, DeviceProps} from '@luma.gl/core'; import {NullDevice} from './null-device'; diff --git a/modules/test-utils/src/null-device/null-canvas-context.ts b/modules/test-utils/src/null-device/null-canvas-context.ts index 76f51e0c8a..e795ce8322 100644 --- a/modules/test-utils/src/null-device/null-canvas-context.ts +++ b/modules/test-utils/src/null-device/null-canvas-context.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {CanvasContextProps} from '@luma.gl/core'; import {CanvasContext} from '@luma.gl/core'; diff --git a/modules/test-utils/src/null-device/null-device-features.ts b/modules/test-utils/src/null-device/null-device-features.ts index 8de6a91d29..ef87bdb24b 100644 --- a/modules/test-utils/src/null-device/null-device-features.ts +++ b/modules/test-utils/src/null-device/null-device-features.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {DeviceLimits} from '@luma.gl/core'; diff --git a/modules/test-utils/src/null-device/null-device-info.ts b/modules/test-utils/src/null-device/null-device-info.ts index ce54212877..cd898fc984 100644 --- a/modules/test-utils/src/null-device/null-device-info.ts +++ b/modules/test-utils/src/null-device/null-device-info.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {DeviceInfo} from '@luma.gl/core'; diff --git a/modules/test-utils/src/null-device/null-device.ts b/modules/test-utils/src/null-device/null-device.ts index df27caa159..517db46b96 100644 --- a/modules/test-utils/src/null-device/null-device.ts +++ b/modules/test-utils/src/null-device/null-device.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type { DeviceProps, diff --git a/modules/test-utils/src/null-device/resources/null-buffer.ts b/modules/test-utils/src/null-device/resources/null-buffer.ts index 6964e5d336..ffdf149c4d 100644 --- a/modules/test-utils/src/null-device/resources/null-buffer.ts +++ b/modules/test-utils/src/null-device/resources/null-buffer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type BufferProps, type BufferMapCallback} from '@luma.gl/core'; import {type NullDevice} from '../null-device'; diff --git a/modules/test-utils/src/null-device/resources/null-command-buffer.ts b/modules/test-utils/src/null-device/resources/null-command-buffer.ts index 13a93cbc15..8d60ca3221 100644 --- a/modules/test-utils/src/null-device/resources/null-command-buffer.ts +++ b/modules/test-utils/src/null-device/resources/null-command-buffer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type { ResourceProps, diff --git a/modules/test-utils/src/null-device/resources/null-command-encoder.ts b/modules/test-utils/src/null-device/resources/null-command-encoder.ts index 2ec2e8451f..de17488156 100644 --- a/modules/test-utils/src/null-device/resources/null-command-encoder.ts +++ b/modules/test-utils/src/null-device/resources/null-command-encoder.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {CommandEncoder, CommandEncoderProps} from '@luma.gl/core'; import type { diff --git a/modules/test-utils/src/null-device/resources/null-fence.ts b/modules/test-utils/src/null-device/resources/null-fence.ts index 2f5684d651..391e949fa6 100644 --- a/modules/test-utils/src/null-device/resources/null-fence.ts +++ b/modules/test-utils/src/null-device/resources/null-fence.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Fence, type FenceProps} from '@luma.gl/core'; import type {NullDevice} from '../null-device'; diff --git a/modules/test-utils/src/null-device/resources/null-framebuffer.ts b/modules/test-utils/src/null-device/resources/null-framebuffer.ts index 3017d787e3..6506748c05 100644 --- a/modules/test-utils/src/null-device/resources/null-framebuffer.ts +++ b/modules/test-utils/src/null-device/resources/null-framebuffer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {FramebufferProps} from '@luma.gl/core'; import {Framebuffer} from '@luma.gl/core'; diff --git a/modules/test-utils/src/null-device/resources/null-query-set.ts b/modules/test-utils/src/null-device/resources/null-query-set.ts index cafca3ec72..5de9aca839 100644 --- a/modules/test-utils/src/null-device/resources/null-query-set.ts +++ b/modules/test-utils/src/null-device/resources/null-query-set.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {QuerySet, QuerySetProps} from '@luma.gl/core'; import {NullDevice} from '../null-device'; diff --git a/modules/test-utils/src/null-device/resources/null-render-pass.ts b/modules/test-utils/src/null-device/resources/null-render-pass.ts index 563d37d17d..b4bb14084a 100644 --- a/modules/test-utils/src/null-device/resources/null-render-pass.ts +++ b/modules/test-utils/src/null-device/resources/null-render-pass.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type { Bindings, diff --git a/modules/test-utils/src/null-device/resources/null-render-pipeline.ts b/modules/test-utils/src/null-device/resources/null-render-pipeline.ts index b65c3d852e..22600834c0 100644 --- a/modules/test-utils/src/null-device/resources/null-render-pipeline.ts +++ b/modules/test-utils/src/null-device/resources/null-render-pipeline.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {RenderPipelineProps, Binding, RenderPass, VertexArray} from '@luma.gl/core'; import {RenderPipeline} from '@luma.gl/core'; diff --git a/modules/test-utils/src/null-device/resources/null-sampler.ts b/modules/test-utils/src/null-device/resources/null-sampler.ts index d9f49862cf..59dc2def99 100644 --- a/modules/test-utils/src/null-device/resources/null-sampler.ts +++ b/modules/test-utils/src/null-device/resources/null-sampler.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Sampler, SamplerProps} from '@luma.gl/core'; import type {NullDevice} from '../null-device'; diff --git a/modules/test-utils/src/null-device/resources/null-shader.ts b/modules/test-utils/src/null-device/resources/null-shader.ts index 6d251f635f..a0f15fc47e 100644 --- a/modules/test-utils/src/null-device/resources/null-shader.ts +++ b/modules/test-utils/src/null-device/resources/null-shader.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Shader, ShaderProps, CompilerMessage} from '@luma.gl/core'; import {NullDevice} from '../null-device'; diff --git a/modules/test-utils/src/null-device/resources/null-texture-view.ts b/modules/test-utils/src/null-device/resources/null-texture-view.ts index b6a63c1c2c..13fae95077 100644 --- a/modules/test-utils/src/null-device/resources/null-texture-view.ts +++ b/modules/test-utils/src/null-device/resources/null-texture-view.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {TextureViewProps} from '@luma.gl/core'; import {TextureView, Texture} from '@luma.gl/core'; diff --git a/modules/test-utils/src/null-device/resources/null-texture.ts b/modules/test-utils/src/null-device/resources/null-texture.ts index fa010335cb..e58ca1ae48 100644 --- a/modules/test-utils/src/null-device/resources/null-texture.ts +++ b/modules/test-utils/src/null-device/resources/null-texture.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { type TextureProps, diff --git a/modules/test-utils/src/null-device/resources/null-transform-feedback.ts b/modules/test-utils/src/null-device/resources/null-transform-feedback.ts index abb4965586..b78d659e22 100644 --- a/modules/test-utils/src/null-device/resources/null-transform-feedback.ts +++ b/modules/test-utils/src/null-device/resources/null-transform-feedback.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {PrimitiveTopology, ShaderLayout, TransformFeedbackProps} from '@luma.gl/core'; import {TransformFeedback, Buffer, BufferRange} from '@luma.gl/core'; diff --git a/modules/test-utils/src/null-device/resources/null-vertex-array.ts b/modules/test-utils/src/null-device/resources/null-vertex-array.ts index 58bd7b65f4..cf2cc1e3ce 100644 --- a/modules/test-utils/src/null-device/resources/null-vertex-array.ts +++ b/modules/test-utils/src/null-device/resources/null-vertex-array.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {TypedArray} from '@math.gl/types'; import type {Buffer, VertexArrayProps} from '@luma.gl/core'; diff --git a/modules/test-utils/src/performance-test-runner.ts b/modules/test-utils/src/performance-test-runner.ts index e96019b50c..6ee2be064d 100644 --- a/modules/test-utils/src/performance-test-runner.ts +++ b/modules/test-utils/src/performance-test-runner.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Stats, Stat} from '@probe.gl/stats'; import {TestRunner, TestRunnerProps, TestRunnerTestCase} from './test-runner'; diff --git a/modules/test-utils/src/register-devices.ts b/modules/test-utils/src/register-devices.ts index 8d1526a47e..822e0e755d 100644 --- a/modules/test-utils/src/register-devices.ts +++ b/modules/test-utils/src/register-devices.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {luma} from '@luma.gl/core'; import {webgl2Adapter} from '@luma.gl/webgl'; diff --git a/modules/test-utils/src/snapshot-test-runner.ts b/modules/test-utils/src/snapshot-test-runner.ts index 5d099536b9..e0a3897134 100644 --- a/modules/test-utils/src/snapshot-test-runner.ts +++ b/modules/test-utils/src/snapshot-test-runner.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {TestRunner, TestRunnerProps, TestRunnerTestCase} from './test-runner'; import {getBoundingBoxInPage} from './utils/get-bounding-box'; diff --git a/modules/test-utils/src/test-runner.ts b/modules/test-utils/src/test-runner.ts index 0af7bd81a2..2c2ab40200 100644 --- a/modules/test-utils/src/test-runner.ts +++ b/modules/test-utils/src/test-runner.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // @ts-nocheck /* eslint-disable */ diff --git a/modules/test-utils/src/utils/check-type.ts b/modules/test-utils/src/utils/check-type.ts index 8b8f7ae307..97361e643a 100644 --- a/modules/test-utils/src/utils/check-type.ts +++ b/modules/test-utils/src/utils/check-type.ts @@ -1,3 +1,7 @@ +// luma.gl +// SPDX-License-Identifier: MIT +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors + /** * Tests that an argument matches the type. * @note fails during typescript type check, not during runtime. diff --git a/modules/test-utils/src/utils/deep-copy.ts b/modules/test-utils/src/utils/deep-copy.ts index fdcefd96a2..8a2adf2c3e 100644 --- a/modules/test-utils/src/utils/deep-copy.ts +++ b/modules/test-utils/src/utils/deep-copy.ts @@ -1,3 +1,7 @@ +// luma.gl +// SPDX-License-Identifier: MIT +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors + /** Recursively copies objects */ export function deepCopy(object: any): any { if (Array.isArray(object)) { diff --git a/modules/test-utils/src/utils/get-bounding-box.ts b/modules/test-utils/src/utils/get-bounding-box.ts index 47b4b114eb..bc6fd8cd6d 100644 --- a/modules/test-utils/src/utils/get-bounding-box.ts +++ b/modules/test-utils/src/utils/get-bounding-box.ts @@ -1,3 +1,7 @@ +// luma.gl +// SPDX-License-Identifier: MIT +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors + // Get the bounding box of a DOMElement relative to the page export function getBoundingBoxInPage(domElement: HTMLElement): { x: number; diff --git a/modules/test-utils/src/utils/resource-tracker.ts b/modules/test-utils/src/utils/resource-tracker.ts index a082845541..2e85af065d 100644 --- a/modules/test-utils/src/utils/resource-tracker.ts +++ b/modules/test-utils/src/utils/resource-tracker.ts @@ -1,3 +1,7 @@ +// luma.gl +// SPDX-License-Identifier: MIT +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors + /* global luma */ export function getResourceCounts() { // @ts-ignore diff --git a/modules/test-utils/test/index.ts b/modules/test-utils/test/index.ts index 3bfa597653..c5e52b0bcd 100644 --- a/modules/test-utils/test/index.ts +++ b/modules/test-utils/test/index.ts @@ -1,5 +1,5 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import './null-device/null-adapter.spec'; diff --git a/modules/test-utils/test/null-device/null-adapter.spec.ts b/modules/test-utils/test/null-device/null-adapter.spec.ts index 71c27a0071..8ec61c80d2 100644 --- a/modules/test-utils/test/null-device/null-adapter.spec.ts +++ b/modules/test-utils/test/null-device/null-adapter.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {expect, test} from 'vitest'; import {_refreshLostCachedTestDevice} from '../../src/create-test-device'; diff --git a/modules/text/src/experimental.ts b/modules/text/src/experimental.ts index fd58622697..d3eb2c2ad6 100644 --- a/modules/text/src/experimental.ts +++ b/modules/text/src/experimental.ts @@ -1,5 +1,5 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export * from './text-2d/experimental'; diff --git a/modules/text/src/fonts/index.ts b/modules/text/src/fonts/index.ts index d86c778ddd..c12155885d 100644 --- a/modules/text/src/fonts/index.ts +++ b/modules/text/src/fonts/index.ts @@ -1,5 +1,5 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export {helvetiker} from './helvetiker'; diff --git a/modules/text/src/index.ts b/modules/text/src/index.ts index 277c27bfa8..a599a03e5d 100644 --- a/modules/text/src/index.ts +++ b/modules/text/src/index.ts @@ -1,5 +1,5 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export * from './text-2d/index'; diff --git a/modules/text/src/text-2d/atlas/browser-font-atlas.ts b/modules/text/src/text-2d/atlas/browser-font-atlas.ts index 3148f4f3aa..bb9eefe095 100644 --- a/modules/text/src/text-2d/atlas/browser-font-atlas.ts +++ b/modules/text/src/text-2d/atlas/browser-font-atlas.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // Adapted from deck.gl text atlas utilities under the MIT License. /* global document, ImageData, OffscreenCanvas */ diff --git a/modules/text/src/text-2d/atlas/font-atlas.ts b/modules/text/src/text-2d/atlas/font-atlas.ts index 243a052b14..4b2fc42701 100644 --- a/modules/text/src/text-2d/atlas/font-atlas.ts +++ b/modules/text/src/text-2d/atlas/font-atlas.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ExternalImage} from '@luma.gl/core'; import type {CharacterMapping, TextKerning} from './text-utils'; diff --git a/modules/text/src/text-2d/atlas/lru-cache.ts b/modules/text/src/text-2d/atlas/lru-cache.ts index a32940731e..3c05812171 100644 --- a/modules/text/src/text-2d/atlas/lru-cache.ts +++ b/modules/text/src/text-2d/atlas/lru-cache.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** Minimal insertion-ordered LRU cache used by font atlas generation. */ export class LRUCache { diff --git a/modules/text/src/text-2d/atlas/text-glyph-walker.ts b/modules/text/src/text-2d/atlas/text-glyph-walker.ts index f8436be6b8..5af3cf5c3c 100644 --- a/modules/text/src/text-2d/atlas/text-glyph-walker.ts +++ b/modules/text/src/text-2d/atlas/text-glyph-walker.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {FontAtlas} from './font-atlas'; import { diff --git a/modules/text/src/text-2d/atlas/text-metrics.ts b/modules/text/src/text-2d/atlas/text-metrics.ts index ba86a52629..45e3359b96 100644 --- a/modules/text/src/text-2d/atlas/text-metrics.ts +++ b/modules/text/src/text-2d/atlas/text-metrics.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {FontAtlas} from './font-atlas'; import {walkTextGlyphs} from './text-glyph-walker'; diff --git a/modules/text/src/text-2d/atlas/text-utils.ts b/modules/text/src/text-2d/atlas/text-utils.ts index 699a95e2f6..233c3d3a86 100644 --- a/modules/text/src/text-2d/atlas/text-utils.ts +++ b/modules/text/src/text-2d/atlas/text-utils.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // Adapted from deck.gl TextLayer utilities under the MIT License. export type Character = { diff --git a/modules/text/src/text-2d/build-bitmap-font-atlas.ts b/modules/text/src/text-2d/build-bitmap-font-atlas.ts index d080140687..a171498997 100644 --- a/modules/text/src/text-2d/build-bitmap-font-atlas.ts +++ b/modules/text/src/text-2d/build-bitmap-font-atlas.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { buildBrowserFontAtlas, diff --git a/modules/text/src/text-2d/build-msdf-font-atlas.ts b/modules/text/src/text-2d/build-msdf-font-atlas.ts index 4ae87820dc..93e5cd2a13 100644 --- a/modules/text/src/text-2d/build-msdf-font-atlas.ts +++ b/modules/text/src/text-2d/build-msdf-font-atlas.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {getExternalImageSize, type ExternalImage} from '@luma.gl/core'; import {loadImageBitmap} from '@luma.gl/engine'; diff --git a/modules/text/src/text-2d/build-sdf-font-atlas.ts b/modules/text/src/text-2d/build-sdf-font-atlas.ts index 11d5870c89..e0a24e49f7 100644 --- a/modules/text/src/text-2d/build-sdf-font-atlas.ts +++ b/modules/text/src/text-2d/build-sdf-font-atlas.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /* global ImageData */ import TinySDF from '@mapbox/tiny-sdf'; diff --git a/modules/text/src/text-2d/experimental.ts b/modules/text/src/text-2d/experimental.ts index e1170c6cc9..67324ca059 100644 --- a/modules/text/src/text-2d/experimental.ts +++ b/modules/text/src/text-2d/experimental.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** Unstable text strategy APIs intended for diagnostics and benchmarks. */ export { diff --git a/modules/text/src/text-2d/gpu-text-data.ts b/modules/text/src/text-2d/gpu-text-data.ts index 256afb8094..e6f8b65897 100644 --- a/modules/text/src/text-2d/gpu-text-data.ts +++ b/modules/text/src/text-2d/gpu-text-data.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {TextAttributeRenderProps, TextAttributeState} from './models/text-attribute-model'; import type {TextStorageRenderProps} from './models/text-storage-model'; diff --git a/modules/text/src/text-2d/gpu-text-resources.ts b/modules/text/src/text-2d/gpu-text-resources.ts index 22590073bf..1cfe20c37a 100644 --- a/modules/text/src/text-2d/gpu-text-resources.ts +++ b/modules/text/src/text-2d/gpu-text-resources.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import {DynamicTexture} from '@luma.gl/engine'; diff --git a/modules/text/src/text-2d/index.ts b/modules/text/src/text-2d/index.ts index fc9fe1980c..2575d2f4a7 100644 --- a/modules/text/src/text-2d/index.ts +++ b/modules/text/src/text-2d/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export {type FontAtlas} from './atlas/font-atlas'; export { diff --git a/modules/text/src/text-2d/model-utils/gpu-text-expansion.ts b/modules/text/src/text-2d/model-utils/gpu-text-expansion.ts index a515205c71..d52adb8acf 100644 --- a/modules/text/src/text-2d/model-utils/gpu-text-expansion.ts +++ b/modules/text/src/text-2d/model-utils/gpu-text-expansion.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Device, type ShaderLayout} from '@luma.gl/core'; import {Computation} from '@luma.gl/engine'; diff --git a/modules/text/src/text-2d/model-utils/gpu-text-types.ts b/modules/text/src/text-2d/model-utils/gpu-text-types.ts index 759efc713b..0b8963b441 100644 --- a/modules/text/src/text-2d/model-utils/gpu-text-types.ts +++ b/modules/text/src/text-2d/model-utils/gpu-text-types.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** One-line glyph offsets and atlas frames expanded from source text rows. */ export type TextGlyphLayout = { diff --git a/modules/text/src/text-2d/model-utils/gpu-utf8-map.ts b/modules/text/src/text-2d/model-utils/gpu-utf8-map.ts index 9818b7878a..7959dc7892 100644 --- a/modules/text/src/text-2d/model-utils/gpu-utf8-map.ts +++ b/modules/text/src/text-2d/model-utils/gpu-utf8-map.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderLayout} from '@luma.gl/core'; diff --git a/modules/text/src/text-2d/model-utils/text-fragment-shaders.ts b/modules/text/src/text-2d/model-utils/text-fragment-shaders.ts index bcad195b86..cc2ecba96d 100644 --- a/modules/text/src/text-2d/model-utils/text-fragment-shaders.ts +++ b/modules/text/src/text-2d/model-utils/text-fragment-shaders.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export type TextGlyphAlphaShaderRenderMode = { expression: string; diff --git a/modules/text/src/text-2d/model-utils/text-fragment-uniforms.ts b/modules/text/src/text-2d/model-utils/text-fragment-uniforms.ts index a2ea1d1579..fc2b6effb6 100644 --- a/modules/text/src/text-2d/model-utils/text-fragment-uniforms.ts +++ b/modules/text/src/text-2d/model-utils/text-fragment-uniforms.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {FontAtlasRenderSettings} from '../atlas/font-atlas'; diff --git a/modules/text/src/text-2d/model-utils/text-layout.ts b/modules/text/src/text-2d/model-utils/text-layout.ts index 705f4e51ab..f205fe9ea2 100644 --- a/modules/text/src/text-2d/model-utils/text-layout.ts +++ b/modules/text/src/text-2d/model-utils/text-layout.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {FontAtlas} from '../atlas/font-atlas'; import {getCharacterAtlasPage, getCharacterLayoutOffset, type Character} from '../atlas/text-utils'; diff --git a/modules/text/src/text-2d/model-utils/text-model-props.ts b/modules/text/src/text-2d/model-utils/text-model-props.ts index fa163cae8f..a5780bfa33 100644 --- a/modules/text/src/text-2d/model-utils/text-model-props.ts +++ b/modules/text/src/text-2d/model-utils/text-model-props.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ModelProps} from '@luma.gl/engine'; import { diff --git a/modules/text/src/text-2d/model-utils/text-shaders.ts b/modules/text/src/text-2d/model-utils/text-shaders.ts index b58beebb0a..438a81e01e 100644 --- a/modules/text/src/text-2d/model-utils/text-shaders.ts +++ b/modules/text/src/text-2d/model-utils/text-shaders.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderLayout} from '@luma.gl/core'; import { diff --git a/modules/text/src/text-2d/model-utils/text-storage-model-draw.ts b/modules/text/src/text-2d/model-utils/text-storage-model-draw.ts index 1cc37f6b32..91481d9188 100644 --- a/modules/text/src/text-2d/model-utils/text-storage-model-draw.ts +++ b/modules/text/src/text-2d/model-utils/text-storage-model-draw.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {RenderPass} from '@luma.gl/core'; import type {Model} from '@luma.gl/engine'; diff --git a/modules/text/src/text-2d/model-utils/text-storage-model-utils.ts b/modules/text/src/text-2d/model-utils/text-storage-model-utils.ts index 304039d300..64feac5eb4 100644 --- a/modules/text/src/text-2d/model-utils/text-storage-model-utils.ts +++ b/modules/text/src/text-2d/model-utils/text-storage-model-utils.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type Device, type RenderPass} from '@luma.gl/core'; import {Model} from '@luma.gl/engine'; diff --git a/modules/text/src/text-2d/model-utils/text-storage-state.ts b/modules/text/src/text-2d/model-utils/text-storage-state.ts index 5a72a1d7c5..58b92e9ef5 100644 --- a/modules/text/src/text-2d/model-utils/text-storage-state.ts +++ b/modules/text/src/text-2d/model-utils/text-storage-state.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type Buffer} from '@luma.gl/core'; import {DynamicBuffer, DynamicTexture} from '@luma.gl/engine'; diff --git a/modules/text/src/text-2d/models/text-attribute-model.ts b/modules/text/src/text-2d/models/text-attribute-model.ts index 6436cd4470..5709714123 100644 --- a/modules/text/src/text-2d/models/text-attribute-model.ts +++ b/modules/text/src/text-2d/models/text-attribute-model.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type Buffer, type Device, type RenderPass} from '@luma.gl/core'; import type {DynamicTexture, ModelProps} from '@luma.gl/engine'; diff --git a/modules/text/src/text-2d/models/text-dictionary-model.ts b/modules/text/src/text-2d/models/text-dictionary-model.ts index 07d1ac5871..c9bd1b3cb8 100644 --- a/modules/text/src/text-2d/models/text-dictionary-model.ts +++ b/modules/text/src/text-2d/models/text-dictionary-model.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type Device, type RenderPass} from '@luma.gl/core'; import {Model, type ModelProps} from '@luma.gl/engine'; diff --git a/modules/text/src/text-2d/models/text-storage-model.ts b/modules/text/src/text-2d/models/text-storage-model.ts index 2edd79f41f..6b011ff4ee 100644 --- a/modules/text/src/text-2d/models/text-storage-model.ts +++ b/modules/text/src/text-2d/models/text-storage-model.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type Device, type RenderPass} from '@luma.gl/core'; import {Model, type ModelProps} from '@luma.gl/engine'; diff --git a/modules/text/src/text-2d/text-renderer.ts b/modules/text/src/text-2d/text-renderer.ts index 3f62e49830..ed9ead86c3 100644 --- a/modules/text/src/text-2d/text-renderer.ts +++ b/modules/text/src/text-2d/text-renderer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device, RenderPass} from '@luma.gl/core'; import {Model, type ModelProps} from '@luma.gl/engine'; diff --git a/modules/text/src/text-3d/extrude.ts b/modules/text/src/text-3d/extrude.ts index 5c832a470e..0be996f7b7 100644 --- a/modules/text/src/text-3d/extrude.ts +++ b/modules/text/src/text-3d/extrude.ts @@ -1,6 +1,7 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) three.js authors // Adapted from THREE.js ExtrudeGeometry (https://github.com/mrdoob/three.js/) under the MIT License. import {Vector2, Vector3} from '@math.gl/core'; diff --git a/modules/text/src/text-3d/font.ts b/modules/text/src/text-3d/font.ts index e6db87f14a..8e9eddc6bd 100644 --- a/modules/text/src/text-3d/font.ts +++ b/modules/text/src/text-3d/font.ts @@ -1,6 +1,7 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) three.js authors // Adapted from THREE.js FontLoader (https://github.com/mrdoob/three.js/) under the MIT License. import {Vector2} from '@math.gl/core'; diff --git a/modules/text/src/text-3d/glyph-atlas.ts b/modules/text/src/text-3d/glyph-atlas.ts index 3538c007f3..08a49fe2fa 100644 --- a/modules/text/src/text-3d/glyph-atlas.ts +++ b/modules/text/src/text-3d/glyph-atlas.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Geometry} from '@luma.gl/engine'; import {extrudeShapes, type ExtrudeOptions, type ExtrudedAttributes} from './extrude'; diff --git a/modules/text/src/text-3d/index.ts b/modules/text/src/text-3d/index.ts index 4a28066548..37ed76583b 100644 --- a/modules/text/src/text-3d/index.ts +++ b/modules/text/src/text-3d/index.ts @@ -1,6 +1,7 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) three.js authors // Adapted from THREE.js text utilities (https://github.com/mrdoob/three.js/) under the MIT License. export { diff --git a/modules/text/src/text-3d/paths/curve-path.ts b/modules/text/src/text-3d/paths/curve-path.ts index bc3a42d2be..d8d4c7c6fe 100644 --- a/modules/text/src/text-3d/paths/curve-path.ts +++ b/modules/text/src/text-3d/paths/curve-path.ts @@ -1,6 +1,7 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) three.js authors // Adapted from THREE.js CurvePath (https://github.com/mrdoob/three.js/) under the MIT License. import {Curve} from './curves'; diff --git a/modules/text/src/text-3d/paths/curves.ts b/modules/text/src/text-3d/paths/curves.ts index a2198758c1..64ab4fba31 100644 --- a/modules/text/src/text-3d/paths/curves.ts +++ b/modules/text/src/text-3d/paths/curves.ts @@ -1,6 +1,7 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) three.js authors // Adapted from THREE.js curve utilities (https://github.com/mrdoob/three.js/) under the MIT License. import {Vector2} from '@math.gl/core'; diff --git a/modules/text/src/text-3d/paths/path.ts b/modules/text/src/text-3d/paths/path.ts index 9460c3d780..2715ad21e0 100644 --- a/modules/text/src/text-3d/paths/path.ts +++ b/modules/text/src/text-3d/paths/path.ts @@ -1,6 +1,7 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) three.js authors // Adapted from THREE.js Path and Shape (https://github.com/mrdoob/three.js/) under the MIT License. import {Vector2} from '@math.gl/core'; diff --git a/modules/text/src/text-3d/paths/shape-path.ts b/modules/text/src/text-3d/paths/shape-path.ts index 31373b1d47..2172a5e60d 100644 --- a/modules/text/src/text-3d/paths/shape-path.ts +++ b/modules/text/src/text-3d/paths/shape-path.ts @@ -1,6 +1,7 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) three.js authors // Adapted from THREE.js ShapePath (https://github.com/mrdoob/three.js/) under the MIT License. import {Vector2} from '@math.gl/core'; diff --git a/modules/text/src/text-3d/paths/shape-utils.ts b/modules/text/src/text-3d/paths/shape-utils.ts index 4971443fce..214ea7e1bf 100644 --- a/modules/text/src/text-3d/paths/shape-utils.ts +++ b/modules/text/src/text-3d/paths/shape-utils.ts @@ -1,6 +1,7 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) three.js authors // Adapted from THREE.js ShapeUtils (https://github.com/mrdoob/three.js/) under the MIT License. import {earcut} from '@math.gl/polygon'; diff --git a/modules/text/src/text-3d/text-geometry.ts b/modules/text/src/text-3d/text-geometry.ts index afd68a7207..4449e0e618 100644 --- a/modules/text/src/text-3d/text-geometry.ts +++ b/modules/text/src/text-3d/text-geometry.ts @@ -1,6 +1,7 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) three.js authors // Adapted from THREE.js TextGeometry (https://github.com/mrdoob/three.js/) under the MIT License. // eslint-disable-next-line import/no-unresolved diff --git a/modules/text/test/index.ts b/modules/text/test/index.ts index 3e84bc8e7f..25608b81bc 100644 --- a/modules/text/test/index.ts +++ b/modules/text/test/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors process.on('unhandledRejection', reason => { // biome-ignore lint/suspicious/noConsole: test bootstrap reports fatal process-level failures. diff --git a/modules/text/test/text-2d/arrow-text.spec.ts b/modules/text/test/text-2d/arrow-text.spec.ts index c5e5157a4f..97b2c55ad3 100644 --- a/modules/text/test/text-2d/arrow-text.spec.ts +++ b/modules/text/test/text-2d/arrow-text.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import * as arrow from 'apache-arrow'; diff --git a/modules/text/test/text-2d/build-msdf-font-atlas.spec.ts b/modules/text/test/text-2d/build-msdf-font-atlas.spec.ts index 121a7fc619..0f16df887a 100644 --- a/modules/text/test/text-2d/build-msdf-font-atlas.spec.ts +++ b/modules/text/test/text-2d/build-msdf-font-atlas.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {isBrowser} from '@probe.gl/env'; diff --git a/modules/text/test/text-2d/convert-arrow-text-vectors.spec.ts b/modules/text/test/text-2d/convert-arrow-text-vectors.spec.ts index ea3dcb5fc1..8b08beb227 100644 --- a/modules/text/test/text-2d/convert-arrow-text-vectors.spec.ts +++ b/modules/text/test/text-2d/convert-arrow-text-vectors.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/text/test/text-2d/font-atlas-builders.spec.ts b/modules/text/test/text-2d/font-atlas-builders.spec.ts index b3a7c4539a..e6e16cc0ff 100644 --- a/modules/text/test/text-2d/font-atlas-builders.spec.ts +++ b/modules/text/test/text-2d/font-atlas-builders.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {isBrowser} from '@probe.gl/env'; diff --git a/modules/text/test/text-2d/gpu-utf8-map.node.spec.ts b/modules/text/test/text-2d/gpu-utf8-map.node.spec.ts index 02010a0223..67f4c781dd 100644 --- a/modules/text/test/text-2d/gpu-utf8-map.node.spec.ts +++ b/modules/text/test/text-2d/gpu-utf8-map.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/text/test/text-2d/text-layout.spec.ts b/modules/text/test/text-2d/text-layout.spec.ts index 11be4a6a8f..5a08383060 100644 --- a/modules/text/test/text-2d/text-layout.spec.ts +++ b/modules/text/test/text-2d/text-layout.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/text/test/text-2d/text-model-gpu-inputs.node.spec.ts b/modules/text/test/text-2d/text-model-gpu-inputs.node.spec.ts index 37735e871f..ee1126865e 100644 --- a/modules/text/test/text-2d/text-model-gpu-inputs.node.spec.ts +++ b/modules/text/test/text-2d/text-model-gpu-inputs.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer} from '@luma.gl/core'; diff --git a/modules/text/test/text-2d/text-utils.spec.ts b/modules/text/test/text-2d/text-utils.spec.ts index 88aebf4417..7eb939f558 100644 --- a/modules/text/test/text-2d/text-utils.spec.ts +++ b/modules/text/test/text-2d/text-utils.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {buildMapping, nextPowOfTwo} from '../../src/index'; diff --git a/modules/text/test/text-3d/data/simple-font.ts b/modules/text/test/text-3d/data/simple-font.ts index 2b4fb3d123..52135b313c 100644 --- a/modules/text/test/text-3d/data/simple-font.ts +++ b/modules/text/test/text-3d/data/simple-font.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // Adapted from THREE.js font data format. import {type TypefaceFontData} from '../../../src/text-3d/font'; diff --git a/modules/text/test/text-3d/paths.spec.ts b/modules/text/test/text-3d/paths.spec.ts index 7dc669067c..b37b48edd7 100644 --- a/modules/text/test/text-3d/paths.spec.ts +++ b/modules/text/test/text-3d/paths.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Vector2} from '@math.gl/core'; diff --git a/modules/text/test/text-3d/text-geometry.spec.ts b/modules/text/test/text-3d/text-geometry.spec.ts index d58c5cf5e3..e8dcbe0d0f 100644 --- a/modules/text/test/text-3d/text-geometry.spec.ts +++ b/modules/text/test/text-3d/text-geometry.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/webgl/src/adapter/converters/device-parameters.ts b/modules/webgl/src/adapter/converters/device-parameters.ts index 2676efefd1..eed13e474b 100644 --- a/modules/webgl/src/adapter/converters/device-parameters.ts +++ b/modules/webgl/src/adapter/converters/device-parameters.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {CompareFunction, StencilOperation, BlendOperation, BlendFactor} from '@luma.gl/core'; import {Device, log, Parameters, PolygonMode, ProvokingVertex} from '@luma.gl/core'; diff --git a/modules/webgl/src/adapter/converters/sampler-parameters.ts b/modules/webgl/src/adapter/converters/sampler-parameters.ts index 266ebd3795..7a2d657b4e 100644 --- a/modules/webgl/src/adapter/converters/sampler-parameters.ts +++ b/modules/webgl/src/adapter/converters/sampler-parameters.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // SAMPLER FILTERS import {SamplerProps} from '@luma.gl/core'; diff --git a/modules/webgl/src/adapter/converters/shader-formats.ts b/modules/webgl/src/adapter/converters/shader-formats.ts index e53cd1749a..d542c99f50 100644 --- a/modules/webgl/src/adapter/converters/shader-formats.ts +++ b/modules/webgl/src/adapter/converters/shader-formats.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {GL, GLDataType, GLPixelType} from '@luma.gl/webgl/constants'; import {SignedDataType} from '@luma.gl/core'; diff --git a/modules/webgl/src/adapter/converters/webgl-shadertypes.ts b/modules/webgl/src/adapter/converters/webgl-shadertypes.ts index 92d18f1df0..e0cdd3dff3 100644 --- a/modules/webgl/src/adapter/converters/webgl-shadertypes.ts +++ b/modules/webgl/src/adapter/converters/webgl-shadertypes.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {VariableShaderType, SignedDataType, VertexFormat, NormalizedDataType} from '@luma.gl/core'; import {GL, GLUniformType, GLSamplerType, GLDataType} from '@luma.gl/webgl/constants'; diff --git a/modules/webgl/src/adapter/converters/webgl-texture-table.ts b/modules/webgl/src/adapter/converters/webgl-texture-table.ts index d4bfd5188b..7196724551 100644 --- a/modules/webgl/src/adapter/converters/webgl-texture-table.ts +++ b/modules/webgl/src/adapter/converters/webgl-texture-table.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type { DeviceFeature, diff --git a/modules/webgl/src/adapter/converters/webgl-vertex-formats.ts b/modules/webgl/src/adapter/converters/webgl-vertex-formats.ts index a2039d2c79..ab7990b908 100644 --- a/modules/webgl/src/adapter/converters/webgl-vertex-formats.ts +++ b/modules/webgl/src/adapter/converters/webgl-vertex-formats.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {GL} from '@luma.gl/webgl/constants'; import {VertexFormat, NormalizedDataType} from '@luma.gl/core'; diff --git a/modules/webgl/src/adapter/device-helpers/webgl-device-features.ts b/modules/webgl/src/adapter/device-helpers/webgl-device-features.ts index 4389837b00..d50763a141 100644 --- a/modules/webgl/src/adapter/device-helpers/webgl-device-features.ts +++ b/modules/webgl/src/adapter/device-helpers/webgl-device-features.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // Feature detection for WebGL // Provides a function that enables simple checking of which WebGL features are diff --git a/modules/webgl/src/adapter/device-helpers/webgl-device-info.ts b/modules/webgl/src/adapter/device-helpers/webgl-device-info.ts index d30abd34aa..e454d1533f 100644 --- a/modules/webgl/src/adapter/device-helpers/webgl-device-info.ts +++ b/modules/webgl/src/adapter/device-helpers/webgl-device-info.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {DeviceInfo} from '@luma.gl/core'; import {GL, GLExtensions} from '@luma.gl/webgl/constants'; diff --git a/modules/webgl/src/adapter/device-helpers/webgl-device-limits.ts b/modules/webgl/src/adapter/device-helpers/webgl-device-limits.ts index aa217b0f98..057edc8d29 100644 --- a/modules/webgl/src/adapter/device-helpers/webgl-device-limits.ts +++ b/modules/webgl/src/adapter/device-helpers/webgl-device-limits.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {DeviceLimits} from '@luma.gl/core'; import {GL} from '@luma.gl/webgl/constants'; diff --git a/modules/webgl/src/adapter/helpers/format-utils.ts b/modules/webgl/src/adapter/helpers/format-utils.ts index a26d0e3774..b8ebabe49d 100644 --- a/modules/webgl/src/adapter/helpers/format-utils.ts +++ b/modules/webgl/src/adapter/helpers/format-utils.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {GL} from '@luma.gl/webgl/constants'; diff --git a/modules/webgl/src/adapter/helpers/get-shader-layout-from-glsl.ts b/modules/webgl/src/adapter/helpers/get-shader-layout-from-glsl.ts index 7bbac178df..4b45ca16c3 100644 --- a/modules/webgl/src/adapter/helpers/get-shader-layout-from-glsl.ts +++ b/modules/webgl/src/adapter/helpers/get-shader-layout-from-glsl.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type { ShaderLayout, diff --git a/modules/webgl/src/adapter/helpers/parse-shader-compiler-log.ts b/modules/webgl/src/adapter/helpers/parse-shader-compiler-log.ts index 8c8b1bd0c8..0acd5a23cf 100644 --- a/modules/webgl/src/adapter/helpers/parse-shader-compiler-log.ts +++ b/modules/webgl/src/adapter/helpers/parse-shader-compiler-log.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {type CompilerMessage} from '@luma.gl/core'; diff --git a/modules/webgl/src/adapter/helpers/set-uniform.ts b/modules/webgl/src/adapter/helpers/set-uniform.ts index b19041bc60..698751a5bc 100644 --- a/modules/webgl/src/adapter/helpers/set-uniform.ts +++ b/modules/webgl/src/adapter/helpers/set-uniform.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /* eslint-disable */ diff --git a/modules/webgl/src/adapter/helpers/webgl-texture-utils.ts b/modules/webgl/src/adapter/helpers/webgl-texture-utils.ts index b914da73a4..cdcbb0dbb6 100644 --- a/modules/webgl/src/adapter/helpers/webgl-texture-utils.ts +++ b/modules/webgl/src/adapter/helpers/webgl-texture-utils.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // @ts-nocheck This file will be deleted in upcoming refactor diff --git a/modules/webgl/src/adapter/helpers/webgl-topology-utils.ts b/modules/webgl/src/adapter/helpers/webgl-topology-utils.ts index cda89fc667..e0e1d4a0c2 100644 --- a/modules/webgl/src/adapter/helpers/webgl-topology-utils.ts +++ b/modules/webgl/src/adapter/helpers/webgl-topology-utils.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {GL, GLPrimitiveTopology, GLPrimitive} from '@luma.gl/webgl/constants'; import {PrimitiveTopology} from '@luma.gl/core'; diff --git a/modules/webgl/src/adapter/resources/webgl-buffer.ts b/modules/webgl/src/adapter/resources/webgl-buffer.ts index 965b41427c..71d3a115e3 100644 --- a/modules/webgl/src/adapter/resources/webgl-buffer.ts +++ b/modules/webgl/src/adapter/resources/webgl-buffer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {BufferMapCallback, BufferProps} from '@luma.gl/core'; import {Buffer} from '@luma.gl/core'; diff --git a/modules/webgl/src/adapter/resources/webgl-command-buffer.ts b/modules/webgl/src/adapter/resources/webgl-command-buffer.ts index 4c02b216b8..0572b60ceb 100644 --- a/modules/webgl/src/adapter/resources/webgl-command-buffer.ts +++ b/modules/webgl/src/adapter/resources/webgl-command-buffer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { type ResourceProps, diff --git a/modules/webgl/src/adapter/resources/webgl-command-encoder.ts b/modules/webgl/src/adapter/resources/webgl-command-encoder.ts index 59ae1ad558..bc70c28fc4 100644 --- a/modules/webgl/src/adapter/resources/webgl-command-encoder.ts +++ b/modules/webgl/src/adapter/resources/webgl-command-encoder.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {CommandEncoder, CommandEncoderProps} from '@luma.gl/core'; import type { diff --git a/modules/webgl/src/adapter/resources/webgl-fence.ts b/modules/webgl/src/adapter/resources/webgl-fence.ts index f697d2d08c..f44b30ea4d 100644 --- a/modules/webgl/src/adapter/resources/webgl-fence.ts +++ b/modules/webgl/src/adapter/resources/webgl-fence.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Fence, type FenceProps} from '@luma.gl/core'; import {WebGLDevice} from '../webgl-device'; diff --git a/modules/webgl/src/adapter/resources/webgl-framebuffer.ts b/modules/webgl/src/adapter/resources/webgl-framebuffer.ts index a4c6b0ee64..af0103b759 100644 --- a/modules/webgl/src/adapter/resources/webgl-framebuffer.ts +++ b/modules/webgl/src/adapter/resources/webgl-framebuffer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {FramebufferProps} from '@luma.gl/core'; import {Framebuffer} from '@luma.gl/core'; diff --git a/modules/webgl/src/adapter/resources/webgl-query-set.ts b/modules/webgl/src/adapter/resources/webgl-query-set.ts index f3f20349db..0858c402c5 100644 --- a/modules/webgl/src/adapter/resources/webgl-query-set.ts +++ b/modules/webgl/src/adapter/resources/webgl-query-set.ts @@ -1,3 +1,7 @@ +// luma.gl +// SPDX-License-Identifier: MIT +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors + // WebGL2 QuerySet (also handles disjoint timer extensions) import {QuerySet, QuerySetProps} from '@luma.gl/core'; import {GL} from '@luma.gl/webgl/constants'; diff --git a/modules/webgl/src/adapter/resources/webgl-render-pass.ts b/modules/webgl/src/adapter/resources/webgl-render-pass.ts index de37fa1e9e..3c096e4f04 100644 --- a/modules/webgl/src/adapter/resources/webgl-render-pass.ts +++ b/modules/webgl/src/adapter/resources/webgl-render-pass.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {NumericArray, NumberArray4} from '@math.gl/types'; import type { diff --git a/modules/webgl/src/adapter/resources/webgl-render-pipeline.ts b/modules/webgl/src/adapter/resources/webgl-render-pipeline.ts index 10388f1c81..11224a7b92 100644 --- a/modules/webgl/src/adapter/resources/webgl-render-pipeline.ts +++ b/modules/webgl/src/adapter/resources/webgl-render-pipeline.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type { RenderPipelineProps, diff --git a/modules/webgl/src/adapter/resources/webgl-sampler.ts b/modules/webgl/src/adapter/resources/webgl-sampler.ts index a3c482ea29..a25bffe147 100644 --- a/modules/webgl/src/adapter/resources/webgl-sampler.ts +++ b/modules/webgl/src/adapter/resources/webgl-sampler.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Sampler, SamplerProps} from '@luma.gl/core'; import {GL, GLSamplerParameters} from '@luma.gl/webgl/constants'; diff --git a/modules/webgl/src/adapter/resources/webgl-shader.ts b/modules/webgl/src/adapter/resources/webgl-shader.ts index 04fd849346..a2063c2ea9 100644 --- a/modules/webgl/src/adapter/resources/webgl-shader.ts +++ b/modules/webgl/src/adapter/resources/webgl-shader.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Shader, ShaderProps, CompilerMessage, log} from '@luma.gl/core'; import {GL} from '@luma.gl/webgl/constants'; diff --git a/modules/webgl/src/adapter/resources/webgl-shared-render-pipeline.ts b/modules/webgl/src/adapter/resources/webgl-shared-render-pipeline.ts index 5c1bbba9d9..f220bcf1f1 100644 --- a/modules/webgl/src/adapter/resources/webgl-shared-render-pipeline.ts +++ b/modules/webgl/src/adapter/resources/webgl-shared-render-pipeline.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {GL} from '@luma.gl/webgl/constants'; import { diff --git a/modules/webgl/src/adapter/resources/webgl-texture-view.ts b/modules/webgl/src/adapter/resources/webgl-texture-view.ts index 106621ac4e..22df648968 100644 --- a/modules/webgl/src/adapter/resources/webgl-texture-view.ts +++ b/modules/webgl/src/adapter/resources/webgl-texture-view.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device, TextureViewProps} from '@luma.gl/core'; // import {getTextureFormatInfo} from '@luma.gl/core'; diff --git a/modules/webgl/src/adapter/resources/webgl-texture.ts b/modules/webgl/src/adapter/resources/webgl-texture.ts index 10e4fbcd40..0fb6d3ade2 100644 --- a/modules/webgl/src/adapter/resources/webgl-texture.ts +++ b/modules/webgl/src/adapter/resources/webgl-texture.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // @ts-nocheck diff --git a/modules/webgl/src/adapter/resources/webgl-transform-feedback.ts b/modules/webgl/src/adapter/resources/webgl-transform-feedback.ts index 9aca1f4fca..d5ecb9c1e0 100644 --- a/modules/webgl/src/adapter/resources/webgl-transform-feedback.ts +++ b/modules/webgl/src/adapter/resources/webgl-transform-feedback.ts @@ -1,3 +1,7 @@ +// luma.gl +// SPDX-License-Identifier: MIT +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors + import type {PrimitiveTopology, ShaderLayout, TransformFeedbackProps} from '@luma.gl/core'; import {log, TransformFeedback, Buffer, BufferRange} from '@luma.gl/core'; import {GL} from '@luma.gl/webgl/constants'; diff --git a/modules/webgl/src/adapter/resources/webgl-vertex-array.ts b/modules/webgl/src/adapter/resources/webgl-vertex-array.ts index a2486e91d4..64f8767a13 100644 --- a/modules/webgl/src/adapter/resources/webgl-vertex-array.ts +++ b/modules/webgl/src/adapter/resources/webgl-vertex-array.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {TypedArray, NumericArray} from '@math.gl/types'; import type {AttributeInfo, Device, Buffer, VertexArrayProps} from '@luma.gl/core'; diff --git a/modules/webgl/src/adapter/webgl-adapter.ts b/modules/webgl/src/adapter/webgl-adapter.ts index 6ef598bf2c..deada736be 100644 --- a/modules/webgl/src/adapter/webgl-adapter.ts +++ b/modules/webgl/src/adapter/webgl-adapter.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {WebGLDevice} from './webgl-device'; import {Adapter, Device, DeviceProps, log} from '@luma.gl/core'; diff --git a/modules/webgl/src/adapter/webgl-canvas-context.ts b/modules/webgl/src/adapter/webgl-canvas-context.ts index 74149dff84..fda5102aab 100644 --- a/modules/webgl/src/adapter/webgl-canvas-context.ts +++ b/modules/webgl/src/adapter/webgl-canvas-context.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {CanvasContextProps} from '@luma.gl/core'; import {CanvasContext} from '@luma.gl/core'; diff --git a/modules/webgl/src/adapter/webgl-device.ts b/modules/webgl/src/adapter/webgl-device.ts index d8a537286d..32b9386ab8 100644 --- a/modules/webgl/src/adapter/webgl-device.ts +++ b/modules/webgl/src/adapter/webgl-device.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {TypedArray} from '@math.gl/types'; import type { diff --git a/modules/webgl/src/adapter/webgl-presentation-context.ts b/modules/webgl/src/adapter/webgl-presentation-context.ts index be8a13eafa..feae0a2638 100644 --- a/modules/webgl/src/adapter/webgl-presentation-context.ts +++ b/modules/webgl/src/adapter/webgl-presentation-context.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {PresentationContextProps, TextureFormatDepthStencil, Framebuffer} from '@luma.gl/core'; import {PresentationContext} from '@luma.gl/core'; diff --git a/modules/webgl/src/constants/index.ts b/modules/webgl/src/constants/index.ts index 3becf53cb4..5e7a22adf4 100644 --- a/modules/webgl/src/constants/index.ts +++ b/modules/webgl/src/constants/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export {GL} from './webgl-constants'; diff --git a/modules/webgl/src/constants/webgl-constants.ts b/modules/webgl/src/constants/webgl-constants.ts index 9c082e3735..6ba0e4b939 100644 --- a/modules/webgl/src/constants/webgl-constants.ts +++ b/modules/webgl/src/constants/webgl-constants.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /* eslint-disable key-spacing, max-len, no-inline-comments, camelcase */ diff --git a/modules/webgl/src/constants/webgl-types.ts b/modules/webgl/src/constants/webgl-types.ts index dca38b2db6..acd7a07055 100644 --- a/modules/webgl/src/constants/webgl-types.ts +++ b/modules/webgl/src/constants/webgl-types.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /* eslint-disable camelcase */ import {GL} from './webgl-constants'; diff --git a/modules/webgl/src/context/debug/debug-hooks.ts b/modules/webgl/src/context/debug/debug-hooks.ts index 1e920c937f..f9a694201f 100644 --- a/modules/webgl/src/context/debug/debug-hooks.ts +++ b/modules/webgl/src/context/debug/debug-hooks.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {DeviceProps} from '@luma.gl/core'; import {log} from '@luma.gl/core'; diff --git a/modules/webgl/src/context/debug/spector.ts b/modules/webgl/src/context/debug/spector.ts index 21a3176026..43a3013571 100644 --- a/modules/webgl/src/context/debug/spector.ts +++ b/modules/webgl/src/context/debug/spector.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {log} from '@luma.gl/core'; import {loadScript} from '../../utils/load-script'; diff --git a/modules/webgl/src/context/debug/webgl-developer-tools.ts b/modules/webgl/src/context/debug/webgl-developer-tools.ts index d0ada4d849..46b42de4d8 100644 --- a/modules/webgl/src/context/debug/webgl-developer-tools.ts +++ b/modules/webgl/src/context/debug/webgl-developer-tools.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {log} from '@luma.gl/core'; // Rename constant to prevent inlining. We need the full set of constants for generating debug strings. diff --git a/modules/webgl/src/context/helpers/create-browser-context.ts b/modules/webgl/src/context/helpers/create-browser-context.ts index 4eaa56bb18..466b60fcea 100644 --- a/modules/webgl/src/context/helpers/create-browser-context.ts +++ b/modules/webgl/src/context/helpers/create-browser-context.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {getWebGLContextData} from './webgl-context-data'; diff --git a/modules/webgl/src/context/helpers/webgl-context-data.ts b/modules/webgl/src/context/helpers/webgl-context-data.ts index 5cd249e785..bb16e03231 100644 --- a/modules/webgl/src/context/helpers/webgl-context-data.ts +++ b/modules/webgl/src/context/helpers/webgl-context-data.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {GLExtensions} from '@luma.gl/webgl/constants'; diff --git a/modules/webgl/src/context/helpers/webgl-extensions.ts b/modules/webgl/src/context/helpers/webgl-extensions.ts index ca1393660a..bf9cdf7c40 100644 --- a/modules/webgl/src/context/helpers/webgl-extensions.ts +++ b/modules/webgl/src/context/helpers/webgl-extensions.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {GLExtensions} from '@luma.gl/webgl/constants'; diff --git a/modules/webgl/src/context/parameters/unified-parameter-api.ts b/modules/webgl/src/context/parameters/unified-parameter-api.ts index 7e290163f4..63583f845e 100644 --- a/modules/webgl/src/context/parameters/unified-parameter-api.ts +++ b/modules/webgl/src/context/parameters/unified-parameter-api.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // Provides a unified API for getting and setting any WebGL parameter // Also knows default values of all parameters, enabling fast cache initialization diff --git a/modules/webgl/src/context/parameters/webgl-parameter-tables.ts b/modules/webgl/src/context/parameters/webgl-parameter-tables.ts index 46127d52ec..019c175103 100644 --- a/modules/webgl/src/context/parameters/webgl-parameter-tables.ts +++ b/modules/webgl/src/context/parameters/webgl-parameter-tables.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // @ts-nocheck TODO fix diff --git a/modules/webgl/src/context/polyfills/polyfill-webgl1-extensions.ts b/modules/webgl/src/context/polyfills/polyfill-webgl1-extensions.ts index fbffa5749f..c59cd80625 100644 --- a/modules/webgl/src/context/polyfills/polyfill-webgl1-extensions.ts +++ b/modules/webgl/src/context/polyfills/polyfill-webgl1-extensions.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // Goal is to make WebGL2 contexts look like WebGL1 // @note Partly inspired by with some older code from the `regl` library diff --git a/modules/webgl/src/context/state-tracker/deep-array-equal.ts b/modules/webgl/src/context/state-tracker/deep-array-equal.ts index 7721bcdc1b..f8983c7642 100644 --- a/modules/webgl/src/context/state-tracker/deep-array-equal.ts +++ b/modules/webgl/src/context/state-tracker/deep-array-equal.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {TypedArray} from '@luma.gl/core'; diff --git a/modules/webgl/src/context/state-tracker/webgl-state-tracker.ts b/modules/webgl/src/context/state-tracker/webgl-state-tracker.ts index fc050738c7..803c495dcc 100644 --- a/modules/webgl/src/context/state-tracker/webgl-state-tracker.ts +++ b/modules/webgl/src/context/state-tracker/webgl-state-tracker.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // @ts-nocheck TODO - fix diff --git a/modules/webgl/src/context/state-tracker/with-parameters.ts b/modules/webgl/src/context/state-tracker/with-parameters.ts index 605f5c7004..5a5439447e 100644 --- a/modules/webgl/src/context/state-tracker/with-parameters.ts +++ b/modules/webgl/src/context/state-tracker/with-parameters.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {GLParameters, setGLParameters} from '../parameters/unified-parameter-api'; import {WebGLStateTracker} from './webgl-state-tracker'; diff --git a/modules/webgl/src/debug.ts b/modules/webgl/src/debug.ts index 0c998fe5c2..c630cf3ba2 100644 --- a/modules/webgl/src/debug.ts +++ b/modules/webgl/src/debug.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export { loadWebGLDeveloperTools, diff --git a/modules/webgl/src/index.ts b/modules/webgl/src/index.ts index 19c7d7bf96..e38595b6f1 100644 --- a/modules/webgl/src/index.ts +++ b/modules/webgl/src/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // luma.gl Base WebGL wrapper library // Provides simple class/function wrappers around the low level webgl objects diff --git a/modules/webgl/src/utils/fill-array.ts b/modules/webgl/src/utils/fill-array.ts index 5c47fb58cb..90975a0658 100644 --- a/modules/webgl/src/utils/fill-array.ts +++ b/modules/webgl/src/utils/fill-array.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {NumericArray} from '@math.gl/types'; diff --git a/modules/webgl/src/utils/load-script.ts b/modules/webgl/src/utils/load-script.ts index 992e8c0568..c517b80f1c 100644 --- a/modules/webgl/src/utils/load-script.ts +++ b/modules/webgl/src/utils/load-script.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** * Load a script (identified by an url). When the url returns, the diff --git a/modules/webgl/src/utils/uid.ts b/modules/webgl/src/utils/uid.ts index 74bdb6fe76..941cc07903 100644 --- a/modules/webgl/src/utils/uid.ts +++ b/modules/webgl/src/utils/uid.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors const uidCounters: Record = {}; diff --git a/modules/webgl/src/webgl-constants.ts b/modules/webgl/src/webgl-constants.ts index db25c89671..549c28ee9c 100644 --- a/modules/webgl/src/webgl-constants.ts +++ b/modules/webgl/src/webgl-constants.ts @@ -1,5 +1,5 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export {GL} from './constants/webgl-constants'; diff --git a/modules/webgl/src/webgl-types.ts b/modules/webgl/src/webgl-types.ts index a2ad9568b1..3d8afafe63 100644 --- a/modules/webgl/src/webgl-types.ts +++ b/modules/webgl/src/webgl-types.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors export type { GLTextureTarget, diff --git a/modules/webgl/test/adapter/device-helpers/set-device-parameters.spec.ts b/modules/webgl/test/adapter/device-helpers/set-device-parameters.spec.ts index bb27b1ea19..9fc391f732 100644 --- a/modules/webgl/test/adapter/device-helpers/set-device-parameters.spec.ts +++ b/modules/webgl/test/adapter/device-helpers/set-device-parameters.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getWebGLTestDevice} from '@luma.gl/test-utils'; diff --git a/modules/webgl/test/adapter/device-helpers/webgl-device-info.spec.ts b/modules/webgl/test/adapter/device-helpers/webgl-device-info.spec.ts index 07c39bcf90..0a96df62bc 100644 --- a/modules/webgl/test/adapter/device-helpers/webgl-device-info.spec.ts +++ b/modules/webgl/test/adapter/device-helpers/webgl-device-info.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {GL} from '@luma.gl/webgl/constants'; diff --git a/modules/webgl/test/adapter/helpers/get-shader-layout.spec.ts b/modules/webgl/test/adapter/helpers/get-shader-layout.spec.ts index 1530d3d877..5a1b941239 100644 --- a/modules/webgl/test/adapter/helpers/get-shader-layout.spec.ts +++ b/modules/webgl/test/adapter/helpers/get-shader-layout.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /* import test from 'test/utils/vitest-tape'; diff --git a/modules/webgl/test/adapter/helpers/parse-shader-compiler-log.node.spec.ts b/modules/webgl/test/adapter/helpers/parse-shader-compiler-log.node.spec.ts index 6a1e6ff5f7..0cf767f6fc 100644 --- a/modules/webgl/test/adapter/helpers/parse-shader-compiler-log.node.spec.ts +++ b/modules/webgl/test/adapter/helpers/parse-shader-compiler-log.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerParseShaderCompilerLogTests} from 'test/utils/parse-shader-compiler-log.spec.shared'; diff --git a/modules/webgl/test/adapter/helpers/parse-shader-compiler-log.spec.ts b/modules/webgl/test/adapter/helpers/parse-shader-compiler-log.spec.ts index 6a1e6ff5f7..0cf767f6fc 100644 --- a/modules/webgl/test/adapter/helpers/parse-shader-compiler-log.spec.ts +++ b/modules/webgl/test/adapter/helpers/parse-shader-compiler-log.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerParseShaderCompilerLogTests} from 'test/utils/parse-shader-compiler-log.spec.shared'; diff --git a/modules/webgl/test/adapter/helpers/webgl-texture-table.spec.ts b/modules/webgl/test/adapter/helpers/webgl-texture-table.spec.ts index 56d923792f..036001842b 100644 --- a/modules/webgl/test/adapter/helpers/webgl-texture-table.spec.ts +++ b/modules/webgl/test/adapter/helpers/webgl-texture-table.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; diff --git a/modules/webgl/test/adapter/helpers/webgl-topology-utils.node.spec.ts b/modules/webgl/test/adapter/helpers/webgl-topology-utils.node.spec.ts index 7081c1b122..b3e57fe618 100644 --- a/modules/webgl/test/adapter/helpers/webgl-topology-utils.node.spec.ts +++ b/modules/webgl/test/adapter/helpers/webgl-topology-utils.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerWebGLTopologyUtilsTests} from './webgl-topology-utils.spec.shared'; diff --git a/modules/webgl/test/adapter/helpers/webgl-topology-utils.spec.shared.ts b/modules/webgl/test/adapter/helpers/webgl-topology-utils.spec.shared.ts index 4c62d1df5e..dd3b8c03f6 100644 --- a/modules/webgl/test/adapter/helpers/webgl-topology-utils.spec.shared.ts +++ b/modules/webgl/test/adapter/helpers/webgl-topology-utils.spec.shared.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {GL} from '@luma.gl/webgl/constants'; import { diff --git a/modules/webgl/test/adapter/helpers/webgl-topology-utils.spec.ts b/modules/webgl/test/adapter/helpers/webgl-topology-utils.spec.ts index 7081c1b122..b3e57fe618 100644 --- a/modules/webgl/test/adapter/helpers/webgl-topology-utils.spec.ts +++ b/modules/webgl/test/adapter/helpers/webgl-topology-utils.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {registerWebGLTopologyUtilsTests} from './webgl-topology-utils.spec.shared'; diff --git a/modules/webgl/test/adapter/resources/webgl-render-pass.spec.ts b/modules/webgl/test/adapter/resources/webgl-render-pass.spec.ts index 244249f103..16988cfa61 100644 --- a/modules/webgl/test/adapter/resources/webgl-render-pass.spec.ts +++ b/modules/webgl/test/adapter/resources/webgl-render-pass.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; diff --git a/modules/webgl/test/adapter/resources/webgl-render-pipeline.spec.ts b/modules/webgl/test/adapter/resources/webgl-render-pipeline.spec.ts index 9ff78a257b..be97ebf377 100644 --- a/modules/webgl/test/adapter/resources/webgl-render-pipeline.spec.ts +++ b/modules/webgl/test/adapter/resources/webgl-render-pipeline.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; diff --git a/modules/webgl/test/adapter/resources/webgl-texture.spec.ts b/modules/webgl/test/adapter/resources/webgl-texture.spec.ts index e56d8912b5..80c5b90c5d 100644 --- a/modules/webgl/test/adapter/resources/webgl-texture.spec.ts +++ b/modules/webgl/test/adapter/resources/webgl-texture.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getWebGLTestDevice} from '@luma.gl/test-utils'; diff --git a/modules/webgl/test/adapter/resources/webgl-transform-feedback.spec.ts b/modules/webgl/test/adapter/resources/webgl-transform-feedback.spec.ts index 440415f2e0..084d031ca7 100644 --- a/modules/webgl/test/adapter/resources/webgl-transform-feedback.spec.ts +++ b/modules/webgl/test/adapter/resources/webgl-transform-feedback.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getWebGLTestDevice} from '@luma.gl/test-utils'; diff --git a/modules/webgl/test/adapter/resources/webgl-vertex-array.spec.ts b/modules/webgl/test/adapter/resources/webgl-vertex-array.spec.ts index 277b346283..14ab3c1896 100644 --- a/modules/webgl/test/adapter/resources/webgl-vertex-array.spec.ts +++ b/modules/webgl/test/adapter/resources/webgl-vertex-array.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getWebGLTestDevice} from '@luma.gl/test-utils'; diff --git a/modules/webgl/test/adapter/webgl-adapter.spec.ts b/modules/webgl/test/adapter/webgl-adapter.spec.ts index 9426f381b7..343e0bccc3 100644 --- a/modules/webgl/test/adapter/webgl-adapter.spec.ts +++ b/modules/webgl/test/adapter/webgl-adapter.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; diff --git a/modules/webgl/test/adapter/webgl-canvas-context.spec.ts b/modules/webgl/test/adapter/webgl-canvas-context.spec.ts index 6f94c0f710..b43627803c 100644 --- a/modules/webgl/test/adapter/webgl-canvas-context.spec.ts +++ b/modules/webgl/test/adapter/webgl-canvas-context.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getWebGLTestDevice, getWebGPUTestDevice} from '@luma.gl/test-utils'; diff --git a/modules/webgl/test/adapter/webgl-device.spec.ts b/modules/webgl/test/adapter/webgl-device.spec.ts index 7dfca10a04..595e93afdc 100644 --- a/modules/webgl/test/adapter/webgl-device.spec.ts +++ b/modules/webgl/test/adapter/webgl-device.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {webgl2Adapter} from '@luma.gl/webgl'; diff --git a/modules/webgl/test/adapter/webgl-presentation-context.spec.ts b/modules/webgl/test/adapter/webgl-presentation-context.spec.ts index cd2785ff19..0d0ef75e46 100644 --- a/modules/webgl/test/adapter/webgl-presentation-context.spec.ts +++ b/modules/webgl/test/adapter/webgl-presentation-context.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; diff --git a/modules/webgl/test/context/create-browser-context.spec.ts b/modules/webgl/test/context/create-browser-context.spec.ts index cca0de09b3..88e5f9f56f 100644 --- a/modules/webgl/test/context/create-browser-context.spec.ts +++ b/modules/webgl/test/context/create-browser-context.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {createBrowserContext} from '@luma.gl/webgl/context/helpers/create-browser-context'; diff --git a/modules/webgl/test/context/debug-bundle.node.spec.ts b/modules/webgl/test/context/debug-bundle.node.spec.ts index 1644a3af88..0760867f84 100644 --- a/modules/webgl/test/context/debug-bundle.node.spec.ts +++ b/modules/webgl/test/context/debug-bundle.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {resolve} from 'node:path'; import esbuild from 'esbuild'; diff --git a/modules/webgl/test/context/state-tracker/context-state.spec.ts b/modules/webgl/test/context/state-tracker/context-state.spec.ts index 5f75f57616..1501f063e8 100644 --- a/modules/webgl/test/context/state-tracker/context-state.spec.ts +++ b/modules/webgl/test/context/state-tracker/context-state.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getWebGLTestDevice} from '@luma.gl/test-utils'; diff --git a/modules/webgl/test/context/state-tracker/data/sample-enum-settings.ts b/modules/webgl/test/context/state-tracker/data/sample-enum-settings.ts index 532e917b72..6d2f851c34 100644 --- a/modules/webgl/test/context/state-tracker/data/sample-enum-settings.ts +++ b/modules/webgl/test/context/state-tracker/data/sample-enum-settings.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {GLParameters} from '@luma.gl/webgl/constants'; import {GL} from '@luma.gl/webgl/constants'; diff --git a/modules/webgl/test/context/state-tracker/deep-array-equal.spec.ts b/modules/webgl/test/context/state-tracker/deep-array-equal.spec.ts index 7f38a829a4..b99ddf9553 100644 --- a/modules/webgl/test/context/state-tracker/deep-array-equal.spec.ts +++ b/modules/webgl/test/context/state-tracker/deep-array-equal.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {deepArrayEqual} from '@luma.gl/webgl/context/state-tracker/deep-array-equal'; diff --git a/modules/webgl/test/context/state-tracker/set-parameters.spec.ts b/modules/webgl/test/context/state-tracker/set-parameters.spec.ts index 75ecfbf06c..390f1d25a2 100644 --- a/modules/webgl/test/context/state-tracker/set-parameters.spec.ts +++ b/modules/webgl/test/context/state-tracker/set-parameters.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {getWebGLTestDevice} from '@luma.gl/test-utils'; diff --git a/modules/webgl/test/context/state-tracker/webgl-state-tracker.spec.ts b/modules/webgl/test/context/state-tracker/webgl-state-tracker.spec.ts index 66b08b160c..c16f74a143 100644 --- a/modules/webgl/test/context/state-tracker/webgl-state-tracker.spec.ts +++ b/modules/webgl/test/context/state-tracker/webgl-state-tracker.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/webgl/test/index.ts b/modules/webgl/test/index.ts index 7373b6dcfb..18a6f82f5b 100644 --- a/modules/webgl/test/index.ts +++ b/modules/webgl/test/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // utils import './utils/fill-array.spec'; diff --git a/modules/webgl/test/utils/fill-array.spec.ts b/modules/webgl/test/utils/fill-array.spec.ts index b962bb2bf4..b9a6e371f5 100644 --- a/modules/webgl/test/utils/fill-array.spec.ts +++ b/modules/webgl/test/utils/fill-array.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {fillArray} from '@luma.gl/webgl/utils/fill-array'; diff --git a/modules/webgpu/src/adapter/helpers/convert-texture-format.ts b/modules/webgpu/src/adapter/helpers/convert-texture-format.ts index d0fbb9202d..8d500f5d60 100644 --- a/modules/webgpu/src/adapter/helpers/convert-texture-format.ts +++ b/modules/webgpu/src/adapter/helpers/convert-texture-format.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {TextureFormat} from '@luma.gl/core'; diff --git a/modules/webgpu/src/adapter/helpers/cpu-hotspot-profiler.ts b/modules/webgpu/src/adapter/helpers/cpu-hotspot-profiler.ts index c6720f40ba..d8b29dc02c 100644 --- a/modules/webgpu/src/adapter/helpers/cpu-hotspot-profiler.ts +++ b/modules/webgpu/src/adapter/helpers/cpu-hotspot-profiler.ts @@ -1,3 +1,7 @@ +// luma.gl +// SPDX-License-Identifier: MIT +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors + /** * Internal WebGPU CPU hotspot profiler helpers. * diff --git a/modules/webgpu/src/adapter/helpers/generate-mipmaps-webgpu.ts b/modules/webgpu/src/adapter/helpers/generate-mipmaps-webgpu.ts index 02a6c41ee5..623db2d5ce 100644 --- a/modules/webgpu/src/adapter/helpers/generate-mipmaps-webgpu.ts +++ b/modules/webgpu/src/adapter/helpers/generate-mipmaps-webgpu.ts @@ -1,6 +1,7 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) 2022 Gregg Tavares // Forked from https://github.com/greggman/webgpu-utils under MIT license // Copyright (c) 2022 Gregg Tavares diff --git a/modules/webgpu/src/adapter/helpers/get-bind-group.ts b/modules/webgpu/src/adapter/helpers/get-bind-group.ts index 21b6467d62..2b8b63db9a 100644 --- a/modules/webgpu/src/adapter/helpers/get-bind-group.ts +++ b/modules/webgpu/src/adapter/helpers/get-bind-group.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type { Binding, diff --git a/modules/webgpu/src/adapter/helpers/get-vertex-buffer-layout.ts b/modules/webgpu/src/adapter/helpers/get-vertex-buffer-layout.ts index 32c9b8cc52..11fe53a075 100644 --- a/modules/webgpu/src/adapter/helpers/get-vertex-buffer-layout.ts +++ b/modules/webgpu/src/adapter/helpers/get-vertex-buffer-layout.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type { BufferLayout, diff --git a/modules/webgpu/src/adapter/helpers/webgpu-parameters.ts b/modules/webgpu/src/adapter/helpers/webgpu-parameters.ts index 05b0f4f2fc..993a0e5392 100644 --- a/modules/webgpu/src/adapter/helpers/webgpu-parameters.ts +++ b/modules/webgpu/src/adapter/helpers/webgpu-parameters.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Parameters, log} from '@luma.gl/core'; diff --git a/modules/webgpu/src/adapter/resources/webgpu-buffer.ts b/modules/webgpu/src/adapter/resources/webgpu-buffer.ts index 24211c506b..af68ae5c57 100644 --- a/modules/webgpu/src/adapter/resources/webgpu-buffer.ts +++ b/modules/webgpu/src/adapter/resources/webgpu-buffer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {log, Buffer, type BufferProps, type BufferMapCallback} from '@luma.gl/core'; import {type WebGPUDevice} from '../webgpu-device'; diff --git a/modules/webgpu/src/adapter/resources/webgpu-command-buffer.ts b/modules/webgpu/src/adapter/resources/webgpu-command-buffer.ts index b5a9b358e6..56d8900f62 100644 --- a/modules/webgpu/src/adapter/resources/webgpu-command-buffer.ts +++ b/modules/webgpu/src/adapter/resources/webgpu-command-buffer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ResourceProps} from '@luma.gl/core'; import {CommandBuffer} from '@luma.gl/core'; diff --git a/modules/webgpu/src/adapter/resources/webgpu-command-encoder.ts b/modules/webgpu/src/adapter/resources/webgpu-command-encoder.ts index 9eca9e3302..e6492c157d 100644 --- a/modules/webgpu/src/adapter/resources/webgpu-command-encoder.ts +++ b/modules/webgpu/src/adapter/resources/webgpu-command-encoder.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type { RenderPassProps, diff --git a/modules/webgpu/src/adapter/resources/webgpu-compute-pass.ts b/modules/webgpu/src/adapter/resources/webgpu-compute-pass.ts index 74aa965fde..cfdfa7e280 100644 --- a/modules/webgpu/src/adapter/resources/webgpu-compute-pass.ts +++ b/modules/webgpu/src/adapter/resources/webgpu-compute-pass.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { ComputePass, diff --git a/modules/webgpu/src/adapter/resources/webgpu-compute-pipeline.ts b/modules/webgpu/src/adapter/resources/webgpu-compute-pipeline.ts index 6b58add3ee..c0209dd201 100644 --- a/modules/webgpu/src/adapter/resources/webgpu-compute-pipeline.ts +++ b/modules/webgpu/src/adapter/resources/webgpu-compute-pipeline.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { ComputePipeline, diff --git a/modules/webgpu/src/adapter/resources/webgpu-external-texture.ts b/modules/webgpu/src/adapter/resources/webgpu-external-texture.ts index 40597869a7..06a971a651 100644 --- a/modules/webgpu/src/adapter/resources/webgpu-external-texture.ts +++ b/modules/webgpu/src/adapter/resources/webgpu-external-texture.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {ExternalTexture, ExternalTextureProps, Sampler, SamplerProps} from '@luma.gl/core'; import type {WebGPUDevice} from '../webgpu-device'; diff --git a/modules/webgpu/src/adapter/resources/webgpu-fence.ts b/modules/webgpu/src/adapter/resources/webgpu-fence.ts index 5417850d25..d3bb606b1d 100644 --- a/modules/webgpu/src/adapter/resources/webgpu-fence.ts +++ b/modules/webgpu/src/adapter/resources/webgpu-fence.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Fence, type FenceProps} from '@luma.gl/core'; import {WebGPUDevice} from '../webgpu-device'; diff --git a/modules/webgpu/src/adapter/resources/webgpu-framebuffer.ts b/modules/webgpu/src/adapter/resources/webgpu-framebuffer.ts index bd19482d2d..9924779629 100644 --- a/modules/webgpu/src/adapter/resources/webgpu-framebuffer.ts +++ b/modules/webgpu/src/adapter/resources/webgpu-framebuffer.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {FramebufferProps} from '@luma.gl/core'; import {Framebuffer} from '@luma.gl/core'; diff --git a/modules/webgpu/src/adapter/resources/webgpu-pipeline-layout.ts b/modules/webgpu/src/adapter/resources/webgpu-pipeline-layout.ts index cd60dde4c1..c6d1c7ba86 100644 --- a/modules/webgpu/src/adapter/resources/webgpu-pipeline-layout.ts +++ b/modules/webgpu/src/adapter/resources/webgpu-pipeline-layout.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import { log, diff --git a/modules/webgpu/src/adapter/resources/webgpu-query-set.ts b/modules/webgpu/src/adapter/resources/webgpu-query-set.ts index 52d5fd9a89..283d86f45d 100644 --- a/modules/webgpu/src/adapter/resources/webgpu-query-set.ts +++ b/modules/webgpu/src/adapter/resources/webgpu-query-set.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, QuerySet, QuerySetProps} from '@luma.gl/core'; import {WebGPUDevice} from '../webgpu-device'; diff --git a/modules/webgpu/src/adapter/resources/webgpu-render-bundle.ts b/modules/webgpu/src/adapter/resources/webgpu-render-bundle.ts index 6006688772..f941437450 100644 --- a/modules/webgpu/src/adapter/resources/webgpu-render-bundle.ts +++ b/modules/webgpu/src/adapter/resources/webgpu-render-bundle.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type { Bindings, diff --git a/modules/webgpu/src/adapter/resources/webgpu-render-pass.ts b/modules/webgpu/src/adapter/resources/webgpu-render-pass.ts index 0ae61ed4c6..1fc4597ccf 100644 --- a/modules/webgpu/src/adapter/resources/webgpu-render-pass.ts +++ b/modules/webgpu/src/adapter/resources/webgpu-render-pass.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {TypedArray, NumberArray4} from '@math.gl/types'; import type { diff --git a/modules/webgpu/src/adapter/resources/webgpu-render-pipeline.ts b/modules/webgpu/src/adapter/resources/webgpu-render-pipeline.ts index f9b0982ed2..e7fade6122 100644 --- a/modules/webgpu/src/adapter/resources/webgpu-render-pipeline.ts +++ b/modules/webgpu/src/adapter/resources/webgpu-render-pipeline.ts @@ -1,4 +1,6 @@ -// luma.gl MIT license +// luma.gl +// SPDX-License-Identifier: MIT +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Bindings, BindingsByGroup, RenderPass, VertexArray} from '@luma.gl/core'; import { diff --git a/modules/webgpu/src/adapter/resources/webgpu-sampler.ts b/modules/webgpu/src/adapter/resources/webgpu-sampler.ts index 364942a8ab..6bcc28f825 100644 --- a/modules/webgpu/src/adapter/resources/webgpu-sampler.ts +++ b/modules/webgpu/src/adapter/resources/webgpu-sampler.ts @@ -1,5 +1,6 @@ -// luma.gl, MIT license -// Copyright (c) vis.gl contributors +// luma.gl +// SPDX-License-Identifier: MIT +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Sampler, SamplerProps} from '@luma.gl/core'; import type {WebGPUDevice} from '../webgpu-device'; diff --git a/modules/webgpu/src/adapter/resources/webgpu-shader.ts b/modules/webgpu/src/adapter/resources/webgpu-shader.ts index 05cbaeb3f6..6894596913 100644 --- a/modules/webgpu/src/adapter/resources/webgpu-shader.ts +++ b/modules/webgpu/src/adapter/resources/webgpu-shader.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderProps, CompilerMessage} from '@luma.gl/core'; import {Shader} from '@luma.gl/core'; diff --git a/modules/webgpu/src/adapter/resources/webgpu-texture-view.ts b/modules/webgpu/src/adapter/resources/webgpu-texture-view.ts index 6370806bea..6c9400c0f5 100644 --- a/modules/webgpu/src/adapter/resources/webgpu-texture-view.ts +++ b/modules/webgpu/src/adapter/resources/webgpu-texture-view.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {TextureView, TextureViewProps} from '@luma.gl/core'; import type {WebGPUDevice} from '../webgpu-device'; diff --git a/modules/webgpu/src/adapter/resources/webgpu-texture.ts b/modules/webgpu/src/adapter/resources/webgpu-texture.ts index c1c7337a60..bda28390a3 100644 --- a/modules/webgpu/src/adapter/resources/webgpu-texture.ts +++ b/modules/webgpu/src/adapter/resources/webgpu-texture.ts @@ -1,4 +1,7 @@ -// luma.gl, MIT license +// luma.gl +// SPDX-License-Identifier: MIT +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors + import { type TextureProps, type TextureViewProps, diff --git a/modules/webgpu/src/adapter/resources/webgpu-vertex-array.ts b/modules/webgpu/src/adapter/resources/webgpu-vertex-array.ts index d256cc9f91..fec4e28684 100644 --- a/modules/webgpu/src/adapter/resources/webgpu-vertex-array.ts +++ b/modules/webgpu/src/adapter/resources/webgpu-vertex-array.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device, Buffer, VertexArrayProps, RenderPass} from '@luma.gl/core'; import {VertexArray, log} from '@luma.gl/core'; diff --git a/modules/webgpu/src/adapter/webgpu-adapter.ts b/modules/webgpu/src/adapter/webgpu-adapter.ts index 6b10bbcc0b..de550d1ee1 100644 --- a/modules/webgpu/src/adapter/webgpu-adapter.ts +++ b/modules/webgpu/src/adapter/webgpu-adapter.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // biome-ignore format: preserve layout // / diff --git a/modules/webgpu/src/adapter/webgpu-canvas-context.ts b/modules/webgpu/src/adapter/webgpu-canvas-context.ts index 3795abc387..9c94d69680 100644 --- a/modules/webgpu/src/adapter/webgpu-canvas-context.ts +++ b/modules/webgpu/src/adapter/webgpu-canvas-context.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // biome-ignore format: preserve layout // / diff --git a/modules/webgpu/src/adapter/webgpu-device.ts b/modules/webgpu/src/adapter/webgpu-device.ts index 1338b6ce58..b3730d7b50 100644 --- a/modules/webgpu/src/adapter/webgpu-device.ts +++ b/modules/webgpu/src/adapter/webgpu-device.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // biome-ignore format: preserve layout // / diff --git a/modules/webgpu/src/adapter/webgpu-presentation-context.ts b/modules/webgpu/src/adapter/webgpu-presentation-context.ts index b496615829..418b731555 100644 --- a/modules/webgpu/src/adapter/webgpu-presentation-context.ts +++ b/modules/webgpu/src/adapter/webgpu-presentation-context.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // biome-ignore format: preserve layout // / diff --git a/modules/webgpu/src/index.ts b/modules/webgpu/src/index.ts index c03e376171..0323b9d534 100644 --- a/modules/webgpu/src/index.ts +++ b/modules/webgpu/src/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // WEBGPU ADAPTER export type {WebGPUAdapter} from './adapter/webgpu-adapter'; diff --git a/modules/webgpu/src/wgsl/get-shader-layout-wgsl.ts b/modules/webgpu/src/wgsl/get-shader-layout-wgsl.ts index ce44c32cc1..44288ccff2 100644 --- a/modules/webgpu/src/wgsl/get-shader-layout-wgsl.ts +++ b/modules/webgpu/src/wgsl/get-shader-layout-wgsl.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {ShaderLayout} from '@luma.gl/core'; import {scanWGSLInterface, type ScanWGSLInterfaceOptions} from '@luma.gl/shadertools/wgsl'; diff --git a/modules/webgpu/test/adapter/helpers/get-bind-group.node.spec.ts b/modules/webgpu/test/adapter/helpers/get-bind-group.node.spec.ts index aea48ef5d4..68d54c3f31 100644 --- a/modules/webgpu/test/adapter/helpers/get-bind-group.node.spec.ts +++ b/modules/webgpu/test/adapter/helpers/get-bind-group.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import type {Bindings, ShaderLayout} from '@luma.gl/core'; diff --git a/modules/webgpu/test/adapter/helpers/get-vertex-buffer-layout.spec.ts b/modules/webgpu/test/adapter/helpers/get-vertex-buffer-layout.spec.ts index bec4813959..fb197e5333 100644 --- a/modules/webgpu/test/adapter/helpers/get-vertex-buffer-layout.spec.ts +++ b/modules/webgpu/test/adapter/helpers/get-vertex-buffer-layout.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {BufferLayout, ShaderLayout} from '@luma.gl/core'; diff --git a/modules/webgpu/test/adapter/resources/webgpu-pipeline-layout.node.spec.ts b/modules/webgpu/test/adapter/resources/webgpu-pipeline-layout.node.spec.ts index c3d232a545..7044d42212 100644 --- a/modules/webgpu/test/adapter/resources/webgpu-pipeline-layout.node.spec.ts +++ b/modules/webgpu/test/adapter/resources/webgpu-pipeline-layout.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import type {BindingDeclaration} from '@luma.gl/core'; diff --git a/modules/webgpu/test/adapter/resources/webgpu-render-pass.spec.ts b/modules/webgpu/test/adapter/resources/webgpu-render-pass.spec.ts index 360bf0e776..9af9197777 100644 --- a/modules/webgpu/test/adapter/resources/webgpu-render-pass.spec.ts +++ b/modules/webgpu/test/adapter/resources/webgpu-render-pass.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, type RenderPassProps} from '@luma.gl/core'; diff --git a/modules/webgpu/test/adapter/resources/webgpu-texture.node.spec.ts b/modules/webgpu/test/adapter/resources/webgpu-texture.node.spec.ts index f5618082ed..bc8a4c7827 100644 --- a/modules/webgpu/test/adapter/resources/webgpu-texture.node.spec.ts +++ b/modules/webgpu/test/adapter/resources/webgpu-texture.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Stats} from '@probe.gl/stats'; import {describe, expect, test, vi} from 'vitest'; diff --git a/modules/webgpu/test/adapter/resources/webgpu-vertex-array.spec.ts b/modules/webgpu/test/adapter/resources/webgpu-vertex-array.spec.ts index cd0cebdae9..e6070048c1 100644 --- a/modules/webgpu/test/adapter/resources/webgpu-vertex-array.spec.ts +++ b/modules/webgpu/test/adapter/resources/webgpu-vertex-array.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {Buffer, type ShaderLayout, type BufferLayout} from '@luma.gl/core'; diff --git a/modules/webgpu/test/adapter/webgpu-xr-adapter.node.spec.ts b/modules/webgpu/test/adapter/webgpu-xr-adapter.node.spec.ts index bb39c45504..64ab50f168 100644 --- a/modules/webgpu/test/adapter/webgpu-xr-adapter.node.spec.ts +++ b/modules/webgpu/test/adapter/webgpu-xr-adapter.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {afterEach, describe, expect, test, vi} from 'vitest'; import {Device, type DeviceProps} from '@luma.gl/core'; diff --git a/modules/webgpu/test/index.ts b/modules/webgpu/test/index.ts index bc689cf2ca..55c0da9522 100644 --- a/modules/webgpu/test/index.ts +++ b/modules/webgpu/test/index.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import './webgpu/adapter/webgpu-adapter.spec'; import './adapter/helpers/get-vertex-buffer-layout.spec'; diff --git a/modules/webgpu/test/webgpu/adapter/webgpu-adapter.spec.ts b/modules/webgpu/test/webgpu/adapter/webgpu-adapter.spec.ts index 7f09e4718c..6b8c28e28c 100644 --- a/modules/webgpu/test/webgpu/adapter/webgpu-adapter.spec.ts +++ b/modules/webgpu/test/webgpu/adapter/webgpu-adapter.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/modules/webgpu/test/wgsl/get-shader-layout-wgsl.spec.ts b/modules/webgpu/test/wgsl/get-shader-layout-wgsl.spec.ts index 1d9abec694..9afcdc5226 100644 --- a/modules/webgpu/test/wgsl/get-shader-layout-wgsl.spec.ts +++ b/modules/webgpu/test/wgsl/get-shader-layout-wgsl.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import type {ShaderLayout} from '@luma.gl/core'; diff --git a/scripts/build-gaussian-splat-loaders-bundle.mjs b/scripts/build-gaussian-splat-loaders-bundle.mjs index d92a0a4796..d88b5b082e 100644 --- a/scripts/build-gaussian-splat-loaders-bundle.mjs +++ b/scripts/build-gaussian-splat-loaders-bundle.mjs @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /** * Regenerates the browser-only loaders.gl 5 Gaussian splat artifact without changing dependencies. diff --git a/scripts/verify-experimental-geospatial-package.mjs b/scripts/verify-experimental-geospatial-package.mjs index 06a5839a3f..c6d7d066e6 100644 --- a/scripts/verify-experimental-geospatial-package.mjs +++ b/scripts/verify-experimental-geospatial-package.mjs @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import assert from 'node:assert/strict'; import {createRequire} from 'node:module'; diff --git a/test/bench/array-copy.bench.js b/test/bench/array-copy.bench.js index b5937a340c..acd2c4f76f 100644 --- a/test/bench/array-copy.bench.js +++ b/test/bench/array-copy.bench.js @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /* eslint-disable no-console, no-invalid-this */ diff --git a/test/bench/index.js b/test/bench/index.js index 7388cafc60..4d05ead54b 100644 --- a/test/bench/index.js +++ b/test/bench/index.js @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /* eslint-disable no-console, no-invalid-this */ import {Bench} from '@probe.gl/bench'; diff --git a/test/bench/shaders.bench.js b/test/bench/shaders.bench.js index 8fedbf1ef0..10b55e78a9 100644 --- a/test/bench/shaders.bench.js +++ b/test/bench/shaders.bench.js @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // eslint-disable-next-line import {Program, VertexShader, FragmentShader} from '@luma.gl/webgl-legacy'; diff --git a/test/bench/uniforms.bench.js b/test/bench/uniforms.bench.js index 5533402567..c5191ddbbe 100644 --- a/test/bench/uniforms.bench.js +++ b/test/bench/uniforms.bench.js @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Program} from '@luma.gl/webgl-legacy'; import {createTestContext} from '@luma.gl/test-utils'; diff --git a/test/browser.ts b/test/browser.ts index b9663e4ec1..36f143e068 100644 --- a/test/browser.ts +++ b/test/browser.ts @@ -1,9 +1,9 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors // deck.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors /* global window */ import test from 'tape'; diff --git a/test/devtools/merge-lcov.node.spec.ts b/test/devtools/merge-lcov.node.spec.ts index 7e4772f6aa..32fad76811 100644 --- a/test/devtools/merge-lcov.node.spec.ts +++ b/test/devtools/merge-lcov.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {describe, expect, test} from 'vitest'; diff --git a/test/examples/billion-point-spatial-atlas-ept-source.node.spec.ts b/test/examples/billion-point-spatial-atlas-ept-source.node.spec.ts index db0b573e7e..b47ec187d3 100644 --- a/test/examples/billion-point-spatial-atlas-ept-source.node.spec.ts +++ b/test/examples/billion-point-spatial-atlas-ept-source.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {describe, expect, test} from 'vitest'; import { diff --git a/test/examples/billion-point-spatial-atlas-taxi-preprocess.node.spec.ts b/test/examples/billion-point-spatial-atlas-taxi-preprocess.node.spec.ts index dbf3a5f42d..4d9b806251 100644 --- a/test/examples/billion-point-spatial-atlas-taxi-preprocess.node.spec.ts +++ b/test/examples/billion-point-spatial-atlas-taxi-preprocess.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {execFile} from 'node:child_process'; import {mkdtemp, readFile, rm, writeFile} from 'node:fs/promises'; diff --git a/test/examples/billion-point-spatial-atlas-taxi-resident-window.node.spec.ts b/test/examples/billion-point-spatial-atlas-taxi-resident-window.node.spec.ts index fc591205bd..824c80132e 100644 --- a/test/examples/billion-point-spatial-atlas-taxi-resident-window.node.spec.ts +++ b/test/examples/billion-point-spatial-atlas-taxi-resident-window.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {describe, expect, test} from 'vitest'; import { diff --git a/test/examples/billion-point-spatial-atlas-taxi-source.node.spec.ts b/test/examples/billion-point-spatial-atlas-taxi-source.node.spec.ts index dca425d9f0..9524956650 100644 --- a/test/examples/billion-point-spatial-atlas-taxi-source.node.spec.ts +++ b/test/examples/billion-point-spatial-atlas-taxi-source.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {describe, expect, test} from 'vitest'; import { diff --git a/test/examples/crossfilter-responsive-startup.node.spec.ts b/test/examples/crossfilter-responsive-startup.node.spec.ts index 5b551e4146..df8196a37a 100644 --- a/test/examples/crossfilter-responsive-startup.node.spec.ts +++ b/test/examples/crossfilter-responsive-startup.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import type {AnimationProps} from '@luma.gl/engine'; diff --git a/test/examples/example-catalog-metadata.node.spec.ts b/test/examples/example-catalog-metadata.node.spec.ts index 735f8918ed..81625151a7 100644 --- a/test/examples/example-catalog-metadata.node.spec.ts +++ b/test/examples/example-catalog-metadata.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {existsSync, readFileSync} from 'node:fs'; import {createRequire} from 'node:module'; diff --git a/test/examples/example-catalog-thumbnails.node.spec.ts b/test/examples/example-catalog-thumbnails.node.spec.ts index 598f56effe..e6c6456b9b 100644 --- a/test/examples/example-catalog-thumbnails.node.spec.ts +++ b/test/examples/example-catalog-thumbnails.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {existsSync, readFileSync, statSync} from 'node:fs'; import path from 'node:path'; diff --git a/test/examples/example-device-tab-navigation.spec.ts b/test/examples/example-device-tab-navigation.spec.ts index 3b8458dee8..1030ae56cf 100644 --- a/test/examples/example-device-tab-navigation.spec.ts +++ b/test/examples/example-device-tab-navigation.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {afterEach, describe, expect, test, vi} from 'vitest'; import { diff --git a/test/examples/example-device-tabs.node.spec.ts b/test/examples/example-device-tabs.node.spec.ts index 8a09f7b09f..75d9291dc4 100644 --- a/test/examples/example-device-tabs.node.spec.ts +++ b/test/examples/example-device-tabs.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {createRequire} from 'node:module'; import path from 'node:path'; diff --git a/test/examples/fluid-foundry.node.spec.ts b/test/examples/fluid-foundry.node.spec.ts index d5a9c54e72..781da48eea 100644 --- a/test/examples/fluid-foundry.node.spec.ts +++ b/test/examples/fluid-foundry.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {describe, expect, test} from 'vitest'; import {getFoundryNozzleCycleState} from '../../examples/experimental/fluid-foundry/app'; diff --git a/test/examples/fluid-foundry.spec.ts b/test/examples/fluid-foundry.spec.ts index 771e985c6e..65b2001598 100644 --- a/test/examples/fluid-foundry.spec.ts +++ b/test/examples/fluid-foundry.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Texture} from '@luma.gl/core'; import type {AnimationProps} from '@luma.gl/engine'; diff --git a/test/examples/fp64-live-benchmark-docs.node.spec.ts b/test/examples/fp64-live-benchmark-docs.node.spec.ts index 979ee4740b..630a2e7255 100644 --- a/test/examples/fp64-live-benchmark-docs.node.spec.ts +++ b/test/examples/fp64-live-benchmark-docs.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {readFileSync} from 'node:fs'; import {describe, expect, test} from 'vitest'; diff --git a/test/examples/fp64-responsive-layout.node.spec.ts b/test/examples/fp64-responsive-layout.node.spec.ts index 5f242ed39a..68b9afeaa9 100644 --- a/test/examples/fp64-responsive-layout.node.spec.ts +++ b/test/examples/fp64-responsive-layout.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import React from 'react'; import {renderToStaticMarkup} from 'react-dom/server'; diff --git a/test/examples/framework-capabilities.node.spec.ts b/test/examples/framework-capabilities.node.spec.ts index a88bbd7b66..65f82bce2f 100644 --- a/test/examples/framework-capabilities.node.spec.ts +++ b/test/examples/framework-capabilities.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {existsSync, readFileSync} from 'node:fs'; import path from 'node:path'; diff --git a/test/examples/gaussian-splat-viewer.node.spec.ts b/test/examples/gaussian-splat-viewer.node.spec.ts index 2e68a11015..69f1719e2b 100644 --- a/test/examples/gaussian-splat-viewer.node.spec.ts +++ b/test/examples/gaussian-splat-viewer.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {readFileSync} from 'node:fs'; import path from 'node:path'; diff --git a/test/examples/getting-started-onboarding.node.spec.ts b/test/examples/getting-started-onboarding.node.spec.ts index 30b857a5bb..2f48830d72 100644 --- a/test/examples/getting-started-onboarding.node.spec.ts +++ b/test/examples/getting-started-onboarding.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {existsSync, readFileSync, statSync} from 'node:fs'; import path from 'node:path'; diff --git a/test/examples/gpgpu-catalog-navigation.node.spec.ts b/test/examples/gpgpu-catalog-navigation.node.spec.ts index 3fabb6b55a..bcd49e3a7c 100644 --- a/test/examples/gpgpu-catalog-navigation.node.spec.ts +++ b/test/examples/gpgpu-catalog-navigation.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {existsSync, readFileSync} from 'node:fs'; import path from 'node:path'; diff --git a/test/examples/gpgpu-responsive-data.node.spec.ts b/test/examples/gpgpu-responsive-data.node.spec.ts index a1ee86dcbb..0b186f3278 100644 --- a/test/examples/gpgpu-responsive-data.node.spec.ts +++ b/test/examples/gpgpu-responsive-data.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {readFileSync} from 'node:fs'; import path from 'node:path'; diff --git a/test/examples/gpgpu-responsive-website.node.spec.ts b/test/examples/gpgpu-responsive-website.node.spec.ts index a1c9fa40f1..e6aae9e974 100644 --- a/test/examples/gpgpu-responsive-website.node.spec.ts +++ b/test/examples/gpgpu-responsive-website.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {readFileSync} from 'node:fs'; import path from 'node:path'; diff --git a/test/examples/gpu-command-graph-inspector-panel.spec.ts b/test/examples/gpu-command-graph-inspector-panel.spec.ts index 08f61dd6b3..ae2809dd1c 100644 --- a/test/examples/gpu-command-graph-inspector-panel.spec.ts +++ b/test/examples/gpu-command-graph-inspector-panel.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {describe, expect, test} from 'vitest'; import { diff --git a/test/examples/gpu-frustum-culling.spec.ts b/test/examples/gpu-frustum-culling.spec.ts index a20f999380..e48375e46b 100644 --- a/test/examples/gpu-frustum-culling.spec.ts +++ b/test/examples/gpu-frustum-culling.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {describe, expect, test} from 'vitest'; import type {AnimationProps} from '@luma.gl/engine'; diff --git a/test/examples/gpu-scene-graph.node.spec.ts b/test/examples/gpu-scene-graph.node.spec.ts index 26bb0954dd..da516ee737 100644 --- a/test/examples/gpu-scene-graph.node.spec.ts +++ b/test/examples/gpu-scene-graph.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {describe, expect, test} from 'vitest'; import { diff --git a/test/examples/gpu-scene-graph.spec.ts b/test/examples/gpu-scene-graph.spec.ts index 699e4c48e8..1323123d1b 100644 --- a/test/examples/gpu-scene-graph.spec.ts +++ b/test/examples/gpu-scene-graph.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {describe, expect, test} from 'vitest'; import type {AnimationProps} from '@luma.gl/engine'; diff --git a/test/examples/gpu-trace-scene.node.spec.ts b/test/examples/gpu-trace-scene.node.spec.ts index d73cef0e15..8941b86a2c 100644 --- a/test/examples/gpu-trace-scene.node.spec.ts +++ b/test/examples/gpu-trace-scene.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {describe, expect, test} from 'vitest'; import {getGPUTracePickingShader} from '@luma.gl/experimental/lutrace'; diff --git a/test/examples/gpu-trace-scene.spec.ts b/test/examples/gpu-trace-scene.spec.ts index c069ca3c4b..adccb0efe6 100644 --- a/test/examples/gpu-trace-scene.spec.ts +++ b/test/examples/gpu-trace-scene.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {describe, expect, test} from 'vitest'; import type {AnimationProps} from '@luma.gl/engine'; diff --git a/test/examples/gpu-trace-viewer.node.spec.ts b/test/examples/gpu-trace-viewer.node.spec.ts index 3aa7a4ddc6..c0cfeee0e6 100644 --- a/test/examples/gpu-trace-viewer.node.spec.ts +++ b/test/examples/gpu-trace-viewer.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {WgslReflect} from 'wgsl_reflect'; diff --git a/test/examples/gpu-trace-viewer.spec.ts b/test/examples/gpu-trace-viewer.spec.ts index 46b2488076..b080009612 100644 --- a/test/examples/gpu-trace-viewer.spec.ts +++ b/test/examples/gpu-trace-viewer.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {describe, expect, test} from 'vitest'; import type {AnimationProps} from '@luma.gl/engine'; diff --git a/test/examples/hdr-screenshot-capture.node.spec.ts b/test/examples/hdr-screenshot-capture.node.spec.ts index 42a80510bd..1398ef3de9 100644 --- a/test/examples/hdr-screenshot-capture.node.spec.ts +++ b/test/examples/hdr-screenshot-capture.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {describe, expect, test} from 'vitest'; import {toHalfFloat} from '@luma.gl/shadertools'; diff --git a/test/examples/homepage-navigation.node.spec.ts b/test/examples/homepage-navigation.node.spec.ts index ae4a95e6cc..a8bb652654 100644 --- a/test/examples/homepage-navigation.node.spec.ts +++ b/test/examples/homepage-navigation.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {existsSync, readFileSync} from 'node:fs'; import path from 'node:path'; diff --git a/test/examples/lightstorm-megacity.node.spec.ts b/test/examples/lightstorm-megacity.node.spec.ts index b6332b3c8c..2dd2e6dc15 100644 --- a/test/examples/lightstorm-megacity.node.spec.ts +++ b/test/examples/lightstorm-megacity.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {describe, expect, test} from 'vitest'; import {makeDeferredPointLightBufferData} from '@luma.gl/experimental'; diff --git a/test/examples/lightstorm-megacity.spec.ts b/test/examples/lightstorm-megacity.spec.ts index ca54606917..35550f7653 100644 --- a/test/examples/lightstorm-megacity.spec.ts +++ b/test/examples/lightstorm-megacity.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {describe, expect, test} from 'vitest'; import {Buffer, type Texture} from '@luma.gl/core'; diff --git a/test/examples/luproj-live-benchmark-docs.node.spec.ts b/test/examples/luproj-live-benchmark-docs.node.spec.ts index b596c8ad6e..a460cc1283 100644 --- a/test/examples/luproj-live-benchmark-docs.node.spec.ts +++ b/test/examples/luproj-live-benchmark-docs.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {readFileSync} from 'node:fs'; import {createRequire} from 'node:module'; diff --git a/test/examples/luspatial-taxi-runtime.node.spec.ts b/test/examples/luspatial-taxi-runtime.node.spec.ts index 728af465f0..2ee45b0d92 100644 --- a/test/examples/luspatial-taxi-runtime.node.spec.ts +++ b/test/examples/luspatial-taxi-runtime.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import {describe, expect, test} from 'vitest'; diff --git a/test/examples/luxfilter-live-docs.node.spec.ts b/test/examples/luxfilter-live-docs.node.spec.ts index deb11ef6da..f449aea68c 100644 --- a/test/examples/luxfilter-live-docs.node.spec.ts +++ b/test/examples/luxfilter-live-docs.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {existsSync, readFileSync} from 'node:fs'; import {createRequire} from 'node:module'; diff --git a/test/examples/million-row-crossfilter.node.spec.ts b/test/examples/million-row-crossfilter.node.spec.ts index bb9bac6b5d..c936485899 100644 --- a/test/examples/million-row-crossfilter.node.spec.ts +++ b/test/examples/million-row-crossfilter.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {spawnSync} from 'node:child_process'; import {fileURLToPath} from 'node:url'; diff --git a/test/examples/million-row-crossfilter.spec.ts b/test/examples/million-row-crossfilter.spec.ts index 7d8705d3ef..5298ad7547 100644 --- a/test/examples/million-row-crossfilter.spec.ts +++ b/test/examples/million-row-crossfilter.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {describe, expect, test, vi} from 'vitest'; import {getWebGPUTestDevice} from '@luma.gl/test-utils'; diff --git a/test/examples/packet-spraying-network.node.spec.ts b/test/examples/packet-spraying-network.node.spec.ts index baf9602bb5..fdcd4b287a 100644 --- a/test/examples/packet-spraying-network.node.spec.ts +++ b/test/examples/packet-spraying-network.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/test/examples/packet-spraying-optics.node.spec.ts b/test/examples/packet-spraying-optics.node.spec.ts index e520b086d1..3fc2d7bc4b 100644 --- a/test/examples/packet-spraying-optics.node.spec.ts +++ b/test/examples/packet-spraying-optics.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import {makeStudioEnvironmentMipLevels} from '../../examples/showcase/packet-spraying/optics'; diff --git a/test/examples/packet-spraying-story.node.spec.ts b/test/examples/packet-spraying-story.node.spec.ts index 3839defcff..0fe02589e1 100644 --- a/test/examples/packet-spraying-story.node.spec.ts +++ b/test/examples/packet-spraying-story.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'test/utils/vitest-tape'; import { diff --git a/test/examples/spatial-atlas-lidar-tile-cache.node.spec.ts b/test/examples/spatial-atlas-lidar-tile-cache.node.spec.ts index 5b47250735..3d05815f21 100644 --- a/test/examples/spatial-atlas-lidar-tile-cache.node.spec.ts +++ b/test/examples/spatial-atlas-lidar-tile-cache.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {Device} from '@luma.gl/core'; import {describe, expect, test} from 'vitest'; diff --git a/test/examples/spatial-live-benchmark-docs.node.spec.ts b/test/examples/spatial-live-benchmark-docs.node.spec.ts index 2972b99720..be50a7ad0b 100644 --- a/test/examples/spatial-live-benchmark-docs.node.spec.ts +++ b/test/examples/spatial-live-benchmark-docs.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {readFileSync} from 'node:fs'; import {describe, expect, test} from 'vitest'; diff --git a/test/examples/spdx-source-headers.node.spec.ts b/test/examples/spdx-source-headers.node.spec.ts new file mode 100644 index 0000000000..e164479546 --- /dev/null +++ b/test/examples/spdx-source-headers.node.spec.ts @@ -0,0 +1,200 @@ +// luma.gl +// SPDX-License-Identifier: MIT +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors + +import {execFileSync} from 'node:child_process'; +import {existsSync, readFileSync} from 'node:fs'; +import path from 'node:path'; +import {fileURLToPath} from 'node:url'; +import {describe, expect, test} from 'vitest'; + +const REPOSITORY_ROOT = fileURLToPath(new URL('../..', import.meta.url)); +const SPDX_HEADER_LINE_COUNT = 12; +const SOURCE_FILE_EXTENSIONS = new Set([ + '.ts', + '.tsx', + '.js', + '.jsx', + '.mjs', + '.cjs', + '.wgsl', + '.glsl' +]); +const EXCLUDED_SOURCE_DIRECTORIES = new Set([ + 'node_modules', + 'vendor', + 'vendored', + 'third_party', + 'third-party', + 'dist', + 'build', + 'coverage', + 'generated', + '__generated__' +]); +const SPDX_LICENSE_IDENTIFIER_PATTERN = /^\s*(?:\/\/|\/\*+|\*)\s*SPDX-License-Identifier:\s*\S/u; +const SPDX_FILE_COPYRIGHT_TEXT_PATTERN = /^\s*(?:\/\/|\/\*+|\*)\s*SPDX-FileCopyrightText:\s*\S/u; + +// Embedded third-party material needs its actual owners and license expressions reviewed before +// these existing headers can be normalized without incorrectly assigning ownership to vis.gl. +const TEMPORARY_MIXED_LICENSE_EXCEPTIONS = new Set([ + 'modules/effects/src/passes/postprocessing/fxaa/fxaa.ts', + 'modules/engine/src/geometries/plane-geometry.ts', + 'modules/engine/src/geometries/truncated-cone-geometry.ts', + 'modules/engine/src/geometries/sphere-geometry.ts', + 'modules/text/src/fonts/helvetiker.ts' +]); + +// This declaration file was copied from Spector.js and must retain its independently reviewed +// upstream ownership instead of receiving a speculative vis.gl copyright claim. +const THIRD_PARTY_SOURCE_EXCEPTIONS = new Set(['modules/webgl/src/context/debug/spector-types.ts']); + +const PBR_SHADER_SOURCE_FILES = [ + 'modules/shadertools/src/modules/lighting/pbr-material/pbr-material-glsl.ts', + 'modules/shadertools/src/modules/lighting/pbr-material/pbr-material-wgsl.ts' +]; + +function listRepositorySourceFiles(): string[] { + const repositoryFiles = execFileSync( + 'git', + ['ls-files', '--cached', '--others', '--exclude-standard', '-z'], + { + cwd: REPOSITORY_ROOT, + encoding: 'utf8' + } + ).split('\0'); + + return repositoryFiles.filter(sourceFile => { + if ( + !SOURCE_FILE_EXTENSIONS.has(path.extname(sourceFile)) || + !existsSync(path.join(REPOSITORY_ROOT, sourceFile)) + ) { + return false; + } + + const pathSegments = sourceFile.split('/'); + + return ( + !pathSegments.some(pathSegment => EXCLUDED_SOURCE_DIRECTORIES.has(pathSegment)) && + !sourceFile.startsWith('website/static/') && + !/\.(?:min|bundle)\.[cm]?js$/u.test(sourceFile) + ); + }); +} + +function readSourceHeader(sourceFile: string): string[] { + return readFileSync(path.join(REPOSITORY_ROOT, sourceFile), 'utf8') + .split(/\r?\n/u) + .slice(0, SPDX_HEADER_LINE_COUNT); +} + +const REPOSITORY_SOURCE_FILES = listRepositorySourceFiles(); + +describe('SPDX source headers', () => { + test('records copyright ownership for every existing SPDX-licensed first-party source', () => { + const missingLicenseSources: string[] = []; + const missingCopyrightSources: string[] = []; + let licensedSourceCount = 0; + + for (const sourceFile of REPOSITORY_SOURCE_FILES) { + if (THIRD_PARTY_SOURCE_EXCEPTIONS.has(sourceFile)) { + continue; + } + + const sourceHeader = readSourceHeader(sourceFile); + const hasLicenseIdentifier = sourceHeader.some(headerLine => + SPDX_LICENSE_IDENTIFIER_PATTERN.test(headerLine) + ); + const sourcePathSegments = sourceFile.split('/'); + const isProductionModuleSource = + sourcePathSegments[0] === 'modules' && sourcePathSegments[2] === 'src'; + + if (!hasLicenseIdentifier) { + if (isProductionModuleSource) { + missingLicenseSources.push(sourceFile); + } + + continue; + } + + licensedSourceCount++; + + if (TEMPORARY_MIXED_LICENSE_EXCEPTIONS.has(sourceFile)) { + continue; + } + + if (!sourceHeader.some(headerLine => SPDX_FILE_COPYRIGHT_TEXT_PATTERN.test(headerLine))) { + missingCopyrightSources.push(sourceFile); + } + } + + expect(licensedSourceCount).toBeGreaterThan(0); + expect(missingLicenseSources).toEqual([]); + expect(missingCopyrightSources).toEqual([]); + }); + + test('removes temporary mixed-license exceptions after their ownership is normalized', () => { + const repositorySourceFiles = new Set(REPOSITORY_SOURCE_FILES); + + for (const sourceFile of TEMPORARY_MIXED_LICENSE_EXCEPTIONS) { + expect(repositorySourceFiles.has(sourceFile), sourceFile).toBe(true); + + const sourceHeader = readSourceHeader(sourceFile); + + expect( + sourceHeader.some(headerLine => SPDX_LICENSE_IDENTIFIER_PATTERN.test(headerLine)), + sourceFile + ).toBe(true); + expect( + sourceHeader.some(headerLine => SPDX_FILE_COPYRIGHT_TEXT_PATTERN.test(headerLine)), + `${sourceFile} no longer requires a mixed-license exception` + ).toBe(false); + } + }); + + test('keeps copied third-party source exceptions accurate and explicitly unclaimed', () => { + const repositorySourceFiles = new Set(REPOSITORY_SOURCE_FILES); + + for (const sourceFile of THIRD_PARTY_SOURCE_EXCEPTIONS) { + expect(repositorySourceFiles.has(sourceFile), sourceFile).toBe(true); + + const sourceHeader = readSourceHeader(sourceFile); + + expect( + sourceHeader.some(headerLine => SPDX_LICENSE_IDENTIFIER_PATTERN.test(headerLine)), + `${sourceFile} no longer requires a third-party source exception` + ).toBe(false); + expect( + sourceHeader.some(headerLine => SPDX_FILE_COPYRIGHT_TEXT_PATTERN.test(headerLine)), + `${sourceFile} no longer requires a third-party source exception` + ).toBe(false); + } + }); + + test('retains valid MIT and ISC licensing and both owners for the Mapbox earcut derivative', () => { + const sourceFile = 'modules/geoarrow/src/optimized-earcut.ts'; + const sourceHeader = readSourceHeader(sourceFile); + + expect(sourceHeader).toContain('// SPDX-License-Identifier: MIT AND ISC'); + expect(sourceHeader).toContain('// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors'); + expect(sourceHeader).toContain('// SPDX-FileCopyrightText: Copyright (c) 2016, Mapbox'); + expect(readFileSync(path.join(REPOSITORY_ROOT, sourceFile), 'utf8')).toContain( + ' ISC License\n\n Copyright (c) 2016, Mapbox' + ); + }); + + test.each( + PBR_SHADER_SOURCE_FILES + )('preserves both copyright owners and MIT licensing for %s', sourceFile => { + const sourceHeader = readSourceHeader(sourceFile); + const licenseIdentifiers = sourceHeader.filter(headerLine => + SPDX_LICENSE_IDENTIFIER_PATTERN.test(headerLine) + ); + + expect(licenseIdentifiers).toEqual(['// SPDX-License-Identifier: MIT']); + expect(sourceHeader).toContain('// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors'); + expect(sourceHeader).toContain( + '// SPDX-FileCopyrightText: Copyright (c) 2016-2017 Mohamad Moneimne and Contributors' + ); + }); +}); diff --git a/test/examples/spectral-caustics.spec.ts b/test/examples/spectral-caustics.spec.ts index f135c328ec..6d51bfb0b3 100644 --- a/test/examples/spectral-caustics.spec.ts +++ b/test/examples/spectral-caustics.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {describe, expect, test, vi} from 'vitest'; import {Buffer, type Texture} from '@luma.gl/core'; diff --git a/test/examples/standards-identity.node.spec.ts b/test/examples/standards-identity.node.spec.ts index 147905e878..148911d944 100644 --- a/test/examples/standards-identity.node.spec.ts +++ b/test/examples/standards-identity.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {readFileSync, statSync} from 'node:fs'; import path from 'node:path'; diff --git a/test/examples/tempest-ocean.node.spec.ts b/test/examples/tempest-ocean.node.spec.ts index c903f41cf5..c949a2f5e1 100644 --- a/test/examples/tempest-ocean.node.spec.ts +++ b/test/examples/tempest-ocean.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {describe, expect, test} from 'vitest'; import {Matrix4, radians} from '@math.gl/core'; diff --git a/test/examples/tempest-ocean.spec.ts b/test/examples/tempest-ocean.spec.ts index 162af1ea38..110354fa30 100644 --- a/test/examples/tempest-ocean.spec.ts +++ b/test/examples/tempest-ocean.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type Texture} from '@luma.gl/core'; import type {AnimationProps} from '@luma.gl/engine'; diff --git a/test/examples/virtual-geometry-canyon.node.spec.ts b/test/examples/virtual-geometry-canyon.node.spec.ts index 057c441c8d..d4dc1be3ba 100644 --- a/test/examples/virtual-geometry-canyon.node.spec.ts +++ b/test/examples/virtual-geometry-canyon.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {describe, expect, test} from 'vitest'; import { diff --git a/test/examples/virtual-geometry-canyon.spec.ts b/test/examples/virtual-geometry-canyon.spec.ts index 7a51132b3d..3e1eb1fa29 100644 --- a/test/examples/virtual-geometry-canyon.spec.ts +++ b/test/examples/virtual-geometry-canyon.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {AnimationProps} from '@luma.gl/engine'; import {getWebGPUTestDevice} from '@luma.gl/test-utils'; diff --git a/test/examples/volumetric-fire-forge.node.spec.ts b/test/examples/volumetric-fire-forge.node.spec.ts index ac52513d53..26e707bea1 100644 --- a/test/examples/volumetric-fire-forge.node.spec.ts +++ b/test/examples/volumetric-fire-forge.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {describe, expect, test} from 'vitest'; import { diff --git a/test/examples/volumetric-fire-forge.spec.ts b/test/examples/volumetric-fire-forge.spec.ts index dd40e27bff..4b99764987 100644 --- a/test/examples/volumetric-fire-forge.spec.ts +++ b/test/examples/volumetric-fire-forge.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {describe, expect, test} from 'vitest'; import {Buffer, type Texture} from '@luma.gl/core'; diff --git a/test/examples/webxr-kaleidoscope.node.spec.ts b/test/examples/webxr-kaleidoscope.node.spec.ts index 4bd13aa9dd..188d2a8472 100644 --- a/test/examples/webxr-kaleidoscope.node.spec.ts +++ b/test/examples/webxr-kaleidoscope.node.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {readFileSync} from 'node:fs'; import path from 'node:path'; diff --git a/test/render/example-test-cases.ts b/test/render/example-test-cases.ts index ad63d53b2b..39605581b1 100644 --- a/test/render/example-test-cases.ts +++ b/test/render/example-test-cases.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {SnapshotTestRunnerTestCase} from '@luma.gl/test-utils'; import {AnimationLoopTemplate, AnimationProps, setPathPrefix} from '@luma.gl/engine'; diff --git a/test/render/render.spec.ts b/test/render/render.spec.ts index 91e6d6e8e8..8b6fdfcc33 100644 --- a/test/render/render.spec.ts +++ b/test/render/render.spec.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import test from 'tape-promise/tape'; import {SnapshotTestRunner} from '@luma.gl/test-utils'; diff --git a/test/utils/merge-lcov.mjs b/test/utils/merge-lcov.mjs index aaa3a3c783..95b7662f4c 100644 --- a/test/utils/merge-lcov.mjs +++ b/test/utils/merge-lcov.mjs @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {readFileSync, writeFileSync} from 'node:fs'; import {pathToFileURL} from 'node:url'; diff --git a/test/utils/parse-shader-compiler-log.spec.shared.ts b/test/utils/parse-shader-compiler-log.spec.shared.ts index 690a194e46..60b0e2808d 100644 --- a/test/utils/parse-shader-compiler-log.spec.shared.ts +++ b/test/utils/parse-shader-compiler-log.spec.shared.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import type {TapeTestFunction} from 'test/utils/vitest-tape'; import {parseShaderCompilerLog} from '@luma.gl/webgl/adapter/helpers/parse-shader-compiler-log'; diff --git a/website/src/example-thumbnails.ts b/website/src/example-thumbnails.ts index e2e7a1c231..57d823a1f1 100644 --- a/website/src/example-thumbnails.ts +++ b/website/src/example-thumbnails.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors const EXAMPLE_THUMBNAIL_ALIASES: Readonly> = { 'v10/gpgpu': 'gpu-tables/gpu-vector-storage-particles', diff --git a/website/src/react-luma/utils/hdr-screenshot-capture.ts b/website/src/react-luma/utils/hdr-screenshot-capture.ts index 2a9156d442..ad0d27499c 100644 --- a/website/src/react-luma/utils/hdr-screenshot-capture.ts +++ b/website/src/react-luma/utils/hdr-screenshot-capture.ts @@ -1,6 +1,6 @@ // luma.gl // SPDX-License-Identifier: MIT -// Copyright (c) vis.gl contributors +// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors import {Buffer, type CanvasContext, type Device} from '@luma.gl/core'; import type {AnimationLoop, AnimationProps} from '@luma.gl/engine';