diff options
| author | Léo Lam <leo@leolam.fr> | 2020-11-27 02:17:25 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-27 02:17:25 +0100 |
| commit | cecbc65ea0a9758b6ff754fd013797aec74045db (patch) | |
| tree | f9a6adec4f35fdf82fddefba227737ace8e32fd6 /Source/Core/VideoCommon | |
| parent | 4c9ffb58fa7b15c49c509e1a8d18e5012d345414 (diff) | |
| parent | 978e5469af55f4fc30c94bbf66c8ab3ae4681c85 (diff) | |
Merge pull request #9286 from lioncash/core-log6
Frontends: Migrate logs over to fmt
Diffstat (limited to 'Source/Core/VideoCommon')
| -rw-r--r-- | Source/Core/VideoCommon/VertexLoader_TextCoord.cpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/Source/Core/VideoCommon/VertexLoader_TextCoord.cpp b/Source/Core/VideoCommon/VertexLoader_TextCoord.cpp index 3a31527b2c..26c1c7f256 100644 --- a/Source/Core/VideoCommon/VertexLoader_TextCoord.cpp +++ b/Source/Core/VideoCommon/VertexLoader_TextCoord.cpp @@ -16,24 +16,6 @@ namespace { -template <int N> -void LOG_TEX(); - -template <> -void LOG_TEX<1>() -{ - // warning: mapping buffer should be disabled to use this - // PRIM_LOG("tex: %f, ", ((float*)g_vertex_manager_write_ptr)[-1]); -} - -template <> -void LOG_TEX<2>() -{ - // warning: mapping buffer should be disabled to use this - // PRIM_LOG("tex: %f %f, ", ((float*)g_vertex_manager_write_ptr)[-2], - // ((float*)g_vertex_manager_write_ptr)[-1]); -} - void TexCoord_Read_Dummy(VertexLoader* loader) { loader->m_tcIndex++; @@ -63,7 +45,6 @@ void TexCoord_ReadDirect(VertexLoader* loader) g_vertex_manager_write_ptr = dst.GetPointer(); g_video_buffer_read_ptr = src.GetPointer(); - LOG_TEX<N>(); ++loader->m_tcIndex; } @@ -84,7 +65,6 @@ void TexCoord_ReadIndex(VertexLoader* loader) dst.Write(TCScale(Common::FromBigEndian(data[i]), scale)); g_vertex_manager_write_ptr = dst.GetPointer(); - LOG_TEX<N>(); ++loader->m_tcIndex; } |
