Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -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, type GraphDataView} from './gpu-command-graph';
import {
Expand Down
2 changes: 1 addition & 1 deletion modules/experimental/src/ludf/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// luma.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// SPDX-FileCopyrightText: Copyright (c) vis.gl contributors

export {LuDataFrame} from './lu-data-frame';
export type {
Expand Down
2 changes: 1 addition & 1 deletion modules/experimental/src/ludf/lu-data-frame.ts
Original file line number Diff line number Diff line change
@@ -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} from '@luma.gl/core';
import {
Expand Down
Original file line number Diff line number Diff line change
@@ -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 {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// luma.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';
Expand Down
2 changes: 1 addition & 1 deletion modules/experimental/test/ludf/lu-data-frame.node.spec.ts
Original file line number Diff line number Diff line change
@@ -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';

Expand Down
2 changes: 1 addition & 1 deletion modules/experimental/test/ludf/lu-data-frame.spec.ts
Original file line number Diff line number Diff line change
@@ -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 {LuDataFrame} from '@luma.gl/experimental/ludf';
Expand Down
Loading