blob: 82f6d7884c927736103825f62da82bdf95c242db [file] [log] [blame]
Brian Paul08836342001-03-03 20:33:27 +00001/* $Id: light.h,v 1.11 2001/03/03 20:33:27 brianp Exp $ */
jtgafb833d1999-08-19 00:55:39 +00002
3/*
4 * Mesa 3-D graphics library
Brian Paulba643a22000-10-28 18:34:48 +00005 * Version: 3.5
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +00006 *
Brian Paulde82d062000-06-26 23:37:46 +00007 * Copyright (C) 1999-2000 Brian Paul All Rights Reserved.
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +00008 *
jtgafb833d1999-08-19 00:55:39 +00009 * Permission is hereby granted, free of charge, to any person obtaining a
10 * copy of this software and associated documentation files (the "Software"),
11 * to deal in the Software without restriction, including without limitation
12 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
13 * and/or sell copies of the Software, and to permit persons to whom the
14 * Software is furnished to do so, subject to the following conditions:
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +000015 *
jtgafb833d1999-08-19 00:55:39 +000016 * The above copyright notice and this permission notice shall be included
17 * in all copies or substantial portions of the Software.
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +000018 *
jtgafb833d1999-08-19 00:55:39 +000019 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
23 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
24 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 */
26
27
jtgafb833d1999-08-19 00:55:39 +000028#ifndef LIGHT_H
29#define LIGHT_H
30
31
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +000032#include "mtypes.h"
jtgafb833d1999-08-19 00:55:39 +000033
jtgafb833d1999-08-19 00:55:39 +000034
Brian Paulfbd8f211999-11-11 01:22:25 +000035extern void
36_mesa_ShadeModel( GLenum mode );
jtgafb833d1999-08-19 00:55:39 +000037
Brian Paulfbd8f211999-11-11 01:22:25 +000038extern void
39_mesa_ColorMaterial( GLenum face, GLenum mode );
jtgafb833d1999-08-19 00:55:39 +000040
Brian Paulfbd8f211999-11-11 01:22:25 +000041extern void
42_mesa_Lightf( GLenum light, GLenum pname, GLfloat param );
jtgafb833d1999-08-19 00:55:39 +000043
Brian Paulfbd8f211999-11-11 01:22:25 +000044extern void
45_mesa_Lightfv( GLenum light, GLenum pname, const GLfloat *params );
46
47extern void
48_mesa_Lightiv( GLenum light, GLenum pname, const GLint *params );
49
50extern void
51_mesa_Lighti( GLenum light, GLenum pname, GLint param );
52
53extern void
54_mesa_LightModelf( GLenum pname, GLfloat param );
55
56extern void
57_mesa_LightModelfv( GLenum pname, const GLfloat *params );
58
59extern void
60_mesa_LightModeli( GLenum pname, GLint param );
61
62extern void
63_mesa_LightModeliv( GLenum pname, const GLint *params );
64
65extern void
Brian Paulfbd8f211999-11-11 01:22:25 +000066_mesa_GetLightfv( GLenum light, GLenum pname, GLfloat *params );
67
68extern void
69_mesa_GetLightiv( GLenum light, GLenum pname, GLint *params );
70
71extern void
72_mesa_GetMaterialfv( GLenum face, GLenum pname, GLfloat *params );
73
74extern void
75_mesa_GetMaterialiv( GLenum face, GLenum pname, GLint *params );
76
jtgafb833d1999-08-19 00:55:39 +000077
Keith Whitwell23caf202000-11-16 21:05:34 +000078/* Lerp between adjacent values in the f(x) lookup table, giving a
79 * continuous function, with adequeate overall accuracy. (Though
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +000080 * still pretty good compared to a straight lookup).
Keith Whitwell23caf202000-11-16 21:05:34 +000081 */
82#define GET_SHINE_TAB_ENTRY( table, dp, result ) \
83do { \
84 struct gl_shine_tab *_tab = table; \
Keith Whitwelld1baa052001-02-06 04:06:34 +000085 float f = (dp * (SHINE_TABLE_SIZE-1)); \
86 int k = (int) f; \
87 if (k > SHINE_TABLE_SIZE-2) \
Keith Whitwell23caf202000-11-16 21:05:34 +000088 result = pow( dp, _tab->shininess ); \
Keith Whitwelld1baa052001-02-06 04:06:34 +000089 else \
Keith Whitwell23caf202000-11-16 21:05:34 +000090 result = _tab->tab[k] + (f-k)*(_tab->tab[k+1]-_tab->tab[k]); \
Keith Whitwell23caf202000-11-16 21:05:34 +000091} while (0)
92
93
jtgafb833d1999-08-19 00:55:39 +000094
Brian Paul08836342001-03-03 20:33:27 +000095extern GLuint _mesa_material_bitmask( GLcontext *ctx,
96 GLenum face, GLenum pname,
97 GLuint legal,
98 const char * );
jtgafb833d1999-08-19 00:55:39 +000099
Brian Paul08836342001-03-03 20:33:27 +0000100extern void _mesa_invalidate_spot_exp_table( struct gl_light *l );
jtgafb833d1999-08-19 00:55:39 +0000101
Brian Paul08836342001-03-03 20:33:27 +0000102extern void _mesa_invalidate_shine_table( GLcontext *ctx, GLuint i );
jtgafb833d1999-08-19 00:55:39 +0000103
Brian Paul08836342001-03-03 20:33:27 +0000104extern void _mesa_validate_all_lighting_tables( GLcontext *ctx );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000105
Brian Paul08836342001-03-03 20:33:27 +0000106extern void _mesa_update_lighting( GLcontext *ctx );
jtgafb833d1999-08-19 00:55:39 +0000107
Brian Paul08836342001-03-03 20:33:27 +0000108extern void _mesa_compute_light_positions( GLcontext *ctx );
jtgafb833d1999-08-19 00:55:39 +0000109
Brian Paul08836342001-03-03 20:33:27 +0000110extern void _mesa_update_material( GLcontext *ctx,
111 const struct gl_material src[2],
112 GLuint bitmask );
jtgafb833d1999-08-19 00:55:39 +0000113
Brian Paul08836342001-03-03 20:33:27 +0000114extern void _mesa_copy_material_pairs( struct gl_material dst[2],
115 const struct gl_material src[2],
116 GLuint bitmask );
jtgafb833d1999-08-19 00:55:39 +0000117
Brian Paul08836342001-03-03 20:33:27 +0000118extern void _mesa_update_color_material( GLcontext *ctx,
119 const GLchan rgba[4] );
jtgafb833d1999-08-19 00:55:39 +0000120
121
122#endif
123