From 6e837dda8ccede9e297193097e792a9d6e771534 Mon Sep 17 00:00:00 2001 From: falkTX Date: Thu, 21 Oct 2021 20:23:00 +0100 Subject: [PATCH] Do not use RGBA on OpenGL setups for now Fixes #20 Signed-off-by: falkTX --- Makefile | 4 ++-- deps/Makefile | 1 - plugins/Makefile | 1 - src/Makefile | 1 - 4 files changed, 2 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index caff32e..dd702b5 100644 --- a/Makefile +++ b/Makefile @@ -46,8 +46,8 @@ ifneq ($(SYSDEPS),true) endif dgl: - $(MAKE) USE_NANOVG_FBO=true USE_RGBA=true -C dpf/dgl opengl - # $(MAKE) opengl -C dpf/dgl USE_NANOVG_FBO=true USE_RGBA=true + $(MAKE) USE_NANOVG_FBO=true -C dpf/dgl opengl + # $(MAKE) opengl -C dpf/dgl USE_NANOVG_FBO=true plugins: deps $(MAKE) all -C plugins diff --git a/deps/Makefile b/deps/Makefile index 58a69a5..8cbe099 100644 --- a/deps/Makefile +++ b/deps/Makefile @@ -10,7 +10,6 @@ DEP_PATH = $(abspath ../src/Rack/dep) # Import base definitions USE_NANOVG_FBO = true -USE_RGBA = true include ../dpf/Makefile.base.mk # -------------------------------------------------------------- diff --git a/plugins/Makefile b/plugins/Makefile index fbe6bae..e5e7c25 100644 --- a/plugins/Makefile +++ b/plugins/Makefile @@ -15,7 +15,6 @@ SYSDEPS ?= false # Import base definitions USE_NANOVG_FBO = true -USE_RGBA = true include ../dpf/Makefile.base.mk # -------------------------------------------------------------- diff --git a/src/Makefile b/src/Makefile index 95b2937..67ad6ed 100644 --- a/src/Makefile +++ b/src/Makefile @@ -31,7 +31,6 @@ FILES_UI = \ # Import base definitions USE_NANOVG_FBO = true -USE_RGBA = true include ../dpf/Makefile.base.mk # --------------------------------------------------------------