boo/lib/graphicsdev/Common.cpp

41 lines
1.2 KiB
C++
Raw Normal View History

2018-01-20 03:02:29 +00:00
#include "Common.hpp"
2018-01-21 23:07:34 +00:00
#include <cmath>
#include <numeric>
#include <thread>
2018-01-20 03:02:29 +00:00
2018-12-08 05:17:51 +00:00
namespace boo {
2018-01-20 03:02:29 +00:00
2018-12-08 05:17:51 +00:00
void UpdateGammaLUT(ITextureD* tex, float gamma) {
void* data = tex->map(65536 * 2);
for (int i = 0; i < 65536; ++i) {
float level = std::pow(i / 65535.f, gamma);
reinterpret_cast<uint16_t*>(data)[i] = level * 65535.f;
}
tex->unmap();
2018-01-20 03:02:29 +00:00
}
void Limiter::Sleep(nanotime_t targetFrameTime) {
OPTICK_EVENT();
if (targetFrameTime == 0) {
return;
}
auto start = delta_clock::now();
nanotime_t sleepTime = targetFrameTime - TimeSince(m_oldTime);
m_overhead = std::accumulate(m_overheadTimes.begin(), m_overheadTimes.end(), nanotime_t{}) /
static_cast<nanotime_t>(m_overheadTimes.size());
if (sleepTime > m_overhead) {
nanotime_t adjustedSleepTime = sleepTime - m_overhead;
std::this_thread::sleep_for(std::chrono::nanoseconds(adjustedSleepTime));
nanotime_t overslept = TimeSince(start) - adjustedSleepTime;
if (overslept < targetFrameTime) {
m_overheadTimes[m_overheadTimeIdx] = overslept;
m_overheadTimeIdx = (m_overheadTimeIdx + 1) % m_overheadTimes.size();
}
}
m_oldTime = delta_clock::now();
}
2018-12-08 05:17:51 +00:00
} // namespace boo