/************************************************************************************Filename    :   CAPI_DistortionRenderer.cppContent     :   Combines all of the rendering state associated with the HMDCreated     :   February 2, 2014Authors     :   Michael AntonovCopyright   :   Copyright 2014 Oculus VR, Inc. All Rights reserved.Licensed under the Oculus VR Rift SDK License Version 3.1 (the "License"); you may not use the Oculus VR Rift SDK except in compliance with the License, which is provided at the time of installation or download, or which otherwise accompanies this software in either electronic or hard copy form.You may obtain a copy of the License athttp://www.oculusvr.com/licenses/LICENSE-3.1 Unless required by applicable law or agreed to in writing, the Oculus VR SDK distributed under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions andlimitations under the License.************************************************************************************/#include "CAPI_DistortionRenderer.h"#if defined (OVR_OS_WIN32)// TBD: Move to separate config file that handles back-ends.#define OVR_D3D_VERSION 11#include "D3D1X/CAPI_D3D1X_DistortionRenderer.h"#undef OVR_D3D_VERSION#define OVR_D3D_VERSION 10#include "D3D1X/CAPI_D3D1X_DistortionRenderer.h"#undef OVR_D3D_VERSION#define OVR_D3D_VERSION 9#include "D3D1X/CAPI_D3D9_DistortionRenderer.h"#undef OVR_D3D_VERSION#endif#include "GL/CAPI_GL_DistortionRenderer.h"namespace OVR { namespace CAPI {//-------------------------------------------------------------------------------------// ***** DistortionRenderer// TBD: Move to separate config file that handles back-ends.DistortionRenderer::CreateFunc DistortionRenderer::APICreateRegistry[ovrRenderAPI_Count] ={    0, // None    &GL::DistortionRenderer::Create,    0, // Android_GLES#if defined (OVR_OS_WIN32)    &D3D9::DistortionRenderer::Create,    &D3D10::DistortionRenderer::Create,    &D3D11::DistortionRenderer::Create#else    0,    0,    0#endif};void DistortionRenderer::SetLatencyTestColor(unsigned char* color){    if(color)    {        LatencyTestDrawColor[0] = color[0];        LatencyTestDrawColor[1] = color[1];        LatencyTestDrawColor[2] = color[2];    }    LatencyTestActive = color != NULL;}void DistortionRenderer::SetLatencyTest2Color(unsigned char* color){    if(color)    {        LatencyTest2DrawColor[0] = color[0];        LatencyTest2DrawColor[1] = color[1];        LatencyTest2DrawColor[2] = color[2];    }    LatencyTest2Active = color != NULL;}double DistortionRenderer::WaitTillTime(double absTime){    double initialTime = ovr_GetTimeInSeconds();    if (initialTime >= absTime)        return 0.0;    double newTime = initialTime;    while (newTime < absTime)    {// TODO: Needs further testing before enabling it on all Windows configs#if 0 //def OVR_OS_WIN32        double remainingWaitTime = absTime - newTime;        // don't yield if <2ms        if(remainingWaitTime > 0.002)        {            // round down wait time to closest 1 ms            int roundedWaitTime = (remainingWaitTime * 1000);            waitableTimerInterval.QuadPart = -10000LL; // 10000 * 100 ns = 1 ms            waitableTimerInterval.QuadPart *= roundedWaitTime;            SetWaitableTimer(timer, &waitableTimerInterval, 0, NULL, NULL, TRUE);            DWORD waitResult = WaitForSingleObject(timer, roundedWaitTime + 3);   // give 3 ms extra time            double sleptTime = ovr_GetTimeInSeconds() - newTime;            // Make sure this is reliable (should be waiting for 1ms, make sure it's <2ms)            if (sleptTime > remainingWaitTime)            {                OVR_DEBUG_LOG_TEXT(                    ("[DistortionRenderer::WaitTillTime] Sleep interval too long: %f\n", sleptTime));            }            else            {                OVR_ASSERT(WAIT_OBJECT_0 == waitResult);                OVR_UNUSED(waitResult);            }        }        else#endif        {            for (int j = 0; j < 5; j++)                OVR_PROCESSOR_PAUSE();        }        newTime = ovr_GetTimeInSeconds();    }    // How long we waited    return newTime - initialTime;}}} // namespace OVR::CAPI