Просмотр исходного кода

make TimerQueryMtl.m_result match BGFX_CONFIG_MAX_VIEWS size (#3148)

* fix error when create backbuffer with msaa and srgb format

* fix d3d12 error when create backbuffer with msaa and srgb format

* fix TimerQueryMtl result bug
Kitchen 2 лет назад
Родитель
Сommit
20a1e458da
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/renderer_mtl.h

+ 1 - 1
src/renderer_mtl.h

@@ -1162,7 +1162,7 @@ namespace bgfx { namespace mtl
 		uint64_t m_elapsed;
 		uint64_t m_frequency;
 
-		Result m_result[4*2];
+		Result m_result[BGFX_CONFIG_MAX_VIEWS+1];
 		bx::RingBufferControl m_control;
 	};