[Intel-gfx] [PATCH i-g-t 3/4] tests/kms_flip: Improve the accuracy of out frame time calculation
ville.syrjala at linux.intel.com
ville.syrjala at linux.intel.com
Thu Oct 22 13:35:39 PDT 2015
From: Ville Syrjälä <ville.syrjala at linux.intel.com>
Don't use the rounded vrefresh info to predict the frame duration.
Instead calculate if from the clock.
Signed-off-by: Ville Syrjälä <ville.syrjala at linux.intel.com>
---
tests/kms_flip.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/kms_flip.c b/tests/kms_flip.c
index a139d40..48e9062 100644
--- a/tests/kms_flip.c
+++ b/tests/kms_flip.c
@@ -547,7 +547,7 @@ static void page_flip_handler(int fd, unsigned int frame, unsigned int sec,
static double frame_time(struct test_output *o)
{
- return 1000.0 * 1000.0 / o->kmode[0].vrefresh;
+ return 1000.0 * o->kmode[0].htotal * o->kmode[0].vtotal / o->kmode[0].clock;
}
static void *vblank_wait_thread_func(void *data)
@@ -1209,7 +1209,7 @@ static void check_final_state(struct test_output *o, struct event_state *es,
int count = es->count;
count *= o->seq_step;
- expected = elapsed * o->kmode[0].vrefresh / (1000 * 1000);
+ expected = elapsed / frame_time(o);
igt_assert_f(count >= expected * 99/100 && count <= expected * 101/100,
"dropped frames, expected %d, counted %d, encoder type %d\n",
expected, count, o->kencoder[0]->encoder_type);
--
2.4.9
More information about the Intel-gfx
mailing list