فهرست منبع

Fix calcSize for D3D12 RootSignature.

clementlandrin 2 سال پیش
والد
کامیت
1936c9c41f
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      h3d/impl/DX12Driver.hx

+ 1 - 1
h3d/impl/DX12Driver.hx

@@ -912,7 +912,7 @@ class DX12Driver extends h3d.impl.Driver {
 		// Root Constants cost 1 per 32-bit value
 		function calcSize( sh : hxsl.RuntimeShader.RuntimeShaderData ) {
 			var s = (sh.globalsSize + sh.paramsSize) << 2;
-			s += sh.texturesCount << 1;
+			s += sh.texturesCount;
 			return s;
 		}