瀏覽代碼

Disable sRGBA format for WebXR (#24222)

Rik Cabanier 3 年之前
父節點
當前提交
e4dc2f338e
共有 1 個文件被更改,包括 1 次插入2 次删除
  1. 1 2
      src/renderers/webxr/WebXRManager.js

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

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