mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 02:28:10 +02:00
intel: Include stdbool so we can stop using GLboolean when we want to.
This requires shuffling the driconf XML macros around, since they use true and false tokens expecting them to not get expanded to anything.
This commit is contained in:
parent
b363dd43d6
commit
df9f891544
2 changed files with 12 additions and 14 deletions
|
|
@ -29,7 +29,7 @@
|
|||
#define INTELCONTEXT_INC
|
||||
|
||||
|
||||
|
||||
#include <stdbool.h>
|
||||
#include "main/mtypes.h"
|
||||
#include "main/mm.h"
|
||||
#include "dri_metaops.h"
|
||||
|
|
|
|||
|
|
@ -35,19 +35,6 @@
|
|||
#include "utils.h"
|
||||
#include "xmlpool.h"
|
||||
|
||||
#include "intel_batchbuffer.h"
|
||||
#include "intel_buffers.h"
|
||||
#include "intel_bufmgr.h"
|
||||
#include "intel_chipset.h"
|
||||
#include "intel_fbo.h"
|
||||
#include "intel_screen.h"
|
||||
#include "intel_tex.h"
|
||||
#include "intel_regions.h"
|
||||
|
||||
#include "i915_drm.h"
|
||||
|
||||
#define DRI_CONF_TEXTURE_TILING(def) \
|
||||
|
||||
PUBLIC const char __driConfigOptions[] =
|
||||
DRI_CONF_BEGIN
|
||||
DRI_CONF_SECTION_PERFORMANCE
|
||||
|
|
@ -92,6 +79,17 @@ DRI_CONF_END;
|
|||
|
||||
const GLuint __driNConfigOptions = 11;
|
||||
|
||||
#include "intel_batchbuffer.h"
|
||||
#include "intel_buffers.h"
|
||||
#include "intel_bufmgr.h"
|
||||
#include "intel_chipset.h"
|
||||
#include "intel_fbo.h"
|
||||
#include "intel_screen.h"
|
||||
#include "intel_tex.h"
|
||||
#include "intel_regions.h"
|
||||
|
||||
#include "i915_drm.h"
|
||||
|
||||
#ifdef USE_NEW_INTERFACE
|
||||
static PFNGLXCREATECONTEXTMODES create_context_modes = NULL;
|
||||
#endif /*USE_NEW_INTERFACE */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue