aboutsummaryrefslogtreecommitdiffhomepage
path: root/gtk
diff options
context:
space:
mode:
authormitchell <unknown>2018-05-06 21:22:30 -0400
committermitchell <unknown>2018-05-06 21:22:30 -0400
commit724309f4b71d1d991a754d0ad821de3861b6a211 (patch)
treef24a11e3c550ad8ba46b92089a2ef1d3aff34663 /gtk
parent8971ac9fe89f01e717ad21126213ac8887fe373d (diff)
downloadscintilla-mirror-724309f4b71d1d991a754d0ad821de3861b6a211.tar.gz
Backport: Use <chrono> for platform-independent timing and remove ElapsedTime. Also use #if for painting measurement as there are 7 sections of code to enable.
Backport of changeset 6741:af5d9064c25c.
Diffstat (limited to 'gtk')
-rw-r--r--gtk/PlatGTK.cxx22
1 files changed, 0 insertions, 22 deletions
diff --git a/gtk/PlatGTK.cxx b/gtk/PlatGTK.cxx
index da04bae61..f9ee02bfc 100644
--- a/gtk/PlatGTK.cxx
+++ b/gtk/PlatGTK.cxx
@@ -1914,13 +1914,6 @@ void Menu::Show(Point pt, Window &w) {
#endif
}
-ElapsedTime::ElapsedTime() {
- GTimeVal curTime;
- g_get_current_time(&curTime);
- bigBit = curTime.tv_sec;
- littleBit = curTime.tv_usec;
-}
-
class DynamicLibraryImpl : public DynamicLibrary {
protected:
GModule* m;
@@ -1957,21 +1950,6 @@ DynamicLibrary *DynamicLibrary::Load(const char *modulePath) {
return static_cast<DynamicLibrary *>( new DynamicLibraryImpl(modulePath) );
}
-double ElapsedTime::Duration(bool reset) {
- GTimeVal curTime;
- g_get_current_time(&curTime);
- long endBigBit = curTime.tv_sec;
- long endLittleBit = curTime.tv_usec;
- double result = 1000000.0 * (endBigBit - bigBit);
- result += endLittleBit - littleBit;
- result /= 1000000.0;
- if (reset) {
- bigBit = endBigBit;
- littleBit = endLittleBit;
- }
- return result;
-}
-
ColourDesired Platform::Chrome() {
return ColourDesired(0xe0, 0xe0, 0xe0);
}