* Auto* build fixes

* Added missing includes to math/*
This commit is contained in:
Jon Taylor 2000-11-18 08:10:21 +00:00
parent 5a9026c65d
commit 912d3a04c1
7 changed files with 20 additions and 16 deletions

View File

@ -292,30 +292,30 @@ void GGIread_rgba_pixels(const GLcontext *ctx,
} }
} }
int GGIsetup_driver(GGIMesaContext ggictx,struct ggi_mesa_info *info) int GGIsetup_driver(GGIMesaContext ggictx, struct ggi_mesa_info *info)
{ {
GLcontext *ctx=ggictx->gl_ctx; GLcontext *ctx = ggictx->gl_ctx;
ctx->Driver.WriteRGBASpan = GGIwrite_rgba_span; ctx->Driver.WriteRGBASpan = GGIwrite_rgba_span;
ctx->Driver.WriteRGBSpan = GGIwrite_rgb_span; ctx->Driver.WriteRGBSpan = GGIwrite_rgb_span;
ctx->Driver.WriteMonoRGBASpan = GGIwrite_mono_span; // ctx->Driver.WriteMonoRGBASpan = GGIwrite_mono_span;
ctx->Driver.WriteRGBAPixels = GGIwrite_rgba_pixels; ctx->Driver.WriteRGBAPixels = GGIwrite_rgba_pixels;
ctx->Driver.WriteMonoRGBAPixels = GGIwrite_mono_pixels; // ctx->Driver.WriteMonoRGBAPixels = GGIwrite_mono_pixels;
ctx->Driver.WriteCI32Span = GGIwrite_ci32_span; ctx->Driver.WriteCI32Span = GGIwrite_ci32_span;
ctx->Driver.WriteCI8Span = GGIwrite_ci8_span; ctx->Driver.WriteCI8Span = GGIwrite_ci8_span;
ctx->Driver.WriteMonoCISpan = GGIwrite_mono_span; // ctx->Driver.WriteMonoCISpan = GGIwrite_mono_span;
ctx->Driver.WriteCI32Pixels = GGIwrite_ci32_pixels; ctx->Driver.WriteCI32Pixels = GGIwrite_ci32_pixels;
ctx->Driver.WriteMonoCIPixels = GGIwrite_mono_pixels; // ctx->Driver.WriteMonoCIPixels = GGIwrite_mono_pixels;
ctx->Driver.ReadCI32Span = GGIread_ci32_span; ctx->Driver.ReadCI32Span = GGIread_ci32_span;
ctx->Driver.ReadRGBASpan = GGIread_rgba_span; ctx->Driver.ReadRGBASpan = GGIread_rgba_span;
ctx->Driver.ReadCI32Pixels = GGIread_ci32_pixels; ctx->Driver.ReadCI32Pixels = GGIread_ci32_pixels;
ctx->Driver.ReadRGBAPixels = GGIread_rgba_pixels; ctx->Driver.ReadRGBAPixels = GGIread_rgba_pixels;
info->red_bits=R; info->red_bits = R;
info->green_bits=G; info->green_bits =G;
info->blue_bits=B; info->blue_bits = B;
return 0; return 0;
} }

View File

@ -32,7 +32,6 @@
#include "context.h" #include "context.h"
#include "matrix.h" #include "matrix.h"
#include "types.h" #include "types.h"
#include "vb.h"
#include "macros.h" #include "macros.h"
#include "depth.h" #include "depth.h"

View File

@ -1,4 +1,4 @@
/* $Id: m_matrix.c,v 1.1 2000/11/16 21:05:41 keithw Exp $ */ /* $Id: m_matrix.c,v 1.2 2000/11/18 08:10:24 jtaylor Exp $ */
/* /*
* Mesa 3-D graphics library * Mesa 3-D graphics library
@ -34,6 +34,8 @@
* 3. Transformation of a point p by a matrix M is: p' = M * p * 3. Transformation of a point p by a matrix M is: p' = M * p
*/ */
#include <math.h>
#include <tgmath.h>
#include "glheader.h" #include "glheader.h"
#include "macros.h" #include "macros.h"
@ -42,7 +44,6 @@
#include "m_matrix.h" #include "m_matrix.h"
static const char *types[] = { static const char *types[] = {
"MATRIX_GENERAL", "MATRIX_GENERAL",
"MATRIX_IDENTITY", "MATRIX_IDENTITY",

View File

@ -1,4 +1,4 @@
/* $Id: m_xform.c,v 1.2 2000/11/17 21:01:49 brianp Exp $ */ /* $Id: m_xform.c,v 1.3 2000/11/18 08:10:24 jtaylor Exp $ */
/* /*
* Mesa 3-D graphics library * Mesa 3-D graphics library
@ -35,6 +35,7 @@
* 3. Transformation of a point p by a matrix M is: p' = M * p * 3. Transformation of a point p by a matrix M is: p' = M * p
*/ */
#include <math.h>
#include "glheader.h" #include "glheader.h"
#include "macros.h" #include "macros.h"

View File

@ -196,6 +196,6 @@ _tnl_MakeCurrent( GLcontext *ctx,
GLframebuffer *readBuffer ) GLframebuffer *readBuffer )
{ {
#ifndef THREADS #ifndef THREADS
SET_IMMEDIATE(newCtx, newCtx->input); SET_IMMEDIATE( ctx, TNL_VB(ctx)->IM );
#endif #endif
} }

View File

@ -1,4 +1,4 @@
/* $Id: 3dnow.c,v 1.9 2000/11/16 21:05:41 keithw Exp $ */ /* $Id: 3dnow.c,v 1.10 2000/11/18 08:10:23 jtaylor Exp $ */
/* /*
* Mesa 3-D graphics library * Mesa 3-D graphics library
@ -34,6 +34,8 @@
#include "types.h" #include "types.h"
#include "3dnow.h" #include "3dnow.h"
#include "../tnl/t_context.h"
#include "math/m_vertices.h" #include "math/m_vertices.h"
#include "math/m_xform.h" #include "math/m_xform.h"

View File

@ -1,4 +1,4 @@
/* $Id: x86.c,v 1.10 2000/11/16 21:05:41 keithw Exp $ */ /* $Id: x86.c,v 1.11 2000/11/18 08:10:23 jtaylor Exp $ */
/* /*
* Mesa 3-D graphics library * Mesa 3-D graphics library
@ -33,6 +33,7 @@
#include "types.h" #include "types.h"
#include "math/m_vertices.h" #include "math/m_vertices.h"
#include "math/m_xform.h" #include "math/m_xform.h"
#include "../tnl/t_context.h"
#include "x86.h" #include "x86.h"
#ifdef DEBUG #ifdef DEBUG