Remove dead code

This commit is contained in:
2021-08-17 01:25:53 -07:00
parent fc55a5d490
commit f0b8dbbac5
2 changed files with 0 additions and 9 deletions

View File

@@ -93,7 +93,6 @@ KRContext::KRContext(const KrInitializeInfo* initializeInfo)
mach_timebase_info(&m_timebase_info); mach_timebase_info(&m_timebase_info);
#endif #endif
m_bDetectedExtensions = false;
m_current_frame = 0; m_current_frame = 0;
m_last_memory_warning_frame = 0; m_last_memory_warning_frame = 0;
m_last_fully_streamed_frame = 0; m_last_fully_streamed_frame = 0;
@@ -569,11 +568,6 @@ KrResult KRContext::saveResource(const KrSaveResourceInfo* saveResourceInfo)
return KR_ERROR_UNEXPECTED; return KR_ERROR_UNEXPECTED;
} }
void KRContext::detectExtensions() {
m_bDetectedExtensions = true;
}
void KRContext::startFrame(float deltaTime) void KRContext::startFrame(float deltaTime)
{ {
m_streamer.startStreamer(); m_streamer.startStreamer();

View File

@@ -186,9 +186,6 @@ private:
KRResource** m_resourceMap; KRResource** m_resourceMap;
size_t m_resourceMapSize; size_t m_resourceMapSize;
void detectExtensions();
bool m_bDetectedExtensions;
long m_current_frame; // TODO - Does this need to be atomic? long m_current_frame; // TODO - Does this need to be atomic?
long m_last_memory_warning_frame; // TODO - Does this need to be atomic? long m_last_memory_warning_frame; // TODO - Does this need to be atomic?
long m_last_fully_streamed_frame; // TODO - Does this need to be atomic? long m_last_fully_streamed_frame; // TODO - Does this need to be atomic?