From a75259ce9fe0a59cb3c05d0bbd31d1abe6d8168b Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sun, 8 May 2016 16:18:42 -0400 Subject: [PATCH] Removed some dead caveman debugging statements. --- Outputs/CRT/Internals/CRTInputBufferBuilder.cpp | 2 -- Outputs/CRT/Internals/CRTOpenGL.hpp | 1 - 2 files changed, 3 deletions(-) diff --git a/Outputs/CRT/Internals/CRTInputBufferBuilder.cpp b/Outputs/CRT/Internals/CRTInputBufferBuilder.cpp index 920375437..22c10030f 100644 --- a/Outputs/CRT/Internals/CRTInputBufferBuilder.cpp +++ b/Outputs/CRT/Internals/CRTInputBufferBuilder.cpp @@ -42,7 +42,6 @@ void CRTInputBufferBuilder::allocate_write_area(size_t required_length) _write_x_position = _next_write_x_position + 1; _write_y_position = _next_write_y_position; -// printf("#%d,%d#\n", _write_x_position, _write_y_position); _write_target_pointer = (_write_y_position * InputBufferBuilderWidth) + _write_x_position; _next_write_x_position += required_length + 2; } @@ -53,7 +52,6 @@ void CRTInputBufferBuilder::release_write_pointer() if(_should_reset) { _next_write_x_position = _next_write_y_position = 0; -// printf("#Reset!#\n"); } } diff --git a/Outputs/CRT/Internals/CRTOpenGL.hpp b/Outputs/CRT/Internals/CRTOpenGL.hpp index dcea80003..701e11e8c 100644 --- a/Outputs/CRT/Internals/CRTOpenGL.hpp +++ b/Outputs/CRT/Internals/CRTOpenGL.hpp @@ -126,7 +126,6 @@ class OpenGLOutputBuilder { { if(_output_buffer_data_pointer == _drawn_output_buffer_data_pointer + OutputVertexBufferDataSize) return nullptr; _output_mutex->lock(); -// printf("{%ld}", _output_buffer_data_pointer % OutputVertexBufferDataSize); return &_output_buffer_data[_output_buffer_data_pointer % OutputVertexBufferDataSize]; }