mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-21 05:00:09 +01:00
mesa: added "main/" prefix to includes, remove some -I paths from Makefile.template
This commit is contained in:
parent
374e7fd6cc
commit
ecadb51bbc
344 changed files with 1292 additions and 1295 deletions
|
|
@ -39,10 +39,7 @@ SHARED_INCLUDES = \
|
|||
-I$(TOP)/src/mesa/drivers/dri/common \
|
||||
-Iserver \
|
||||
-I$(TOP)/include \
|
||||
-I$(TOP)/include/GL/internal \
|
||||
-I$(TOP)/src/mesa \
|
||||
-I$(TOP)/src/mesa/main \
|
||||
-I$(TOP)/src/mesa/glapi \
|
||||
-I$(TOP)/src/egl/main \
|
||||
-I$(TOP)/src/egl/drivers/dri \
|
||||
$(LIBDRM_CFLAGS)
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@
|
|||
#define MAP_FAILED ((void *)-1)
|
||||
#endif
|
||||
|
||||
#include "imports.h"
|
||||
#include "main/imports.h"
|
||||
#define None 0
|
||||
|
||||
#include "dri_util.h"
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@
|
|||
#include <drm.h>
|
||||
#include <drm_sarea.h>
|
||||
#include <xf86drm.h>
|
||||
#include "glheader.h"
|
||||
#include "main/glheader.h"
|
||||
#include "GL/internal/glcore.h"
|
||||
#include "GL/internal/dri_interface.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
|
||||
#include "mtypes.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/framebuffer.h"
|
||||
#include "main/renderbuffer.h"
|
||||
#include "main/imports.h"
|
||||
#include "drirenderbuffer.h"
|
||||
#include "framebuffer.h"
|
||||
#include "renderbuffer.h"
|
||||
#include "imports.h"
|
||||
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
#ifndef DRIRENDERBUFFER_H
|
||||
#define DRIRENDERBUFFER_H
|
||||
|
||||
#include "mtypes.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "dri_util.h"
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@
|
|||
*/
|
||||
|
||||
#include "utils.h"
|
||||
#include "dispatch.h"
|
||||
#include "glapi/dispatch.h"
|
||||
|
||||
#ifndef NULL
|
||||
# define NULL 0
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@
|
|||
#ifndef MMIO_H
|
||||
#define MMIO_H
|
||||
|
||||
#include "glheader.h"
|
||||
#include "main/glheader.h"
|
||||
|
||||
#if defined( __powerpc__ )
|
||||
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@
|
|||
* \author Ian Romanick <idr@us.ibm.com>
|
||||
*/
|
||||
|
||||
#include "colormac.h"
|
||||
#include "main/colormac.h"
|
||||
#include "spantmp_common.h"
|
||||
|
||||
#ifndef DBG
|
||||
|
|
|
|||
|
|
@ -44,10 +44,10 @@
|
|||
*/
|
||||
|
||||
#include "texmem.h"
|
||||
#include "simple_list.h"
|
||||
#include "imports.h"
|
||||
#include "macros.h"
|
||||
#include "texformat.h"
|
||||
#include "main/simple_list.h"
|
||||
#include "main/imports.h"
|
||||
#include "main/macros.h"
|
||||
#include "main/texformat.h"
|
||||
|
||||
#include <assert.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -39,8 +39,8 @@
|
|||
#ifndef DRI_TEXMEM_H
|
||||
#define DRI_TEXMEM_H
|
||||
|
||||
#include "mtypes.h"
|
||||
#include "mm.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/mm.h"
|
||||
#include "xf86drm.h"
|
||||
|
||||
struct dri_tex_heap;
|
||||
|
|
|
|||
|
|
@ -31,10 +31,10 @@
|
|||
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include "mtypes.h"
|
||||
#include "extensions.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/extensions.h"
|
||||
#include "glapi/dispatch.h"
|
||||
#include "utils.h"
|
||||
#include "dispatch.h"
|
||||
|
||||
int driDispatchRemapTable[ driDispatchRemapTable_size ];
|
||||
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@
|
|||
|
||||
#include <GL/gl.h>
|
||||
#include <GL/internal/dri_interface.h>
|
||||
#include "context.h"
|
||||
#include "main/context.h"
|
||||
|
||||
typedef struct __DRIutilversionRec2 __DRIutilversion2;
|
||||
|
||||
|
|
|
|||
|
|
@ -27,11 +27,11 @@
|
|||
*/
|
||||
/* $XFree86:$ */
|
||||
|
||||
#include "glheader.h"
|
||||
#include "main/glheader.h"
|
||||
#include "xf86drm.h"
|
||||
#include "mtypes.h"
|
||||
#include "macros.h"
|
||||
#include "dd.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/macros.h"
|
||||
#include "main/dd.h"
|
||||
#include "vblank.h"
|
||||
#include "xmlpool.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@
|
|||
#ifndef DRI_VBLANK_H
|
||||
#define DRI_VBLANK_H
|
||||
|
||||
#include "context.h"
|
||||
#include "main/context.h"
|
||||
#include "dri_util.h"
|
||||
#include "xmlconfig.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
* \author Felix Kuehling
|
||||
*/
|
||||
|
||||
#include "glheader.h"
|
||||
#include "main/glheader.h"
|
||||
|
||||
#include <string.h>
|
||||
#include <assert.h>
|
||||
|
|
@ -35,7 +35,7 @@
|
|||
#include <fcntl.h>
|
||||
#include <unistd.h>
|
||||
#include <errno.h>
|
||||
#include "imports.h"
|
||||
#include "main/imports.h"
|
||||
#include "dri_util.h"
|
||||
#include "xmlconfig.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -47,14 +47,14 @@
|
|||
#include "drirenderbuffer.h"
|
||||
|
||||
#include "buffers.h"
|
||||
#include "extensions.h"
|
||||
#include "framebuffer.h"
|
||||
#include "renderbuffer.h"
|
||||
#include "main/extensions.h"
|
||||
#include "main/framebuffer.h"
|
||||
#include "main/renderbuffer.h"
|
||||
#include "vbo/vbo.h"
|
||||
#include "swrast/swrast.h"
|
||||
#include "swrast_setup/swrast_setup.h"
|
||||
#include "tnl/tnl.h"
|
||||
#include "tnl/t_context.h"
|
||||
#include "tnl/tcontext.h"
|
||||
#include "tnl/t_pipeline.h"
|
||||
#include "drivers/common/driverfuncs.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -14,20 +14,20 @@
|
|||
|
||||
#include "utils.h"
|
||||
#include "buffers.h"
|
||||
#include "extensions.h"
|
||||
#include "framebuffer.h"
|
||||
#include "renderbuffer.h"
|
||||
#include "main/extensions.h"
|
||||
#include "main/framebuffer.h"
|
||||
#include "main/renderbuffer.h"
|
||||
#include "vbo/vbo.h"
|
||||
#include "swrast/swrast.h"
|
||||
#include "swrast_setup/swrast_setup.h"
|
||||
#include "tnl/tnl.h"
|
||||
#include "tnl/t_context.h"
|
||||
#include "tnl/tcontext.h"
|
||||
#include "tnl/t_pipeline.h"
|
||||
#include "drivers/common/driverfuncs.h"
|
||||
#include "drirenderbuffer.h"
|
||||
|
||||
#include "eglconfig.h"
|
||||
#include "eglcontext.h"
|
||||
#include "eglmain/context.h"
|
||||
#include "egldisplay.h"
|
||||
#include "egldriver.h"
|
||||
#include "eglglobals.h"
|
||||
|
|
|
|||
|
|
@ -30,8 +30,8 @@
|
|||
#include "ffb_lock.h"
|
||||
#include "ffb_bitmap.h"
|
||||
#include "swrast/swrast.h"
|
||||
#include "image.h"
|
||||
#include "macros.h"
|
||||
#include "main/image.h"
|
||||
#include "main/macros.h"
|
||||
|
||||
/* Compute ceiling of integer quotient of A divided by B: */
|
||||
#define CEILING( A, B ) ( (A) % (B) == 0 ? (A)/(B) : (A)/(B)+1 )
|
||||
|
|
|
|||
|
|
@ -25,10 +25,10 @@
|
|||
* David S. Miller <davem@redhat.com>
|
||||
*/
|
||||
|
||||
#include "mtypes.h"
|
||||
#include "extensions.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/extensions.h"
|
||||
|
||||
#include "mm.h"
|
||||
#include "main/mm.h"
|
||||
#include "ffb_dd.h"
|
||||
#include "ffb_span.h"
|
||||
#include "ffb_depth.h"
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
#include "dri_util.h"
|
||||
#include "drm.h"
|
||||
|
||||
#include "mtypes.h"
|
||||
#include "main/mtypes.h"
|
||||
|
||||
#include "ffb_xmesa.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -25,8 +25,9 @@
|
|||
* David S. Miller <davem@redhat.com>
|
||||
*/
|
||||
|
||||
#include "mtypes.h"
|
||||
#include "mm.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/mm.h"
|
||||
#include "main/extensions.h"
|
||||
#include "ffb_dd.h"
|
||||
#include "ffb_span.h"
|
||||
#include "ffb_depth.h"
|
||||
|
|
@ -35,7 +36,6 @@
|
|||
#include "ffb_tris.h"
|
||||
#include "ffb_clear.h"
|
||||
#include "ffb_lock.h"
|
||||
#include "extensions.h"
|
||||
|
||||
#define FFB_DATE "20021125"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/* $XFree86: xc/lib/GL/mesa/src/drv/ffb/ffb_dd.h,v 1.1 2000/06/20 05:08:38 dawes Exp $
|
||||
/* $XFree86: xc/lib/GL/mesa/src/drv/ffb/ffb_main/dd.h,v 1.1 2000/06/20 05:08:38 dawes Exp $
|
||||
*
|
||||
* GLX Hardware Device Driver for Sun Creator/Creator3D.
|
||||
* Copyright (C) 2000 David S. Miller
|
||||
|
|
@ -28,7 +28,7 @@
|
|||
#ifndef _FFB_DD_H
|
||||
#define _FFB_DD_H
|
||||
|
||||
#include "context.h"
|
||||
#include "main/context.h"
|
||||
|
||||
void ffbDDInitDriverFuncs(GLcontext *ctx);
|
||||
void ffbDDExtensionsInit(GLcontext *ctx);
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
* David S. Miller <davem@redhat.com>
|
||||
*/
|
||||
|
||||
#include "mtypes.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "swrast/swrast.h"
|
||||
#include "ffb_dd.h"
|
||||
#include "ffb_span.h"
|
||||
|
|
@ -33,7 +33,6 @@
|
|||
#include "ffb_depth.h"
|
||||
#include "ffb_lock.h"
|
||||
|
||||
#include "swrast/swrast.h"
|
||||
|
||||
#undef DEPTH_TRACE
|
||||
|
||||
|
|
|
|||
|
|
@ -25,8 +25,9 @@
|
|||
* David S. Miller <davem@redhat.com>
|
||||
*/
|
||||
|
||||
#include "mtypes.h"
|
||||
#include "mm.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/mm.h"
|
||||
#include "main/extensions.h"
|
||||
#include "ffb_dd.h"
|
||||
#include "ffb_span.h"
|
||||
#include "ffb_depth.h"
|
||||
|
|
@ -35,7 +36,6 @@
|
|||
#include "ffb_lines.h"
|
||||
#include "ffb_tris.h"
|
||||
#include "ffb_lock.h"
|
||||
#include "extensions.h"
|
||||
|
||||
#undef FFB_LINE_TRACE
|
||||
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
* David S. Miller <davem@redhat.com>
|
||||
*/
|
||||
|
||||
#include "mtypes.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "ffb_dd.h"
|
||||
#include "ffb_context.h"
|
||||
#include "ffb_vb.h"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/* $XFree86: xc/lib/GL/mesa/src/drv/ffb/ffb_points.h,v 1.2 2002/02/22 21:32:59 dawes Exp $ */
|
||||
/* $XFree86: xc/lib/GL/mesa/src/drv/ffb/ffb_main/points.h,v 1.2 2002/02/22 21:32:59 dawes Exp $ */
|
||||
|
||||
#ifndef _FFB_POINTS_H
|
||||
#define _FFB_POINTS_H
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
* David S. Miller <davem@redhat.com>
|
||||
*/
|
||||
|
||||
#include "mtypes.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "ffb_dd.h"
|
||||
#include "ffb_span.h"
|
||||
#include "ffb_context.h"
|
||||
|
|
|
|||
|
|
@ -25,9 +25,18 @@
|
|||
* David S. Miller <davem@redhat.com>
|
||||
*/
|
||||
|
||||
#include "mtypes.h"
|
||||
#include "colormac.h"
|
||||
#include "mm.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/colormac.h"
|
||||
#include "main/mm.h"
|
||||
#include "main/extensions.h"
|
||||
#include "main/enums.h"
|
||||
|
||||
#include "vbo/vbo.h"
|
||||
#include "tnl/tnl.h"
|
||||
#include "tnl/t_pipeline.h"
|
||||
#include "swrast/swrast.h"
|
||||
#include "swrast_setup/swrast_setup.h"
|
||||
|
||||
#include "ffb_dd.h"
|
||||
#include "ffb_span.h"
|
||||
#include "ffb_depth.h"
|
||||
|
|
@ -36,15 +45,6 @@
|
|||
#include "ffb_tris.h"
|
||||
#include "ffb_state.h"
|
||||
#include "ffb_lock.h"
|
||||
#include "extensions.h"
|
||||
#include "enums.h"
|
||||
|
||||
#include "swrast/swrast.h"
|
||||
#include "vbo/vbo.h"
|
||||
#include "tnl/tnl.h"
|
||||
#include "swrast_setup/swrast_setup.h"
|
||||
|
||||
#include "tnl/t_pipeline.h"
|
||||
|
||||
#undef STATE_TRACE
|
||||
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
* David S. Miller <davem@redhat.com>
|
||||
*/
|
||||
|
||||
#include "mtypes.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "ffb_dd.h"
|
||||
#include "ffb_span.h"
|
||||
#include "ffb_context.h"
|
||||
|
|
|
|||
|
|
@ -25,8 +25,8 @@
|
|||
* David S. Miller <davem@redhat.com>
|
||||
*/
|
||||
|
||||
#include "glheader.h"
|
||||
#include "mtypes.h"
|
||||
#include "main/glheader.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "ffb_tex.h"
|
||||
|
||||
/* No texture unit, all software. */
|
||||
|
|
|
|||
|
|
@ -25,12 +25,12 @@
|
|||
* David S. Miller <davem@redhat.com>
|
||||
*/
|
||||
|
||||
#include "glheader.h"
|
||||
#include "mtypes.h"
|
||||
#include "macros.h"
|
||||
#include "main/glheader.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/macros.h"
|
||||
#include "swrast/swrast.h"
|
||||
#include "swrast_setup/swrast_setup.h"
|
||||
#include "swrast/s_context.h"
|
||||
#include "swrast_setup/swrast_setup.h"
|
||||
#include "tnl/t_context.h"
|
||||
#include "tnl/t_pipeline.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@
|
|||
#include "ffb_xmesa.h"
|
||||
#include "ffb_context.h"
|
||||
#include "ffb_vb.h"
|
||||
#include "imports.h"
|
||||
#include "main/imports.h"
|
||||
#include "tnl/t_context.h"
|
||||
#include "swrast_setup/swrast_setup.h"
|
||||
#include "math/m_translate.h"
|
||||
|
|
|
|||
|
|
@ -3,8 +3,8 @@
|
|||
#ifndef _FFB_VB_H
|
||||
#define _FFB_VB_H
|
||||
|
||||
#include "mtypes.h"
|
||||
#include "macros.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/macros.h"
|
||||
#include "tnl/t_context.h"
|
||||
#include "swrast/swrast.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -25,20 +25,20 @@
|
|||
* David S. Miller <davem@redhat.com>
|
||||
*/
|
||||
|
||||
#include "glheader.h"
|
||||
#include "main/glheader.h"
|
||||
#include "api_noop.h"
|
||||
#include "context.h"
|
||||
#include "main/context.h"
|
||||
#include "light.h"
|
||||
#include "macros.h"
|
||||
#include "imports.h"
|
||||
#include "mtypes.h"
|
||||
#include "simple_list.h"
|
||||
#include "main/macros.h"
|
||||
#include "main/imports.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/simple_list.h"
|
||||
#include "vtxfmt.h"
|
||||
#include "ffb_xmesa.h"
|
||||
#include "ffb_context.h"
|
||||
#include "ffb_vb.h"
|
||||
#include "tnl/tnl.h"
|
||||
#include "tnl/t_context.h"
|
||||
#include "tnl/tcontext.h"
|
||||
|
||||
#include "ffb_vtxfmt.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -26,12 +26,12 @@
|
|||
*/
|
||||
|
||||
#include "ffb_xmesa.h"
|
||||
#include "context.h"
|
||||
#include "framebuffer.h"
|
||||
#include "matrix.h"
|
||||
#include "renderbuffer.h"
|
||||
#include "simple_list.h"
|
||||
#include "imports.h"
|
||||
#include "main/context.h"
|
||||
#include "main/framebuffer.h"
|
||||
#include "main/matrix.h"
|
||||
#include "main/renderbuffer.h"
|
||||
#include "main/simple_list.h"
|
||||
#include "main/imports.h"
|
||||
#include "utils.h"
|
||||
|
||||
#include "swrast/swrast.h"
|
||||
|
|
@ -226,7 +226,7 @@ ffbCreateContext(const __GLcontextModes *mesaVis,
|
|||
fmesa->driScreen = sPriv;
|
||||
fmesa->ffb_sarea = FFB_DRISHARE(sPriv->pSAREA);
|
||||
|
||||
/* Register and framebuffer hw pointers. */
|
||||
/* Register and framebuffer pointers. */
|
||||
fmesa->regs = ffbScreen->regs;
|
||||
fmesa->sfb32 = ffbScreen->sfb32;
|
||||
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
#include <sys/time.h>
|
||||
#include "dri_util.h"
|
||||
#include "mtypes.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "ffb_drishare.h"
|
||||
#include "ffb_regs.h"
|
||||
#include "ffb_dac.h"
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@
|
|||
* 3DLabs Gamma driver.
|
||||
*
|
||||
*/
|
||||
#include "gamma_context.h"
|
||||
#include "gammacontext.h"
|
||||
|
||||
#include "swrast/swrast.h"
|
||||
#include "swrast_setup/swrast_setup.h"
|
||||
|
|
@ -35,16 +35,16 @@
|
|||
|
||||
#include "drivers/common/driverfuncs.h"
|
||||
|
||||
#include "context.h"
|
||||
#include "simple_list.h"
|
||||
#include "imports.h"
|
||||
#include "matrix.h"
|
||||
#include "extensions.h"
|
||||
#include "main/context.h"
|
||||
#include "main/simple_list.h"
|
||||
#include "main/imports.h"
|
||||
#include "main/matrix.h"
|
||||
#include "main/extensions.h"
|
||||
#if defined(USE_X86_ASM)
|
||||
#include "x86/common_x86_asm.h"
|
||||
#endif
|
||||
#include "simple_list.h"
|
||||
#include "mm.h"
|
||||
#include "main/simple_list.h"
|
||||
#include "main/mm.h"
|
||||
|
||||
|
||||
#include "gamma_vb.h"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/* $XFree86: xc/lib/GL/mesa/src/drv/gamma/gamma_context.h,v 1.6 2002/12/16 16:18:50 dawes Exp $ */
|
||||
/* $XFree86: xc/lib/GL/mesa/src/drv/gamma/gammacontext.h,v 1.6 2002/12/16 16:18:50 dawes Exp $ */
|
||||
/*
|
||||
* Copyright 2001 by Alan Hourihane.
|
||||
*
|
||||
|
|
@ -32,12 +32,12 @@
|
|||
#include "drm_sarea.h"
|
||||
#include "colormac.h"
|
||||
#include "gamma_regs.h"
|
||||
#include "gamma_macros.h"
|
||||
#include "gamma_main/macros.h"
|
||||
#include "gamma_screen.h"
|
||||
#include "macros.h"
|
||||
#include "mtypes.h"
|
||||
#include "main/macros.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "glint_dri.h"
|
||||
#include "mm.h"
|
||||
#include "main/mm.h"
|
||||
|
||||
typedef union {
|
||||
unsigned int i;
|
||||
|
|
|
|||
|
|
@ -23,14 +23,14 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "gamma_context.h"
|
||||
#include "gammacontext.h"
|
||||
#include "gamma_vb.h"
|
||||
#include "gamma_lock.h"
|
||||
#if defined(USE_X86_ASM)
|
||||
#include "x86/common_x86_asm.h"
|
||||
#endif
|
||||
|
||||
#include "context.h"
|
||||
#include "main/context.h"
|
||||
#include "swrast/swrast.h"
|
||||
|
||||
#define GAMMA_DATE "20021125"
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
*/
|
||||
/* $XFree86: xc/lib/GL/mesa/src/drv/gamma/gamma_inithw.c,v 1.9 2002/10/30 12:51:29 alanh Exp $ */
|
||||
|
||||
#include "gamma_context.h"
|
||||
#include "gammacontext.h"
|
||||
#include "glint_dri.h"
|
||||
|
||||
void gammaInitHW( gammaContextPtr gmesa )
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* $XFree86: xc/lib/GL/mesa/src/drv/gamma/gamma_lock.c,v 1.4 2002/11/05 17:46:07 tsi Exp $ */
|
||||
|
||||
#include "gamma_context.h"
|
||||
#include "gammacontext.h"
|
||||
#include "gamma_lock.h"
|
||||
#include "drirenderbuffer.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/* $XFree86: xc/lib/GL/mesa/src/drv/gamma/gamma_macros.h,v 1.5 2002/02/22 21:33:02 dawes Exp $ */
|
||||
/* $XFree86: xc/lib/GL/mesa/src/drv/gamma/gamma_main/macros.h,v 1.5 2002/02/22 21:33:02 dawes Exp $ */
|
||||
/**************************************************************************
|
||||
|
||||
Copyright 1998-1999 Precision Insight, Inc., Cedar Park, Texas.
|
||||
|
|
|
|||
|
|
@ -25,15 +25,15 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "glheader.h"
|
||||
#include "context.h"
|
||||
#include "macros.h"
|
||||
#include "imports.h"
|
||||
#include "mtypes.h"
|
||||
#include "main/glheader.h"
|
||||
#include "main/context.h"
|
||||
#include "main/macros.h"
|
||||
#include "main/imports.h"
|
||||
#include "main/mtypes.h"
|
||||
|
||||
#include "tnl/t_context.h"
|
||||
#include "tnl/tcontext.h"
|
||||
|
||||
#include "gamma_context.h"
|
||||
#include "gammacontext.h"
|
||||
#include "gamma_tris.h"
|
||||
#include "gamma_vb.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -23,11 +23,11 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "gamma_context.h"
|
||||
#include "gammacontext.h"
|
||||
#include "gamma_vb.h"
|
||||
#include "glint_dri.h"
|
||||
|
||||
#include "imports.h"
|
||||
#include "main/imports.h"
|
||||
|
||||
gammaScreenPtr gammaCreateScreen( __DRIscreenPrivate *sPriv )
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* $XFree86: xc/lib/GL/mesa/src/drv/gamma/gamma_span.c,v 1.4 2002/11/05 17:46:07 tsi Exp $ */
|
||||
|
||||
#include "gamma_context.h"
|
||||
#include "gammacontext.h"
|
||||
#include "gamma_lock.h"
|
||||
#include "colormac.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -25,10 +25,10 @@
|
|||
* 3DLabs Gamma driver
|
||||
*/
|
||||
|
||||
#include "gamma_context.h"
|
||||
#include "gamma_macros.h"
|
||||
#include "gammacontext.h"
|
||||
#include "gamma_main/macros.h"
|
||||
#include "buffers.h"
|
||||
#include "macros.h"
|
||||
#include "main/macros.h"
|
||||
#include "glint_dri.h"
|
||||
#include "colormac.h"
|
||||
#include "swrast/swrast.h"
|
||||
|
|
|
|||
|
|
@ -3,19 +3,19 @@
|
|||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include "glheader.h"
|
||||
#include "mtypes.h"
|
||||
#include "imports.h"
|
||||
#include "simple_list.h"
|
||||
#include "enums.h"
|
||||
#include "texstore.h"
|
||||
#include "main/glheader.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/imports.h"
|
||||
#include "main/simple_list.h"
|
||||
#include "main/enums.h"
|
||||
#include "main/texstore.h"
|
||||
#include "teximage.h"
|
||||
#include "texformat.h"
|
||||
#include "main/texformat.h"
|
||||
#include "texobj.h"
|
||||
#include "swrast/swrast.h"
|
||||
|
||||
#include "mm.h"
|
||||
#include "gamma_context.h"
|
||||
#include "main/mm.h"
|
||||
#include "gammacontext.h"
|
||||
#include "colormac.h"
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -3,16 +3,16 @@
|
|||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include "glheader.h"
|
||||
#include "main/glheader.h"
|
||||
#include "colormac.h"
|
||||
#include "macros.h"
|
||||
#include "mtypes.h"
|
||||
#include "simple_list.h"
|
||||
#include "enums.h"
|
||||
#include "main/macros.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/simple_list.h"
|
||||
#include "main/enums.h"
|
||||
|
||||
#include "mm.h"
|
||||
#include "main/mm.h"
|
||||
#include "glint_dri.h"
|
||||
#include "gamma_context.h"
|
||||
#include "gammacontext.h"
|
||||
#include "gamma_lock.h"
|
||||
|
||||
void gammaDestroyTexObj(gammaContextPtr gmesa, gammaTextureObjectPtr t)
|
||||
|
|
|
|||
|
|
@ -3,14 +3,14 @@
|
|||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include "glheader.h"
|
||||
#include "macros.h"
|
||||
#include "mtypes.h"
|
||||
#include "simple_list.h"
|
||||
#include "enums.h"
|
||||
#include "main/glheader.h"
|
||||
#include "main/macros.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/simple_list.h"
|
||||
#include "main/enums.h"
|
||||
|
||||
#include "mm.h"
|
||||
#include "gamma_context.h"
|
||||
#include "main/mm.h"
|
||||
#include "gammacontext.h"
|
||||
|
||||
static void gammaSetTexImages( gammaContextPtr gmesa,
|
||||
struct gl_texture_object *tObj )
|
||||
|
|
|
|||
|
|
@ -25,19 +25,19 @@
|
|||
* 3DLabs Gamma driver.
|
||||
*/
|
||||
|
||||
#include "gamma_context.h"
|
||||
#include "gammacontext.h"
|
||||
#include "gamma_vb.h"
|
||||
#include "gamma_tris.h"
|
||||
|
||||
#include "glheader.h"
|
||||
#include "mtypes.h"
|
||||
#include "macros.h"
|
||||
#include "main/glheader.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/macros.h"
|
||||
#include "colormac.h"
|
||||
|
||||
#include "swrast/swrast.h"
|
||||
#include "swrast_setup/swrast_setup.h"
|
||||
#include "tnl/tnl.h"
|
||||
#include "tnl/t_context.h"
|
||||
#include "tnl/tcontext.h"
|
||||
#include "tnl/t_pipeline.h"
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -26,17 +26,17 @@
|
|||
* 3DLabs Gamma driver.
|
||||
*/
|
||||
|
||||
#include "glheader.h"
|
||||
#include "mtypes.h"
|
||||
#include "imports.h"
|
||||
#include "macros.h"
|
||||
#include "main/glheader.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/imports.h"
|
||||
#include "main/macros.h"
|
||||
#include "colormac.h"
|
||||
|
||||
#include "swrast_setup/swrast_setup.h"
|
||||
#include "tnl/t_context.h"
|
||||
#include "tnl/tcontext.h"
|
||||
#include "tnl/tnl.h"
|
||||
|
||||
#include "gamma_context.h"
|
||||
#include "gammacontext.h"
|
||||
#include "gamma_vb.h"
|
||||
#include "gamma_tris.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@
|
|||
#ifndef GAMMAVB_INC
|
||||
#define GAMMAVB_INC
|
||||
|
||||
#include "mtypes.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "swrast/swrast.h"
|
||||
|
||||
#define _GAMMA_NEW_VERTEX (_NEW_TEXTURE | \
|
||||
|
|
|
|||
|
|
@ -25,10 +25,10 @@
|
|||
* 3DLabs Gamma driver
|
||||
*/
|
||||
|
||||
#include "gamma_context.h"
|
||||
#include "gammacontext.h"
|
||||
#include "gamma_vb.h"
|
||||
#include "context.h"
|
||||
#include "matrix.h"
|
||||
#include "main/context.h"
|
||||
#include "main/matrix.h"
|
||||
#include "glint_dri.h"
|
||||
|
||||
#include "swrast/swrast.h"
|
||||
|
|
|
|||
|
|
@ -33,14 +33,14 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|||
*/
|
||||
|
||||
|
||||
#include "glheader.h"
|
||||
#include "context.h"
|
||||
#include "matrix.h"
|
||||
#include "simple_list.h"
|
||||
#include "extensions.h"
|
||||
#include "framebuffer.h"
|
||||
#include "imports.h"
|
||||
#include "points.h"
|
||||
#include "main/glheader.h"
|
||||
#include "main/context.h"
|
||||
#include "main/matrix.h"
|
||||
#include "main/simple_list.h"
|
||||
#include "main/extensions.h"
|
||||
#include "main/framebuffer.h"
|
||||
#include "main/imports.h"
|
||||
#include "main/points.h"
|
||||
|
||||
#include "swrast/swrast.h"
|
||||
#include "swrast_setup/swrast_setup.h"
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*
|
||||
*/
|
||||
/* $XFree86: xc/lib/GL/mesa/src/drv/i810/i810context.h,v 1.9 2002/12/16 16:18:51 dawes Exp $ */
|
||||
/* $XFree86: xc/lib/GL/mesa/src/drv/i810/main/context.h,v 1.9 2002/12/16 16:18:51 dawes Exp $ */
|
||||
|
||||
#ifndef I810CONTEXT_INC
|
||||
#define I810CONTEXT_INC
|
||||
|
|
@ -31,8 +31,8 @@ typedef struct i810_context_t *i810ContextPtr;
|
|||
typedef struct i810_texture_object_t *i810TextureObjectPtr;
|
||||
|
||||
#include "drm.h"
|
||||
#include "mtypes.h"
|
||||
#include "mm.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/mm.h"
|
||||
|
||||
#include "i810screen.h"
|
||||
#include "i810tex.h"
|
||||
|
|
|
|||
|
|
@ -2,17 +2,17 @@
|
|||
|
||||
#include <unistd.h> /* for usleep() */
|
||||
|
||||
#include "glheader.h"
|
||||
#include "mtypes.h"
|
||||
#include "macros.h"
|
||||
#include "dd.h"
|
||||
#include "main/glheader.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/macros.h"
|
||||
#include "main/dd.h"
|
||||
#include "swrast/swrast.h"
|
||||
#include "mm.h"
|
||||
#include "main/mm.h"
|
||||
|
||||
#include "i810screen.h"
|
||||
#include "i810_dri.h"
|
||||
|
||||
#include "i810context.h"
|
||||
#include "main/context.h"
|
||||
#include "i810ioctl.h"
|
||||
#include "i810state.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -31,11 +31,11 @@
|
|||
* dma buffers. Use strip/fan hardware acceleration where possible.
|
||||
*
|
||||
*/
|
||||
#include "glheader.h"
|
||||
#include "context.h"
|
||||
#include "macros.h"
|
||||
#include "imports.h"
|
||||
#include "mtypes.h"
|
||||
#include "main/glheader.h"
|
||||
#include "main/context.h"
|
||||
#include "main/macros.h"
|
||||
#include "main/imports.h"
|
||||
#include "main/mtypes.h"
|
||||
|
||||
#include "tnl/t_context.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -33,14 +33,14 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|||
*/
|
||||
|
||||
|
||||
#include "glheader.h"
|
||||
#include "imports.h"
|
||||
#include "context.h"
|
||||
#include "framebuffer.h"
|
||||
#include "fbobject.h"
|
||||
#include "matrix.h"
|
||||
#include "renderbuffer.h"
|
||||
#include "simple_list.h"
|
||||
#include "main/glheader.h"
|
||||
#include "main/imports.h"
|
||||
#include "main/context.h"
|
||||
#include "main/framebuffer.h"
|
||||
#include "main/fbobject.h"
|
||||
#include "main/matrix.h"
|
||||
#include "main/renderbuffer.h"
|
||||
#include "main/simple_list.h"
|
||||
#include "utils.h"
|
||||
|
||||
#include "i810screen.h"
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
#include "glheader.h"
|
||||
#include "macros.h"
|
||||
#include "mtypes.h"
|
||||
#include "colormac.h"
|
||||
#include "main/glheader.h"
|
||||
#include "main/macros.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/colormac.h"
|
||||
#include "swrast/swrast.h"
|
||||
|
||||
#include "i810screen.h"
|
||||
#include "i810_dri.h"
|
||||
|
||||
#include "i810span.h"
|
||||
#include "i810ioctl.h"
|
||||
#include "swrast/swrast.h"
|
||||
|
||||
|
||||
#define DBG 0
|
||||
|
|
|
|||
|
|
@ -2,11 +2,16 @@
|
|||
|
||||
#include <stdio.h>
|
||||
|
||||
#include "glheader.h"
|
||||
#include "context.h"
|
||||
#include "macros.h"
|
||||
#include "dd.h"
|
||||
#include "colormac.h"
|
||||
#include "main/glheader.h"
|
||||
#include "main/context.h"
|
||||
#include "main/macros.h"
|
||||
#include "main/dd.h"
|
||||
#include "main/colormac.h"
|
||||
#include "swrast/swrast.h"
|
||||
#include "tnl/tnl.h"
|
||||
#include "tnl/t_pipeline.h"
|
||||
#include "vbo/vbo.h"
|
||||
#include "swrast_setup/swrast_setup.h"
|
||||
|
||||
#include "texmem.h"
|
||||
|
||||
|
|
@ -20,12 +25,6 @@
|
|||
#include "i810tris.h"
|
||||
#include "i810ioctl.h"
|
||||
|
||||
#include "swrast/swrast.h"
|
||||
#include "tnl/tnl.h"
|
||||
#include "vbo/vbo.h"
|
||||
#include "swrast_setup/swrast_setup.h"
|
||||
|
||||
#include "tnl/t_pipeline.h"
|
||||
|
||||
static INLINE GLuint i810PackColor(GLuint format,
|
||||
GLubyte r, GLubyte g,
|
||||
|
|
|
|||
|
|
@ -23,20 +23,21 @@
|
|||
*/
|
||||
/* $XFree86: xc/lib/GL/mesa/src/drv/i810/i810tex.c,v 1.9 2002/10/30 12:51:33 alanh Exp $ */
|
||||
|
||||
#include "glheader.h"
|
||||
#include "mtypes.h"
|
||||
#include "imports.h"
|
||||
#include "simple_list.h"
|
||||
#include "enums.h"
|
||||
#include "texstore.h"
|
||||
#include "texformat.h"
|
||||
#include "teximage.h"
|
||||
#include "texmem.h"
|
||||
#include "texobj.h"
|
||||
#include "main/glheader.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/imports.h"
|
||||
#include "main/simple_list.h"
|
||||
#include "main/enums.h"
|
||||
#include "main/texstore.h"
|
||||
#include "main/texformat.h"
|
||||
#include "main/teximage.h"
|
||||
#include "main/texobj.h"
|
||||
#include "main/colormac.h"
|
||||
#include "main/texobj.h"
|
||||
#include "main/mm.h"
|
||||
#include "swrast/swrast.h"
|
||||
#include "colormac.h"
|
||||
#include "texobj.h"
|
||||
#include "mm.h"
|
||||
|
||||
#include "texmem.h"
|
||||
|
||||
#include "i810screen.h"
|
||||
#include "i810_dri.h"
|
||||
|
|
|
|||
|
|
@ -26,8 +26,8 @@
|
|||
#ifndef I810TEX_INC
|
||||
#define I810TEX_INC
|
||||
|
||||
#include "mtypes.h"
|
||||
#include "mm.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/mm.h"
|
||||
|
||||
#include "i810context.h"
|
||||
#include "i810_3d_reg.h"
|
||||
|
|
|
|||
|
|
@ -23,18 +23,17 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "glheader.h"
|
||||
#include "macros.h"
|
||||
#include "mtypes.h"
|
||||
#include "simple_list.h"
|
||||
#include "enums.h"
|
||||
#include "colormac.h"
|
||||
#include "mm.h"
|
||||
#include "texformat.h"
|
||||
#include "main/glheader.h"
|
||||
#include "main/macros.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/simple_list.h"
|
||||
#include "main/enums.h"
|
||||
#include "main/colormac.h"
|
||||
#include "main/mm.h"
|
||||
#include "main/texformat.h"
|
||||
|
||||
#include "i810screen.h"
|
||||
#include "i810_dri.h"
|
||||
|
||||
#include "i810context.h"
|
||||
#include "i810tex.h"
|
||||
#include "i810state.h"
|
||||
|
|
|
|||
|
|
@ -22,14 +22,13 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "glheader.h"
|
||||
#include "macros.h"
|
||||
#include "mtypes.h"
|
||||
#include "texformat.h"
|
||||
#include "simple_list.h"
|
||||
#include "enums.h"
|
||||
|
||||
#include "mm.h"
|
||||
#include "main/glheader.h"
|
||||
#include "main/macros.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/texformat.h"
|
||||
#include "main/simple_list.h"
|
||||
#include "main/enums.h"
|
||||
#include "main/mm.h"
|
||||
|
||||
#include "i810screen.h"
|
||||
#include "i810_dri.h"
|
||||
|
|
|
|||
|
|
@ -31,11 +31,11 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|||
* Keith Whitwell <keith@tungstengraphics.com>
|
||||
*/
|
||||
|
||||
#include "glheader.h"
|
||||
#include "mtypes.h"
|
||||
#include "macros.h"
|
||||
#include "enums.h"
|
||||
#include "colormac.h"
|
||||
#include "main/glheader.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/macros.h"
|
||||
#include "main/enums.h"
|
||||
#include "main/colormac.h"
|
||||
|
||||
#include "swrast/swrast.h"
|
||||
#include "swrast_setup/swrast_setup.h"
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
#ifndef I810TRIS_INC
|
||||
#define I810TRIS_INC
|
||||
|
||||
#include "mtypes.h"
|
||||
#include "main/mtypes.h"
|
||||
|
||||
extern void i810PrintRenderState( const char *msg, GLuint state );
|
||||
extern void i810InitTriFuncs( GLcontext *ctx );
|
||||
|
|
|
|||
|
|
@ -25,18 +25,17 @@
|
|||
/* $XFree86: xc/lib/GL/mesa/src/drv/i810/i810vb.c,v 1.13 2003/03/26 20:43:48 tsi Exp $ */
|
||||
|
||||
|
||||
#include "glheader.h"
|
||||
#include "mtypes.h"
|
||||
#include "imports.h"
|
||||
#include "macros.h"
|
||||
#include "colormac.h"
|
||||
#include "main/glheader.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/imports.h"
|
||||
#include "main/macros.h"
|
||||
#include "main/colormac.h"
|
||||
|
||||
#include "swrast_setup/swrast_setup.h"
|
||||
#include "tnl/t_context.h"
|
||||
|
||||
#include "i810screen.h"
|
||||
#include "i810_dri.h"
|
||||
|
||||
#include "i810context.h"
|
||||
#include "i810vb.h"
|
||||
#include "i810ioctl.h"
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
#ifndef I810VB_INC
|
||||
#define I810VB_INC
|
||||
|
||||
#include "mtypes.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "swrast/swrast.h"
|
||||
|
||||
#define _I810_NEW_VERTEX (_NEW_TEXTURE | \
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@
|
|||
**************************************************************************/
|
||||
|
||||
#include "i830_context.h"
|
||||
#include "imports.h"
|
||||
#include "main/imports.h"
|
||||
#include "texmem.h"
|
||||
#include "intel_tex.h"
|
||||
#include "tnl/tnl.h"
|
||||
|
|
|
|||
|
|
@ -25,10 +25,10 @@
|
|||
*
|
||||
**************************************************************************/
|
||||
|
||||
#include "glheader.h"
|
||||
#include "enums.h"
|
||||
#include "mtypes.h"
|
||||
#include "macros.h"
|
||||
#include "main/glheader.h"
|
||||
#include "main/enums.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/macros.h"
|
||||
#include "utils.h"
|
||||
|
||||
#include "intel_screen.h"
|
||||
|
|
|
|||
|
|
@ -26,11 +26,11 @@
|
|||
**************************************************************************/
|
||||
|
||||
|
||||
#include "glheader.h"
|
||||
#include "context.h"
|
||||
#include "macros.h"
|
||||
#include "enums.h"
|
||||
#include "dd.h"
|
||||
#include "main/glheader.h"
|
||||
#include "main/context.h"
|
||||
#include "main/macros.h"
|
||||
#include "main/enums.h"
|
||||
#include "main/dd.h"
|
||||
|
||||
#include "texmem.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -25,18 +25,18 @@
|
|||
*
|
||||
**************************************************************************/
|
||||
|
||||
#include "glheader.h"
|
||||
#include "mtypes.h"
|
||||
#include "imports.h"
|
||||
#include "simple_list.h"
|
||||
#include "enums.h"
|
||||
#include "image.h"
|
||||
#include "texstore.h"
|
||||
#include "texformat.h"
|
||||
#include "texmem.h"
|
||||
#include "main/glheader.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/imports.h"
|
||||
#include "main/simple_list.h"
|
||||
#include "main/enums.h"
|
||||
#include "main/image.h"
|
||||
#include "main/mm.h"
|
||||
#include "main/texstore.h"
|
||||
#include "main/texformat.h"
|
||||
#include "swrast/swrast.h"
|
||||
|
||||
#include "mm.h"
|
||||
#include "texmem.h"
|
||||
|
||||
#include "i830_context.h"
|
||||
#include "i830_reg.h"
|
||||
|
|
|
|||
|
|
@ -25,15 +25,14 @@
|
|||
*
|
||||
**************************************************************************/
|
||||
|
||||
#include "glheader.h"
|
||||
#include "macros.h"
|
||||
#include "mtypes.h"
|
||||
#include "simple_list.h"
|
||||
#include "enums.h"
|
||||
#include "texformat.h"
|
||||
#include "texstore.h"
|
||||
|
||||
#include "mm.h"
|
||||
#include "main/glheader.h"
|
||||
#include "main/macros.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/simple_list.h"
|
||||
#include "main/enums.h"
|
||||
#include "main/texformat.h"
|
||||
#include "main/texstore.h"
|
||||
#include "main/mm.h"
|
||||
|
||||
#include "intel_screen.h"
|
||||
#include "intel_tex.h"
|
||||
|
|
|
|||
|
|
@ -25,9 +25,9 @@
|
|||
*
|
||||
**************************************************************************/
|
||||
|
||||
#include "mtypes.h"
|
||||
#include "enums.h"
|
||||
#include "texformat.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/enums.h"
|
||||
#include "main/texformat.h"
|
||||
|
||||
#include "intel_mipmap_tree.h"
|
||||
#include "intel_tex.h"
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
*
|
||||
**************************************************************************/
|
||||
|
||||
#include "glapi.h"
|
||||
#include "glapi/glapi.h"
|
||||
|
||||
#include "i830_context.h"
|
||||
#include "i830_reg.h"
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@
|
|||
**************************************************************************/
|
||||
|
||||
#include "i915_context.h"
|
||||
#include "imports.h"
|
||||
#include "main/imports.h"
|
||||
#include "intel_tex.h"
|
||||
#include "intel_tris.h"
|
||||
#include "tnl/t_context.h"
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
*
|
||||
**************************************************************************/
|
||||
|
||||
#include "imports.h"
|
||||
#include "main/imports.h"
|
||||
|
||||
#include "i915_reg.h"
|
||||
#include "i915_context.h"
|
||||
|
|
|
|||
|
|
@ -25,9 +25,9 @@
|
|||
*
|
||||
**************************************************************************/
|
||||
|
||||
#include "glheader.h"
|
||||
#include "macros.h"
|
||||
#include "enums.h"
|
||||
#include "main/glheader.h"
|
||||
#include "main/macros.h"
|
||||
#include "main/enums.h"
|
||||
|
||||
#include "shader/prog_instruction.h"
|
||||
#include "shader/prog_parameter.h"
|
||||
|
|
|
|||
|
|
@ -25,10 +25,10 @@
|
|||
*
|
||||
**************************************************************************/
|
||||
|
||||
#include "glheader.h"
|
||||
#include "enums.h"
|
||||
#include "mtypes.h"
|
||||
#include "macros.h"
|
||||
#include "main/glheader.h"
|
||||
#include "main/enums.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/macros.h"
|
||||
#include "utils.h"
|
||||
|
||||
#include "intel_screen.h"
|
||||
|
|
|
|||
|
|
@ -27,9 +27,9 @@
|
|||
|
||||
#include <strings.h>
|
||||
|
||||
#include "glheader.h"
|
||||
#include "macros.h"
|
||||
#include "enums.h"
|
||||
#include "main/glheader.h"
|
||||
#include "main/macros.h"
|
||||
#include "main/enums.h"
|
||||
|
||||
#include "tnl/t_context.h"
|
||||
#include "intel_batchbuffer.h"
|
||||
|
|
|
|||
|
|
@ -26,11 +26,11 @@
|
|||
**************************************************************************/
|
||||
|
||||
|
||||
#include "glheader.h"
|
||||
#include "context.h"
|
||||
#include "macros.h"
|
||||
#include "enums.h"
|
||||
#include "dd.h"
|
||||
#include "main/glheader.h"
|
||||
#include "main/context.h"
|
||||
#include "main/macros.h"
|
||||
#include "main/enums.h"
|
||||
#include "main/dd.h"
|
||||
#include "tnl/tnl.h"
|
||||
#include "tnl/t_context.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -25,18 +25,18 @@
|
|||
*
|
||||
**************************************************************************/
|
||||
|
||||
#include "glheader.h"
|
||||
#include "mtypes.h"
|
||||
#include "imports.h"
|
||||
#include "simple_list.h"
|
||||
#include "enums.h"
|
||||
#include "image.h"
|
||||
#include "texstore.h"
|
||||
#include "texformat.h"
|
||||
#include "texmem.h"
|
||||
#include "main/glheader.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/imports.h"
|
||||
#include "main/simple_list.h"
|
||||
#include "main/enums.h"
|
||||
#include "main/image.h"
|
||||
#include "main/mm.h"
|
||||
#include "main/texstore.h"
|
||||
#include "main/texformat.h"
|
||||
#include "swrast/swrast.h"
|
||||
|
||||
#include "mm.h"
|
||||
#include "texmem.h"
|
||||
|
||||
#include "i915_context.h"
|
||||
#include "i915_reg.h"
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@
|
|||
|
||||
#include "intel_mipmap_tree.h"
|
||||
#include "intel_tex_layout.h"
|
||||
#include "macros.h"
|
||||
#include "main/macros.h"
|
||||
#include "intel_context.h"
|
||||
|
||||
#define FILE_DEBUG_FLAG DEBUG_TEXTURE
|
||||
|
|
|
|||
|
|
@ -25,9 +25,9 @@
|
|||
*
|
||||
**************************************************************************/
|
||||
|
||||
#include "mtypes.h"
|
||||
#include "enums.h"
|
||||
#include "texformat.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/enums.h"
|
||||
#include "main/texformat.h"
|
||||
|
||||
#include "intel_mipmap_tree.h"
|
||||
#include "intel_tex.h"
|
||||
|
|
|
|||
|
|
@ -27,11 +27,11 @@
|
|||
|
||||
|
||||
|
||||
#include "glheader.h"
|
||||
#include "mtypes.h"
|
||||
#include "imports.h"
|
||||
#include "macros.h"
|
||||
#include "colormac.h"
|
||||
#include "main/glheader.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/imports.h"
|
||||
#include "main/macros.h"
|
||||
#include "main/colormac.h"
|
||||
|
||||
#include "tnl/t_context.h"
|
||||
#include "tnl/t_vertex.h"
|
||||
|
|
@ -44,7 +44,7 @@
|
|||
#include "i915_reg.h"
|
||||
#include "i915_context.h"
|
||||
|
||||
#include "glapi.h"
|
||||
#include "glapi/glapi.h"
|
||||
|
||||
static void
|
||||
i915_render_prevalidate(struct intel_context *intel)
|
||||
|
|
|
|||
|
|
@ -25,12 +25,12 @@
|
|||
*
|
||||
**************************************************************************/
|
||||
|
||||
#include "glheader.h"
|
||||
#include "enums.h"
|
||||
#include "mtypes.h"
|
||||
#include "macros.h"
|
||||
#include "image.h"
|
||||
#include "bufferobj.h"
|
||||
#include "main/glheader.h"
|
||||
#include "main/enums.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/macros.h"
|
||||
#include "main/image.h"
|
||||
#include "main/bufferobj.h"
|
||||
#include "swrast/swrast.h"
|
||||
|
||||
#include "intel_screen.h"
|
||||
|
|
|
|||
|
|
@ -30,12 +30,12 @@
|
|||
* dma buffers. Use strip/fan hardware acceleration where possible.
|
||||
*
|
||||
*/
|
||||
#include "glheader.h"
|
||||
#include "context.h"
|
||||
#include "macros.h"
|
||||
#include "imports.h"
|
||||
#include "mtypes.h"
|
||||
#include "enums.h"
|
||||
#include "main/glheader.h"
|
||||
#include "main/context.h"
|
||||
#include "main/macros.h"
|
||||
#include "main/imports.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/enums.h"
|
||||
|
||||
#include "tnl/t_context.h"
|
||||
#include "tnl/t_vertex.h"
|
||||
|
|
|
|||
|
|
@ -26,12 +26,12 @@
|
|||
**************************************************************************/
|
||||
|
||||
|
||||
#include "glheader.h"
|
||||
#include "context.h"
|
||||
#include "macros.h"
|
||||
#include "enums.h"
|
||||
#include "colormac.h"
|
||||
#include "dd.h"
|
||||
#include "main/glheader.h"
|
||||
#include "main/context.h"
|
||||
#include "main/macros.h"
|
||||
#include "main/enums.h"
|
||||
#include "main/colormac.h"
|
||||
#include "main/dd.h"
|
||||
|
||||
#include "intel_screen.h"
|
||||
#include "intel_context.h"
|
||||
|
|
|
|||
|
|
@ -31,13 +31,13 @@
|
|||
* primitives into it.
|
||||
*/
|
||||
|
||||
#include "glheader.h"
|
||||
#include "context.h"
|
||||
#include "macros.h"
|
||||
#include "enums.h"
|
||||
#include "texobj.h"
|
||||
#include "state.h"
|
||||
#include "dd.h"
|
||||
#include "main/glheader.h"
|
||||
#include "main/context.h"
|
||||
#include "main/macros.h"
|
||||
#include "main/enums.h"
|
||||
#include "main/texobj.h"
|
||||
#include "main/state.h"
|
||||
#include "main/dd.h"
|
||||
|
||||
#include "swrast/swrast.h"
|
||||
#include "swrast_setup/swrast_setup.h"
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@
|
|||
#ifndef INTELTRIS_INC
|
||||
#define INTELTRIS_INC
|
||||
|
||||
#include "mtypes.h"
|
||||
#include "main/mtypes.h"
|
||||
|
||||
#define INTEL_VB_SIZE (32 * 1024)
|
||||
/** 3 dwords of state_immediate and 2 of 3dprim, in intel_flush_prim */
|
||||
|
|
|
|||
|
|
@ -34,8 +34,8 @@
|
|||
#include "brw_state.h"
|
||||
#include "brw_defines.h"
|
||||
#include "brw_util.h"
|
||||
#include "macros.h"
|
||||
#include "enums.h"
|
||||
#include "main/macros.h"
|
||||
#include "main/enums.h"
|
||||
|
||||
static void prepare_cc_vp( struct brw_context *brw )
|
||||
{
|
||||
|
|
|
|||
|
|
@ -29,9 +29,9 @@
|
|||
* Keith Whitwell <keith@tungstengraphics.com>
|
||||
*/
|
||||
|
||||
#include "glheader.h"
|
||||
#include "macros.h"
|
||||
#include "enums.h"
|
||||
#include "main/glheader.h"
|
||||
#include "main/macros.h"
|
||||
#include "main/enums.h"
|
||||
|
||||
#include "intel_batchbuffer.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -29,11 +29,11 @@
|
|||
* Keith Whitwell <keith@tungstengraphics.com>
|
||||
*/
|
||||
|
||||
#include "glheader.h"
|
||||
#include "macros.h"
|
||||
#include "enums.h"
|
||||
|
||||
#include "main/glheader.h"
|
||||
#include "main/macros.h"
|
||||
#include "main/enums.h"
|
||||
#include "shader/program.h"
|
||||
|
||||
#include "intel_batchbuffer.h"
|
||||
|
||||
#include "brw_defines.h"
|
||||
|
|
|
|||
|
|
@ -29,11 +29,11 @@
|
|||
* Keith Whitwell <keith@tungstengraphics.com>
|
||||
*/
|
||||
|
||||
#include "glheader.h"
|
||||
#include "macros.h"
|
||||
#include "enums.h"
|
||||
|
||||
#include "main/glheader.h"
|
||||
#include "main/macros.h"
|
||||
#include "main/enums.h"
|
||||
#include "shader/program.h"
|
||||
|
||||
#include "intel_batchbuffer.h"
|
||||
|
||||
#include "brw_defines.h"
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@
|
|||
#include "brw_context.h"
|
||||
#include "brw_state.h"
|
||||
#include "brw_defines.h"
|
||||
#include "macros.h"
|
||||
#include "main/macros.h"
|
||||
|
||||
struct brw_clip_unit_key {
|
||||
unsigned int total_grf;
|
||||
|
|
|
|||
|
|
@ -29,11 +29,11 @@
|
|||
* Keith Whitwell <keith@tungstengraphics.com>
|
||||
*/
|
||||
|
||||
#include "glheader.h"
|
||||
#include "macros.h"
|
||||
#include "enums.h"
|
||||
|
||||
#include "main/glheader.h"
|
||||
#include "main/macros.h"
|
||||
#include "main/enums.h"
|
||||
#include "shader/program.h"
|
||||
|
||||
#include "intel_batchbuffer.h"
|
||||
|
||||
#include "brw_defines.h"
|
||||
|
|
|
|||
|
|
@ -29,11 +29,11 @@
|
|||
* Keith Whitwell <keith@tungstengraphics.com>
|
||||
*/
|
||||
|
||||
#include "glheader.h"
|
||||
#include "macros.h"
|
||||
#include "enums.h"
|
||||
|
||||
#include "main/glheader.h"
|
||||
#include "main/macros.h"
|
||||
#include "main/enums.h"
|
||||
#include "shader/program.h"
|
||||
|
||||
#include "intel_batchbuffer.h"
|
||||
|
||||
#include "brw_defines.h"
|
||||
|
|
|
|||
|
|
@ -30,11 +30,11 @@
|
|||
*/
|
||||
|
||||
|
||||
#include "glheader.h"
|
||||
#include "macros.h"
|
||||
#include "enums.h"
|
||||
|
||||
#include "main/glheader.h"
|
||||
#include "main/macros.h"
|
||||
#include "main/enums.h"
|
||||
#include "shader/program.h"
|
||||
|
||||
#include "intel_batchbuffer.h"
|
||||
|
||||
#include "brw_defines.h"
|
||||
|
|
|
|||
|
|
@ -30,11 +30,15 @@
|
|||
*/
|
||||
|
||||
|
||||
#include "main/imports.h"
|
||||
#include "main/api_noop.h"
|
||||
#include "main/vtxfmt.h"
|
||||
#include "shader/shader_api.h"
|
||||
|
||||
#include "brw_context.h"
|
||||
#include "brw_defines.h"
|
||||
#include "brw_draw.h"
|
||||
#include "brw_vs.h"
|
||||
#include "imports.h"
|
||||
#include "intel_tex.h"
|
||||
#include "intel_blit.h"
|
||||
#include "intel_batchbuffer.h"
|
||||
|
|
@ -43,10 +47,7 @@
|
|||
#include "tnl/t_pipeline.h"
|
||||
|
||||
#include "utils.h"
|
||||
#include "api_noop.h"
|
||||
#include "vtxfmt.h"
|
||||
|
||||
#include "shader/shader_api.h"
|
||||
|
||||
/***************************************
|
||||
* Mesa's Driver Functions
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@
|
|||
|
||||
#include "intel_context.h"
|
||||
#include "brw_structs.h"
|
||||
#include "imports.h"
|
||||
#include "main/imports.h"
|
||||
|
||||
|
||||
/* Glossary:
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue