Skip to content

Commit

Permalink
LUTPass: Remove WebGL 1 fallback. (#873)
Browse files Browse the repository at this point in the history
  • Loading branch information
Methuselah96 authored Mar 23, 2024
1 parent 1811251 commit 11a07e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions types/three/examples/jsm/loaders/LUT3dlLoader.d.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import { Data3DTexture, DataTexture, FloatType, Loader, LoadingManager, UnsignedByteType } from "three";
import { Data3DTexture, FloatType, Loader, LoadingManager, UnsignedByteType } from "three";

export interface LUT3dlResult {
size: number;
texture: DataTexture;
texture3D: Data3DTexture;
}

Expand Down
3 changes: 1 addition & 2 deletions types/three/examples/jsm/loaders/LUTCubeLoader.d.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
import { Data3DTexture, DataTexture, FloatType, Loader, LoadingManager, UnsignedByteType, Vector3 } from "three";
import { Data3DTexture, FloatType, Loader, LoadingManager, UnsignedByteType, Vector3 } from "three";

export interface LUTCubeResult {
title: string;
size: number;
domainMin: Vector3;
domainMax: Vector3;
texture: DataTexture;
texture3D: Data3DTexture;
}

Expand Down

0 comments on commit 11a07e8

Please sign in to comment.