Skip to content

Commit bb3206e

Browse files
committed
LensflareMesh: Honor color space in framebuffer textures.
1 parent 206ce7b commit bb3206e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

examples/jsm/objects/LensflareMesh.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import {
99
Mesh,
1010
MeshBasicNodeMaterial,
1111
NodeMaterial,
12+
SRGBColorSpace,
1213
UnsignedByteType,
1314
Vector2,
1415
Vector3,
@@ -40,6 +41,7 @@ class LensflareMesh extends Mesh {
4041
const occlusionMap = new FramebufferTexture( 16, 16 );
4142

4243
let currentType = UnsignedByteType;
44+
let currentColorSpace = SRGBColorSpace;
4345

4446
const geometry = LensflareMesh.Geometry;
4547

@@ -171,15 +173,18 @@ class LensflareMesh extends Mesh {
171173

172174
const renderTarget = renderer.getRenderTarget();
173175
const type = ( renderTarget !== null ) ? renderTarget.texture.type : UnsignedByteType;
176+
const colorSpace = ( renderTarget !== null ) ? renderTarget.texture.colorSpace : renderer.outputColorSpace;
174177

175-
if ( currentType !== type ) {
178+
if ( currentType !== type || currentColorSpace !== colorSpace ) {
176179

177180
tempMap.dispose();
178181
occlusionMap.dispose();
179182

180183
tempMap.type = occlusionMap.type = type;
184+
tempMap.colorSpace = occlusionMap.colorSpace = colorSpace;
181185

182186
currentType = type;
187+
currentColorSpace = colorSpace;
183188

184189
}
185190

0 commit comments

Comments
 (0)