mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
[OPENGL32]
* Move wine/debug.h inclusion to the main header. * Improve header inclusions. CORE-7716 svn path=/trunk/; revision=61729
This commit is contained in:
parent
bdbf7cd306
commit
909dd423a0
5 changed files with 4 additions and 6 deletions
|
@ -6,9 +6,9 @@
|
|||
*/
|
||||
|
||||
#include "opengl32.h"
|
||||
|
||||
#include <winreg.h>
|
||||
|
||||
#include <wine/debug.h>
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(opengl32);
|
||||
|
||||
struct Drv_Opengl_Info
|
||||
|
|
|
@ -16,6 +16,8 @@
|
|||
#include <winddi.h>
|
||||
#include <GL/gl.h>
|
||||
|
||||
#include <wine/debug.h>
|
||||
|
||||
#include "icd.h"
|
||||
|
||||
struct wgl_context
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
|
||||
/* MESA includes */
|
||||
#include <main/context.h>
|
||||
#include <main/formats.h>
|
||||
#include <main/framebuffer.h>
|
||||
#include <main/renderbuffer.h>
|
||||
#include <main/shared.h>
|
||||
|
@ -17,13 +16,11 @@
|
|||
#include <swrast/s_context.h>
|
||||
#include <swrast/s_renderbuffer.h>
|
||||
#include <swrast_setup/swrast_setup.h>
|
||||
#include <tnl/t_context.h>
|
||||
#include <tnl/t_pipeline.h>
|
||||
#include <tnl/tnl.h>
|
||||
#include <drivers/common/driverfuncs.h>
|
||||
#include <drivers/common/meta.h>
|
||||
|
||||
#include <wine/debug.h>
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(opengl32);
|
||||
|
||||
#define WIDTH_BYTES_ALIGN32(cx, bpp) ((((cx) * (bpp) + 31) & ~31) >> 3)
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
|
||||
#include <pseh/pseh2.h>
|
||||
|
||||
#include <wine/debug.h>
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(wgl);
|
||||
|
||||
static CRITICAL_SECTION dc_data_cs = {NULL, -1, 0, 0, 0, 0};
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
#include "opengl32.h"
|
||||
|
||||
#include <math.h>
|
||||
#include <wine/debug.h>
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(wgl);
|
||||
|
||||
/***********************************************************************
|
||||
|
|
Loading…
Reference in a new issue