Move the transform and lighting code to two new directories
authorKeith Whitwell <keith@tungstengraphics.com>
Thu, 16 Nov 2000 21:05:34 +0000 (21:05 +0000)
committerKeith Whitwell <keith@tungstengraphics.com>
Thu, 16 Nov 2000 21:05:34 +0000 (21:05 +0000)
commit23caf20169ac38436ee9c13914f1d6aa7cf6bb5e
tree21307f7bbcaf9ee1e841d7e7bee130570a7b5b95
parent179516673211a2350e479d5321840291f339f5dd
Move the transform and lighting code to two new directories
math:  Provides basic matrix and vector functionality that
               might be useful to multiple software t&l
       implementations, and is used by core mesa to
       manage the Model, Project, etc matrices.

tnl:   The real transform & lighting code from core mesa,
       including everything from glVertex3f through vertex
       buffer handling, transformation, clipping, lighting
       and handoff to a driver for rasterization.

The interfaces of these can be further tightened up, but the basic
splitting up of state and code move is done.
77 files changed:
src/mesa/Makefile.X11
src/mesa/drivers/ggi/ggimesa.c
src/mesa/drivers/glide/fxapi.c
src/mesa/drivers/glide/fxdd.c
src/mesa/drivers/glide/fxdrv.h
src/mesa/drivers/glide/fxsetup.c
src/mesa/drivers/osmesa/osmesa.c
src/mesa/drivers/svga/svgamesa.c
src/mesa/drivers/x11/xm_api.c
src/mesa/drivers/x11/xm_dd.c
src/mesa/drivers/x11/xm_line.c
src/mesa/drivers/x11/xm_span.c
src/mesa/drivers/x11/xm_tri.c
src/mesa/main/Makefile.X11
src/mesa/main/attrib.c
src/mesa/main/clip.c
src/mesa/main/clip.h
src/mesa/main/colormac.h
src/mesa/main/context.c
src/mesa/main/context.h
src/mesa/main/dd.h
src/mesa/main/debug.c [new file with mode: 0644]
src/mesa/main/debug.h [new file with mode: 0644]
src/mesa/main/dlist.c
src/mesa/main/dlist.h
src/mesa/main/drawpix.c
src/mesa/main/enable.c
src/mesa/main/eval.c
src/mesa/main/eval.h
src/mesa/main/fog.c
src/mesa/main/fog.h
src/mesa/main/get.c
src/mesa/main/light.c
src/mesa/main/light.h
src/mesa/main/lines.c
src/mesa/main/macros.h
src/mesa/main/matrix.c
src/mesa/main/matrix.h
src/mesa/main/points.c
src/mesa/main/rastpos.c
src/mesa/main/state.c
src/mesa/main/texstate.c
src/mesa/main/texstate.h
src/mesa/main/varray.c
src/mesa/main/varray.h
src/mesa/math/m_clip_tmp.h [new file with mode: 0644]
src/mesa/math/m_copy_tmp.h [new file with mode: 0644]
src/mesa/math/m_debug_xform.c [new file with mode: 0644]
src/mesa/math/m_dotprod_tmp.h [new file with mode: 0644]
src/mesa/math/m_matrix.c [new file with mode: 0644]
src/mesa/math/m_matrix.h [new file with mode: 0644]
src/mesa/math/m_norm_tmp.h [new file with mode: 0644]
src/mesa/math/m_trans_tmp.h [new file with mode: 0644]
src/mesa/math/m_translate.c [new file with mode: 0644]
src/mesa/math/m_translate.h [new file with mode: 0644]
src/mesa/math/m_vector.c [new file with mode: 0644]
src/mesa/math/m_vector.h [new file with mode: 0644]
src/mesa/math/m_xform.c [new file with mode: 0644]
src/mesa/math/m_xform.h [new file with mode: 0644]
src/mesa/math/m_xform_tmp.h [new file with mode: 0644]
src/mesa/swrast/s_bitmap.c
src/mesa/swrast/s_lines.c
src/mesa/swrast/s_points.c
src/mesa/swrast_setup/ss_context.c
src/mesa/swrast_setup/ss_triangle.c
src/mesa/swrast_setup/ss_tritmp.h
src/mesa/swrast_setup/ss_vb.c
src/mesa/swrast_setup/ss_vbtmp.h
src/mesa/tnl/t_context.c [new file with mode: 0644]
src/mesa/tnl/t_context.h [new file with mode: 0644]
src/mesa/tnl/t_pipeline.c [new file with mode: 0644]
src/mesa/tnl/t_pipeline.h [new file with mode: 0644]
src/mesa/tnl/tnl.h [new file with mode: 0644]
src/mesa/x86/3dnow.c
src/mesa/x86/3dnow.h
src/mesa/x86/common_x86_asm.h
src/mesa/x86/x86.c