[vulkan] Silence the matrix dump

It got annoying and has served its purpose. However, the code is still
there (#if 0) in case it's needed again.
This commit is contained in:
Bill Currie 2021-02-01 12:24:27 +09:00
parent c7eafd9254
commit afe8e9633e

View file

@ -175,7 +175,7 @@ Vulkan_CalcProjectionMatrices (vulkan_ctx_t *ctx, float aspect)
ortho_mat (mat->projection_2d, 0, width, 0, height, -99999, 99999);
persp_mat (mat->projection_3d, 0, width, 0, height, aspect);
#if 0
Sys_MaskPrintf (SYS_VULKAN, "ortho:\n");
Sys_MaskPrintf (SYS_VULKAN, " [[%g, %g, %g, %g],\n",
QuatExpand (mat->projection_2d + 0));
@ -194,7 +194,7 @@ Vulkan_CalcProjectionMatrices (vulkan_ctx_t *ctx, float aspect)
QuatExpand (mat->projection_3d + 8));
Sys_MaskPrintf (SYS_VULKAN, " [%g, %g, %g, %g]]\n",
QuatExpand (mat->projection_3d + 12));
#endif
VkMappedMemoryRange ranges[] = {
{ VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE, 0, mat->memory, 0, MAT_SIZE },
{ VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE, 0, mat->memory,