Mesa (master): softpipe: Use os_time_get_nano() everywhere.

Jose Fonseca jrfonseca at kemper.freedesktop.org
Tue Dec 11 16:46:46 UTC 2012


Module: Mesa
Branch: master
Commit: bc4bf3c84015144100ebdb4015bf06f7eab9f646
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=bc4bf3c84015144100ebdb4015bf06f7eab9f646

Author: José Fonseca <jose.r.fonseca at gmail.com>
Date:   Sat Dec  8 11:45:58 2012 +0000

softpipe: Use os_time_get_nano() everywhere.

---

 src/gallium/drivers/softpipe/sp_query.c  |    8 ++++----
 src/gallium/drivers/softpipe/sp_screen.c |    2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/gallium/drivers/softpipe/sp_query.c b/src/gallium/drivers/softpipe/sp_query.c
index c173736..2dd82c8 100644
--- a/src/gallium/drivers/softpipe/sp_query.c
+++ b/src/gallium/drivers/softpipe/sp_query.c
@@ -91,7 +91,7 @@ softpipe_begin_query(struct pipe_context *pipe, struct pipe_query *q)
       break;
    case PIPE_QUERY_TIMESTAMP_DISJOINT:
    case PIPE_QUERY_TIME_ELAPSED:
-      sq->start = 1000*os_time_get();
+      sq->start = os_time_get_nano();
       break;
    case PIPE_QUERY_SO_STATISTICS:
       sq->so.primitives_storage_needed = 0;
@@ -131,7 +131,7 @@ softpipe_end_query(struct pipe_context *pipe, struct pipe_query *q)
       /* fall through */
    case PIPE_QUERY_TIMESTAMP_DISJOINT:
    case PIPE_QUERY_TIME_ELAPSED:
-      sq->end = 1000*os_time_get();
+      sq->end = os_time_get_nano();
       break;
    case PIPE_QUERY_SO_STATISTICS:
       sq->so.primitives_storage_needed =
@@ -172,8 +172,8 @@ softpipe_get_query_result(struct pipe_context *pipe,
       break;
    case PIPE_QUERY_TIMESTAMP_DISJOINT: {
       struct pipe_query_data_timestamp_disjoint td;
-      /*os_get_time is in microseconds*/
-      td.frequency = 1000000;
+      /* os_get_time_nano return nanoseconds */
+      td.frequency = UINT64_C(1000000000);
       td.disjoint = sq->end != sq->start;
       memcpy(vresult, &td,
              sizeof(struct pipe_query_data_timestamp_disjoint));
diff --git a/src/gallium/drivers/softpipe/sp_screen.c b/src/gallium/drivers/softpipe/sp_screen.c
index 909fa1c..f344814 100644
--- a/src/gallium/drivers/softpipe/sp_screen.c
+++ b/src/gallium/drivers/softpipe/sp_screen.c
@@ -366,7 +366,7 @@ softpipe_flush_frontbuffer(struct pipe_screen *_screen,
 static uint64_t
 softpipe_get_timestamp(struct pipe_screen *_screen)
 {
-   return os_time_get()*1000;
+   return os_time_get_nano();
 }
 
 /**




More information about the mesa-commit mailing list