Skip to content

Commit

Permalink
remove legacy aggregation code
Browse files Browse the repository at this point in the history
  • Loading branch information
Pessimistress committed Aug 23, 2024
1 parent 9da9072 commit f8f76b8
Show file tree
Hide file tree
Showing 60 changed files with 38 additions and 6,253 deletions.
10 changes: 5 additions & 5 deletions modules/aggregation-layers/src/contour-layer/contour-layer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ import {
DefaultProps
} from '@deck.gl/core';
import {PathLayer, SolidPolygonLayer} from '@deck.gl/layers';
import {WebGLAggregator} from '../aggregation-layer-v9/gpu-aggregator/webgl-aggregator';
import {CPUAggregator} from '../aggregation-layer-v9/cpu-aggregator/cpu-aggregator';
import AggregationLayer from '../aggregation-layer-v9/aggregation-layer';
import {AggregationLayerProps} from '../aggregation-layer-v9/aggregation-layer';
import {AggregationOperation} from '../aggregation-layer-v9/aggregator';
import {WebGLAggregator} from '../common/gpu-aggregator/webgl-aggregator';
import {CPUAggregator} from '../common/cpu-aggregator/cpu-aggregator';
import AggregationLayer from '../common/aggregation-layer';
import {AggregationLayerProps} from '../common/aggregation-layer';
import {AggregationOperation} from '../common/aggregator';
import {generateContours, Contour, ContourLine, ContourPolygon} from './contour-utils';
import {getAggregatorValueReader} from './value-reader';
import {Matrix4} from '@math.gl/core';
Expand Down
6 changes: 3 additions & 3 deletions modules/aggregation-layers/src/contour-layer/value-reader.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {Aggregator} from '../aggregation-layer-v9/aggregator';
import {WebGLAggregator} from '../aggregation-layer-v9/gpu-aggregator/webgl-aggregator';
import {CPUAggregator} from '../aggregation-layer-v9/cpu-aggregator/cpu-aggregator';
import {Aggregator} from '../common/aggregator';
import {WebGLAggregator} from '../common/gpu-aggregator/webgl-aggregator';
import {CPUAggregator} from '../common/cpu-aggregator/cpu-aggregator';
import type {TypedArray} from '@luma.gl/core';

type ValueReader = (x: number, y: number) => number;
Expand Down
329 changes: 0 additions & 329 deletions modules/aggregation-layers/src/cpu-grid-layer/cpu-grid-layer.ts

This file was deleted.

Loading

0 comments on commit f8f76b8

Please sign in to comment.