Skip to content

Commit 6bfa2e8

Browse files
committed
Sort imports
1 parent 5dc7b67 commit 6bfa2e8

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/passes/GeometryPass.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import {
22
DepthFormat,
33
DepthStencilFormat,
44
DepthTexture,
5-
FloatType,
65
HalfFloatType,
76
LinearFilter,
87
Material,
@@ -24,17 +23,17 @@ import {
2423
WebGLRenderer
2524
} from "three";
2625

26+
import { RenderTargetResource } from "../core/io/RenderTargetResource.js";
2727
import { Pass } from "../core/Pass.js";
2828
import { Selective } from "../core/Selective.js";
2929
import { GBuffer } from "../enums/GBuffer.js";
3030
import { MSAASamples } from "../enums/MSAASamples.js";
3131
import { GBufferConfig } from "../utils/GBufferConfig.js";
32+
import { GBufferTextureConfig } from "../utils/GBufferTextureConfig.js";
3233
import { extractIndices, extractOutputDefinitions } from "../utils/GBufferUtils.js";
3334
import { ObservableSet } from "../utils/ObservableSet.js";
3435
import { Selection } from "../utils/Selection.js";
3536
import { CopyPass } from "./CopyPass.js";
36-
import { GBufferTextureConfig } from "../utils/GBufferTextureConfig.js";
37-
import { RenderTargetResource } from "../core/index.js";
3837

3938
/**
4039
* GeometryPass constructor options.

0 commit comments

Comments
 (0)