From 7c20fce467a350895f6bb0324b561d28f331d6d8 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Wed, 27 Apr 2016 22:48:37 -0400 Subject: [PATCH] I guess NumberOfFields is done for. --- Outputs/CRT/Internals/CRTConstants.hpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Outputs/CRT/Internals/CRTConstants.hpp b/Outputs/CRT/Internals/CRTConstants.hpp index 7df8f20d6..63cfe99ed 100644 --- a/Outputs/CRT/Internals/CRTConstants.hpp +++ b/Outputs/CRT/Internals/CRTConstants.hpp @@ -44,13 +44,6 @@ const GLsizei IntermediateBufferHeight = 2048; const GLsizeiptr OutputVertexBufferDataSize = 89856; // a multiple of 6 * OutputVertexSize const GLsizeiptr SourceVertexBufferDataSize = 87360; // a multiple of 2 * SourceVertexSize - -// Runs are divided discretely by vertical syncs in order to put a usable bounds on the uniform used to track -// run age; that therefore creates a discrete number of fields that are stored. This number should be the -// number of historic fields that are required fully to complete a frame. It should be at least two and not -// more than four. -const int NumberOfFields = 4; - } }