freedreno/fdperf: use drmOpen()

Signed-off-by: Rob Clark <robdclark@chromium.org>
This commit is contained in:
Rob Clark 2019-12-09 13:08:33 -08:00
parent a37822f5f7
commit dc791d3c68
2 changed files with 3 additions and 1 deletions

View file

@ -40,6 +40,7 @@
#include <curses.h>
#include <libconfig.h>
#include <inttypes.h>
#include <xf86drm.h>
#include "drm/freedreno_drmif.h"
#include "drm/freedreno_ringbuffer.h"
@ -327,7 +328,7 @@ find_device(void)
if (!dev.dtnode)
errx(1, "could not find qcom,adreno-3xx node");
fd = open("/dev/dri/card0", O_RDWR);
fd = drmOpen("msm", NULL);
if (fd < 0)
err(1, "could not open drm device");

View file

@ -53,6 +53,7 @@ if dep_libconfig.found() and dep_ncurses.found()
],
dependencies : [
dep_libconfig,
dep_libdrm,
dep_ncurses,
idep_mesautil,
],