mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-19 06:40:32 +01:00
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:
parent
5b542681dc
commit
d0ace4e949
1 changed files with 1 additions and 1 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue