Explorar el Código

Disable sRGBA format for WebXR (#24222)

Rik Cabanier hace 3 años
padre
commit
e4dc2f338e
Se han modificado 1 ficheros con 1 adiciones y 2 borrados
  1. 1 2
      src/renderers/webxr/WebXRManager.js

+ 1 - 2
src/renderers/webxr/WebXRManager.js

@@ -11,7 +11,6 @@ import {
 	DepthFormat,
 	DepthStencilFormat,
 	RGBAFormat,
-	sRGBEncoding,
 	UnsignedByteType,
 	UnsignedIntType,
 	UnsignedInt248Type,
@@ -297,7 +296,7 @@ class WebXRManager extends EventDispatcher {
 					}
 
 					const projectionlayerInit = {
-						colorFormat: ( renderer.outputEncoding === sRGBEncoding ) ? gl.SRGB8_ALPHA8 : gl.RGBA8,
+						colorFormat: gl.RGBA8,
 						depthFormat: glDepthFormat,
 						scaleFactor: framebufferScaleFactor
 					};