mesa: use #if over #ifdef in the FEATURE_ES1 check to fix a build failure.
mfeatures.h will define FEATURE_ES1 to 0 if it's not defined yet. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=53664 Signed-off-by: Brian Paul <brianp@vmware.com>
This commit is contained in:
committed by
Brian Paul
parent
5b542681dc
commit
d0ace4e949
@@ -1,7 +1,7 @@
|
||||
#include <stdbool.h>
|
||||
#include "main/mfeatures.h"
|
||||
|
||||
#ifdef FEATURE_ES1
|
||||
#if FEATURE_ES1
|
||||
|
||||
#include "api_loopback.h"
|
||||
#include "api_exec.h"
|
||||
|
||||
Reference in New Issue
Block a user