Mesa (master): identity: implement get_timestamp

Marek Olšák mareko at kemper.freedesktop.org
Tue Jul 10 17:08:43 UTC 2012


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

Author: Marek Olšák <maraeo at gmail.com>
Date:   Tue Jul 10 18:48:02 2012 +0200

identity: implement get_timestamp

---

 src/gallium/drivers/identity/id_screen.c |   10 ++++++++++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/src/gallium/drivers/identity/id_screen.c b/src/gallium/drivers/identity/id_screen.c
index ab82e29..26df7f6 100644
--- a/src/gallium/drivers/identity/id_screen.c
+++ b/src/gallium/drivers/identity/id_screen.c
@@ -242,6 +242,15 @@ identity_screen_fence_finish(struct pipe_screen *_screen,
                                timeout);
 }
 
+static uint64_t
+identity_screen_get_timestamp(struct pipe_screen *_screen)
+{
+   struct identity_screen *id_screen = identity_screen(_screen);
+   struct pipe_screen *screen = id_screen->screen;
+
+   return screen->get_timestamp(screen);
+}
+
 struct pipe_screen *
 identity_screen_create(struct pipe_screen *screen)
 {
@@ -268,6 +277,7 @@ identity_screen_create(struct pipe_screen *screen)
    id_screen->base.fence_reference = identity_screen_fence_reference;
    id_screen->base.fence_signalled = identity_screen_fence_signalled;
    id_screen->base.fence_finish = identity_screen_fence_finish;
+   id_screen->base.get_timestamp = identity_screen_get_timestamp;
 
    id_screen->screen = screen;
 




More information about the mesa-commit mailing list