File tree Expand file tree Collapse file tree 2 files changed +0
-10
lines changed Expand file tree Collapse file tree 2 files changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -14,11 +14,3 @@ export const setUpdateRange = (
14
14
Object . assign ( attribute , { updateRange } ) ;
15
15
}
16
16
} ;
17
-
18
- export const LinearEncoding = 3000 ;
19
- export const sRGBEncoding = 3001 ;
20
-
21
- /**
22
- * NOTE: TextureEncoding was deprecated in r152, and removed in r162.
23
- */
24
- export type TextureEncoding = typeof LinearEncoding | typeof sRGBEncoding ;
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ import {
14
14
import { injectStore } from 'angular-three' ;
15
15
import { assertInjector } from 'ngxtension/assert-injector' ;
16
16
import * as THREE from 'three' ;
17
- import { TextureEncoding } from './deprecated' ;
18
17
19
18
interface FBOSettings {
20
19
/** Defines the count of MSAA samples. Can only be used with WebGL 2. Default: 0 */
@@ -34,7 +33,6 @@ interface FBOSettings {
34
33
stencilBuffer ?: boolean | undefined ; // false;
35
34
generateMipmaps ?: boolean | undefined ; // true;
36
35
depthTexture ?: THREE . DepthTexture | undefined ;
37
- encoding ?: TextureEncoding | undefined ;
38
36
colorSpace ?: THREE . ColorSpace | undefined ;
39
37
}
40
38
You can’t perform that action at this time.
0 commit comments