diff options
author | Mikhail Burakov <mburakov@mailbox.org> | 2023-03-20 08:30:03 +0100 |
---|---|---|
committer | Mikhail Burakov <mburakov@mailbox.org> | 2023-03-20 08:30:03 +0100 |
commit | 21a3934971a5831e594670a48371fd5df50f2aaf (patch) | |
tree | 7f532cbfac0c51f9c895b468ac0dfcbee3db044f /makefile | |
parent | a2ddede7c2c7f5a59e4f0069e8884012a6a685dd (diff) |
Add codepath for using gbm device instead of surfaceless
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,6 +4,7 @@ obj:=$(src:.c=.o) libs:=\ egl \ + gbm \ glesv2 \ libavcodec \ libavutil \ @@ -15,7 +16,7 @@ res:=\ luma.glsl \ chroma.glsl - +#CFLAGS+=-DUSE_EGL_MESA_PLATFORM_SURFACELESS CFLAGS+=$(shell pkg-config --cflags $(libs)) LDFLAGS+=$(shell pkg-config --libs $(libs)) |