mesa.git
18 years agoZero out the ENGPACKET allocated on the stack, to avoid sending uninitialized
Eric Anholt [Sun, 26 Jun 2005 21:02:58 +0000 (21:02 +0000)]
Zero out the ENGPACKET allocated on the stack, to avoid sending uninitialized
values to reserved fields on the card, resulting in all-black output and
sometimes hangs.

Submitted by: Thomas Winischhofer

18 years agofix for-loop in _mesa_GetDouble to avoid out of bounds memory read
Brian Paul [Sun, 26 Jun 2005 20:08:23 +0000 (20:08 +0000)]
fix for-loop in _mesa_GetDouble to avoid out of bounds memory read

18 years agocheck for null oldBuffer in _mesa_realloc(), cleaned up some comments
Brian Paul [Sun, 26 Jun 2005 19:57:17 +0000 (19:57 +0000)]
check for null oldBuffer in _mesa_realloc(), cleaned up some comments

18 years agoneed parenthesis in realloc call
Brian Paul [Sun, 26 Jun 2005 19:53:52 +0000 (19:53 +0000)]
need parenthesis in realloc call

18 years agoIgnore files generated as part of the build process.
Ian Romanick [Fri, 24 Jun 2005 18:54:57 +0000 (18:54 +0000)]
Ignore files generated as part of the build process.

18 years agoFix non-x86 specific builds. The changes from glTexImage3DEXT to
Ian Romanick [Fri, 24 Jun 2005 18:35:31 +0000 (18:35 +0000)]
Fix non-x86 specific builds.  The changes from glTexImage3DEXT to
glTexImage3D that caused me so many problems during the re-development
of the API scripts reared its ugly head again.  This has been fixed by
tracking the parameter string for each entry-point individually.

This has the annoying side-effect that the names of the parameters in
all aliases of a function must be the same or gl_apitemp.py will
generate bad code. :(  The changes in
src/mesa/glapi/{gl_API.xml,glapitable.h} and src/glx/x11/* are caused
by fixing the parameter names in various function aliases that didn't
match.

Reported by: Eric Anholt, Jacob Jansen

18 years agoFixed the XCB implementation when always_array is true, thanks to Ian Romanick for...
Jeremy Kolb [Fri, 24 Jun 2005 02:28:02 +0000 (02:28 +0000)]
Fixed the XCB implementation when always_array is true, thanks to Ian Romanick for pointing it out.  Please review.

18 years agoRemove the xmesa_set_buffer() function. No longer needed since the
Brian Paul [Thu, 23 Jun 2005 15:09:32 +0000 (15:09 +0000)]
Remove the xmesa_set_buffer() function.  No longer needed since the
span functions pass in a gl_renderbuffer to indicate which color
buffer should be drawn into.  Optimized line/triangle routines are
smart enough to know which buffer to draw into as well.
The swrast->SetBuffer() routine should eventually be removed from
all drivers.

18 years agoMark GenQueriesARB at 'always_array="true"'. This eliminates the need
Ian Romanick [Wed, 22 Jun 2005 17:11:20 +0000 (17:11 +0000)]
Mark GenQueriesARB at 'always_array="true"'.  This eliminates the need
to special-case the handling of that function in glX_proto_send.py.

18 years agoFixed a bug where GenQueriesARB was generating the wrong code for XCB and wouldn...
Jeremy Kolb [Wed, 22 Jun 2005 02:36:23 +0000 (02:36 +0000)]
Fixed a bug where GenQueriesARB was generating the wrong code for XCB and wouldn't compile.  Not sure how that slipped through before but it should work now.

18 years agoMammoth update to the Python code generator scripts that live in
Ian Romanick [Tue, 21 Jun 2005 23:42:43 +0000 (23:42 +0000)]
Mammoth update to the Python code generator scripts that live in
src/mesa/glapi.  Basically, the scripts that did simple things (like
gl_offsets.py) were simple, and the scripts that did more complicated things
(like glX_proto_send.py) were getting progressively more and more out of
control.  So, I re-write the foundation classes on which everything is based.

One problem with the existing code is that the division between the GL API
database representation and the way the output code is generated was either
blury or nonexistant.  The new code somewhat follows the
Model-View-Controller pattern, minus the Controller.  There is a distinct
set of classes that model the API data, and there is a distinct set of
classes that generate code from that data.

One big change is in the class that represents GL functions (was glFunction,
is now gl_function).  There used to be an instance of this calls for each
function and for each alias to that function.  For example, there was an
instance for PointParameterivSGIS, PointParameterivEXT, PointParameterivARB,
and PointParameteriv.  In the new code, there is one instance.  Each
instance has a list of entrypoint names for the function. In the next
revision, this will allow a couple useful things.  The script will be able
to verify that the parameters, return type, and GLX protocol for a function
and all it's aliases match.

It will also allow aliases to be represented in the XML more compactly.
Instead of repeating all the information, an alias can be listed as:

     <function name="PointParameterivARB" alias="PointParameterivEXT"/>

Because the data representation was changed, the order that the alias
functions are processed by the scripts also changed.  This accounts for at
least 2,700 of the ~3,600 lines of diffs in the generated code.

Most of the remaining ~900 lines of diffs are the result of bugs *fixed* by
the new scripts.  The old scripts also generated code with some bugs in it.
These bugs were discovered while the new code was being written.

These changes were discussed on the mesa3d-dev mailing list back at the end
of May:

http://marc.theaimsgroup.com/?t=111714569000004&r=1&w=2

Xorg bug: 3197, 3208

18 years agoBack out the actual enabling of depth tiling.
Nicolai Haehnle [Tue, 21 Jun 2005 17:18:00 +0000 (17:18 +0000)]
Back out the actual enabling of depth tiling.

Depth tiling breaks software fallbacks and depth buffer reads.
radeon_span.c **must** be updated for anything that is related to tiling.

18 years agoAdd PCI ID for R420 JI.
Nicolai Haehnle [Tue, 21 Jun 2005 17:03:29 +0000 (17:03 +0000)]
Add PCI ID for R420 JI.

The driver appears to work reliably (i.e. lockup-free) with a card based
on this chip. However, I have not explored whether we could get anything
in terms of 3D performance "for free" just by setting some magic bits
in those registers that are still a mystery to us.

18 years agor300 driver side of color tiling support.
Aapo Tahkola [Tue, 21 Jun 2005 15:41:03 +0000 (15:41 +0000)]
r300 driver side of color tiling support.

18 years agoMake sure texture base addresses are used correctly.
Nicolai Haehnle [Tue, 21 Jun 2005 15:21:14 +0000 (15:21 +0000)]
Make sure texture base addresses are used correctly.

They are relative to the card's address space, not relative to fbLocation,
which will be important once we program MC_FB/AGP_LOCATION in the way
they are programmed on older Radeon chips.

18 years agocheck for NULL swrast->Driver.SetBuffer before calling it
Brian Paul [Tue, 21 Jun 2005 14:39:43 +0000 (14:39 +0000)]
check for NULL swrast->Driver.SetBuffer before calling it

18 years agoupdated to version 29
Brian Paul [Tue, 21 Jun 2005 14:30:46 +0000 (14:30 +0000)]
updated to version 29

18 years agoinclude light.h to silence warning
Brian Paul [Tue, 21 Jun 2005 03:38:10 +0000 (03:38 +0000)]
include light.h to silence warning

18 years agoDirectFB updates (Claudio Ciccani)
Brian Paul [Mon, 20 Jun 2005 18:29:28 +0000 (18:29 +0000)]
DirectFB updates (Claudio Ciccani)

18 years agoran "make" after update to glX_proto_send.py.
Jeremy Kolb [Mon, 20 Jun 2005 03:18:16 +0000 (03:18 +0000)]
ran "make" after update to glX_proto_send.py.

18 years agoFixed some issues where XCB replies were being freed and data was not being copied.
Jeremy Kolb [Mon, 20 Jun 2005 03:12:35 +0000 (03:12 +0000)]
Fixed some issues where XCB replies were being freed and data was not being copied.

18 years agoDefine __FUNCTION__ as a preprocessor symbol in glheader.h if we're not
Brian Paul [Sun, 19 Jun 2005 14:57:34 +0000 (14:57 +0000)]
Define __FUNCTION__ as a preprocessor symbol in glheader.h if we're not
using GCC or VMS.

18 years agoFix gloss breakage when using hw tnl.
Aapo Tahkola [Thu, 16 Jun 2005 11:57:45 +0000 (11:57 +0000)]
Fix gloss breakage when using hw tnl.

18 years agoUse depth tiling.
Aapo Tahkola [Thu, 16 Jun 2005 11:41:19 +0000 (11:41 +0000)]
Use depth tiling.

18 years agoSupport 16-bit modes.
Aapo Tahkola [Thu, 16 Jun 2005 10:40:39 +0000 (10:40 +0000)]
Support 16-bit modes.

18 years agoFix problems with elts when immediate mode is on.
Aapo Tahkola [Thu, 16 Jun 2005 10:27:04 +0000 (10:27 +0000)]
Fix problems with elts when immediate mode is on.

18 years agoTurn off VBO's.
Aapo Tahkola [Thu, 16 Jun 2005 10:21:01 +0000 (10:21 +0000)]
Turn off VBO's.

18 years agolost_context never gets reset.
Aapo Tahkola [Thu, 16 Jun 2005 10:05:18 +0000 (10:05 +0000)]
lost_context never gets reset.

18 years agoFix a few compiler warnings
Jon Smirl [Thu, 16 Jun 2005 04:25:45 +0000 (04:25 +0000)]
Fix a few compiler warnings

18 years agoFix linux-solo build for mga check-in
Jon Smirl [Thu, 16 Jun 2005 03:45:48 +0000 (03:45 +0000)]
Fix linux-solo build for mga check-in

18 years agoAdds support for MGA DRM version 3.2.
Ian Romanick [Tue, 14 Jun 2005 22:51:44 +0000 (22:51 +0000)]
Adds support for MGA DRM version 3.2.

This patch makes use of two of the new ioctls added in MGA DRM version
3.2.  Specifically, the DRM_MGA_SET_FENCE and DRM_MGA_WAIT_FENCE
ioctls are used in mgaWaitForFrameCompletion.  As a result the MMIO
register region and the primary DMA region are *not* mapped (if DRM
3.2 is available).

This patch does *not* make use of the new get_param query was added to
differentiate between G4x0 cards and G550 cards.  That is left to a
future update.

Xorg bug: 3259
Reviewed by: Eric Anholt

18 years ago Committing in .
Jouk Jansen [Tue, 14 Jun 2005 10:27:05 +0000 (10:27 +0000)]
 Committing in .

 OpenVMS updates

 Modified Files:
  Mesa/src/mesa/tnl/descrip.mms Mesa/src/mesa/tnl/t_vp_build.c
 ----------------------------------------------------------------------

18 years agofbSwapBuffers needs to return a status
Jon Smirl [Mon, 13 Jun 2005 14:21:34 +0000 (14:21 +0000)]
fbSwapBuffers needs to return a status

18 years agomingw changes (Nolan Leake)
Brian Paul [Mon, 13 Jun 2005 14:07:14 +0000 (14:07 +0000)]
mingw changes (Nolan Leake)

18 years agoFixed typos.
Vladimir Dergachev [Sun, 12 Jun 2005 14:57:02 +0000 (14:57 +0000)]
Fixed typos.

18 years agoAdd definition for memory controller latency registers..
Vladimir Dergachev [Fri, 10 Jun 2005 16:10:50 +0000 (16:10 +0000)]
Add definition for memory controller latency registers..

18 years agoremove debug prints
Keith Whitwell [Fri, 10 Jun 2005 14:58:32 +0000 (14:58 +0000)]
remove debug prints

18 years agobe sure we have span texcoords before calling _swrast_texture_span()
Brian Paul [Fri, 10 Jun 2005 14:37:32 +0000 (14:37 +0000)]
be sure we have span texcoords before calling _swrast_texture_span()

18 years agopass mask array to PutRowRGB() in simple_z_textured_triangle()
Brian Paul [Fri, 10 Jun 2005 14:36:55 +0000 (14:36 +0000)]
pass mask array to PutRowRGB() in simple_z_textured_triangle()

18 years agoAllow the print opcode to compile
Keith Whitwell [Fri, 10 Jun 2005 13:59:49 +0000 (13:59 +0000)]
Allow the print opcode to compile

18 years agoFix typo in spot attenuation
Keith Whitwell [Fri, 10 Jun 2005 13:35:31 +0000 (13:35 +0000)]
Fix typo in spot attenuation

18 years agoCorrect test for attenuation.
Keith Whitwell [Fri, 10 Jun 2005 12:04:47 +0000 (12:04 +0000)]
Correct test for attenuation.
DISSASEM changes.

18 years agoremove depend files on clean
Keith Whitwell [Fri, 10 Jun 2005 10:43:02 +0000 (10:43 +0000)]
remove depend files on clean

18 years agoFix colormaterial flag calculations.
Keith Whitwell [Fri, 10 Jun 2005 08:33:37 +0000 (08:33 +0000)]
Fix colormaterial flag calculations.
Fix lighting alpha result.

18 years agoAdd notes about intended precision of opcodes.
Keith Whitwell [Fri, 10 Jun 2005 08:32:27 +0000 (08:32 +0000)]
Add notes about intended precision of opcodes.
Remove dead floating point twiddles.
Fix bug translating MAD->MUL,ADD.

18 years agoFix a couple of buglets
Keith Whitwell [Thu, 9 Jun 2005 22:10:23 +0000 (22:10 +0000)]
Fix a couple of buglets

18 years agoAnother typo
Keith Whitwell [Thu, 9 Jun 2005 19:03:18 +0000 (19:03 +0000)]
Another typo

18 years agoFurther clean up RoughApproxPow2 and disable the optimized version --
Keith Whitwell [Thu, 9 Jun 2005 18:59:41 +0000 (18:59 +0000)]
Further clean up RoughApproxPow2 and disable the optimized version --
it's a very poor approximation.

18 years agoFix typo in RoughApproxPow2
Keith Whitwell [Thu, 9 Jun 2005 18:52:42 +0000 (18:52 +0000)]
Fix typo in RoughApproxPow2

18 years agoStore compiled vertex program representations in a pointer in the
Keith Whitwell [Thu, 9 Jun 2005 14:55:34 +0000 (14:55 +0000)]
Store compiled vertex program representations in a pointer in the
vertex_program struct.

Allow switching between regular and vertex_program implementations
of fixed function TNL with the MESA_TNL_PROG environment var
(previously this required recompilation).

Ensure program compilation only references program data, not the
wider context.  This means that compiled programs only need to be
invalidated when the program string changes, not on other state
changes.

18 years agoBuild vertex programs using state from a 'state key' struct which is
Keith Whitwell [Thu, 9 Jun 2005 14:52:08 +0000 (14:52 +0000)]
Build vertex programs using state from a 'state key' struct which is
distilled from the current state.

Maintain a list of vertex programs for various different tnl states
indexed by these state keys.

This cuts down the number of vertex programs generated and means that
time spent optimizing vertex programs for execution isn't wasted each
time the state changes.

18 years agoTurn off debug
Keith Whitwell [Wed, 8 Jun 2005 22:14:29 +0000 (22:14 +0000)]
Turn off debug

18 years agoAdd t_vb_arbprogram_sse.c
Keith Whitwell [Wed, 8 Jun 2005 22:10:34 +0000 (22:10 +0000)]
Add t_vb_arbprogram_sse.c

18 years agoRuntime generate sse/sse2 code for some vertex programs. Experimental
Keith Whitwell [Wed, 8 Jun 2005 22:10:16 +0000 (22:10 +0000)]
Runtime generate sse/sse2 code for some vertex programs.  Experimental
and only active when _TNL_FIXED_FUNCTION_PROGRAM is defined *and*
the MESA_EXPERIMENTAL environment variable is set...
Works for the arbfplight demo at least.

18 years agoTurn off DISASSEM
Keith Whitwell [Wed, 8 Jun 2005 22:06:29 +0000 (22:06 +0000)]
Turn off DISASSEM

18 years agoNew arguments for sse_shufps()
Keith Whitwell [Wed, 8 Jun 2005 21:58:30 +0000 (21:58 +0000)]
New arguments for sse_shufps()

18 years agoUse ALIGN_MALLOC for parameter lists.
Keith Whitwell [Wed, 8 Jun 2005 21:57:45 +0000 (21:57 +0000)]
Use ALIGN_MALLOC for parameter lists.

18 years agoAdd some more opcodes
Keith Whitwell [Wed, 8 Jun 2005 21:56:21 +0000 (21:56 +0000)]
Add some more opcodes

18 years ago- Secondary colour
Ben Skeggs [Wed, 8 Jun 2005 15:05:19 +0000 (15:05 +0000)]
- Secondary colour
- Calculate tc_count in EmitArrays (enabled units != nr texcoords).

18 years agoregenerated
Brian Paul [Wed, 8 Jun 2005 13:35:28 +0000 (13:35 +0000)]
regenerated

18 years agoput full prototype on one line to fix gl_mangle.h generation (Dave Reveman)
Brian Paul [Wed, 8 Jun 2005 13:35:07 +0000 (13:35 +0000)]
put full prototype on one line to fix gl_mangle.h generation (Dave Reveman)

18 years agoremove stray line
Brian Paul [Wed, 8 Jun 2005 13:07:33 +0000 (13:07 +0000)]
remove stray line

18 years agoRemove ARL opcode from interpreter.
Keith Whitwell [Wed, 8 Jun 2005 10:03:29 +0000 (10:03 +0000)]
Remove ARL opcode from interpreter.
Revert SEL opcode to MSK.
Split out t_vb_arbprogram.h header file.

18 years agonew file
Keith Whitwell [Wed, 8 Jun 2005 10:02:28 +0000 (10:02 +0000)]
new file

18 years agoregenerate for latest glext.h
Brian Paul [Wed, 8 Jun 2005 02:18:22 +0000 (02:18 +0000)]
regenerate for latest glext.h

18 years agofix some renderbuffer problems for Xserver build (Dave Reveman)
Brian Paul [Wed, 8 Jun 2005 02:17:10 +0000 (02:17 +0000)]
fix some renderbuffer problems for Xserver build (Dave Reveman)

18 years agocheck for double-buffered buffer in XMesaDestroyBuffer() (Dave Reveman)
Brian Paul [Wed, 8 Jun 2005 02:14:55 +0000 (02:14 +0000)]
check for double-buffered buffer in XMesaDestroyBuffer() (Dave Reveman)

18 years agoupdates from Paul Garceau
Daniel Borca [Tue, 7 Jun 2005 19:01:33 +0000 (19:01 +0000)]
updates from Paul Garceau

18 years agoadded GL libs to APP_LIB_DEPS (bug 3485)
Brian Paul [Tue, 7 Jun 2005 15:30:12 +0000 (15:30 +0000)]
added GL libs to APP_LIB_DEPS (bug 3485)

18 years agofix error in OSMESA_LIB_NAME line
Brian Paul [Tue, 7 Jun 2005 15:25:08 +0000 (15:25 +0000)]
fix error in OSMESA_LIB_NAME line

18 years agofix GL_ALPHA render-to-texture problem (Jon Smirl)
Brian Paul [Tue, 7 Jun 2005 15:03:40 +0000 (15:03 +0000)]
fix GL_ALPHA render-to-texture problem (Jon Smirl)

18 years agoInitialize some variables.
Keith Whitwell [Tue, 7 Jun 2005 12:46:30 +0000 (12:46 +0000)]
Initialize some variables.

18 years agoAdd new runtime assembly files.
Keith Whitwell [Tue, 7 Jun 2005 12:45:29 +0000 (12:45 +0000)]
Add new runtime assembly files.

18 years agoSplit out runtime assembly functions.
Keith Whitwell [Tue, 7 Jun 2005 12:45:04 +0000 (12:45 +0000)]
Split out runtime assembly functions.

18 years agoNew files - split off runtime assembly functions from
Keith Whitwell [Tue, 7 Jun 2005 12:44:26 +0000 (12:44 +0000)]
New files - split off runtime assembly functions from
t_vertex_sse.c.

18 years agoSimplify interpreted language:
Keith Whitwell [Tue, 7 Jun 2005 10:59:37 +0000 (10:59 +0000)]
Simplify interpreted language:

- Expand operand argument specifiers so that all registers and
  parameters can be referenced directly.  Remove old PAR/PRL
  instructions.

- No 3 operand instructions, translate MAD -> MUL, ADD.  (No room for
  3 full operands in instruction struct).

- Translate SWZ instructions into 1 or 2 reduced swizzles at compile
  time.

- Add hardwired code for moving input and output values to/from the
  register file.  Drop old INx, OUT instructions.

18 years agoAdd a VP_MAX_OPCODE entry to allow engines with internal opcodes to
Keith Whitwell [Tue, 7 Jun 2005 10:56:17 +0000 (10:56 +0000)]
Add a VP_MAX_OPCODE entry to allow engines with internal opcodes to
place them sensibly.

18 years agoupdates from Paul Garceau
Daniel Borca [Tue, 7 Jun 2005 05:29:38 +0000 (05:29 +0000)]
updates from Paul Garceau

18 years agoAdd SetBuffer to egl driver too
Jon Smirl [Tue, 7 Jun 2005 02:10:14 +0000 (02:10 +0000)]
Add SetBuffer to egl driver too

18 years agoAdd a NULL SetBuffer function to the fbdev driver
Jon Smirl [Mon, 6 Jun 2005 21:40:55 +0000 (21:40 +0000)]
Add a NULL SetBuffer function to the fbdev driver

18 years agothis is auto-generated
Brian Paul [Mon, 6 Jun 2005 14:40:56 +0000 (14:40 +0000)]
this is auto-generated

18 years agoTEX to output
Ben Skeggs [Mon, 6 Jun 2005 07:38:29 +0000 (07:38 +0000)]
TEX to output

18 years agoFix xyz/w interaction (needs a cleanup still..)
Ben Skeggs [Sun, 5 Jun 2005 08:25:54 +0000 (08:25 +0000)]
Fix xyz/w interaction (needs a cleanup still..)
Use SRC0A instead of WZY/XXX combination for W in XYZ positions.
Remove dodgy hack from POW opcode, now works correctly without it

18 years agoMake install install GLES too
Jon Smirl [Sun, 5 Jun 2005 02:10:58 +0000 (02:10 +0000)]
Make install install GLES too

19 years agoset OLD_RENDERBUFFER=0, need to clean up a few more things before totally removing...
Brian Paul [Sat, 4 Jun 2005 22:09:27 +0000 (22:09 +0000)]
set OLD_RENDERBUFFER=0, need to clean up a few more things before totally removing that

19 years agoremove old span functions from swrast_device_driver struct
Brian Paul [Sat, 4 Jun 2005 18:25:39 +0000 (18:25 +0000)]
remove old span functions from swrast_device_driver struct

19 years agoremove old span code
Brian Paul [Sat, 4 Jun 2005 18:12:28 +0000 (18:12 +0000)]
remove old span code

19 years agofix an assertion
Brian Paul [Sat, 4 Jun 2005 17:53:30 +0000 (17:53 +0000)]
fix an assertion

19 years agoremove old span code
Brian Paul [Sat, 4 Jun 2005 17:45:50 +0000 (17:45 +0000)]
remove old span code

19 years agoadded comment
Brian Paul [Sat, 4 Jun 2005 17:44:42 +0000 (17:44 +0000)]
added comment

19 years agoFixup file lists for tarball/zip file creation.
Karl Schultz [Fri, 3 Jun 2005 15:24:55 +0000 (15:24 +0000)]
Fixup file lists for tarball/zip file creation.
- Adjust for recent changes to Windows build files.
- Add in at least some of the new slang files - enough to build on
Windows, but some of the other slang-related files may still need to be
added.  (Will probably get corrected just prior to next release, if needed)

19 years agoUpdates for new Windows build system.
Karl Schultz [Thu, 2 Jun 2005 23:17:02 +0000 (23:17 +0000)]
Updates for new Windows build system.

19 years agoRemove last of the old span code.
Brian Paul [Thu, 2 Jun 2005 04:09:05 +0000 (04:09 +0000)]
Remove last of the old span code.

19 years agooops, undo previous change
Brian Paul [Thu, 2 Jun 2005 04:07:08 +0000 (04:07 +0000)]
oops, undo previous change

19 years agostart removing old (pre-renderbuffer) span code
Brian Paul [Thu, 2 Jun 2005 04:05:45 +0000 (04:05 +0000)]
start removing old (pre-renderbuffer) span code

19 years ago Committing in .
Jouk Jansen [Wed, 1 Jun 2005 12:07:15 +0000 (12:07 +0000)]
 Committing in .

 OpenVMS makefile added

 Added Files:
  Mesa/src/mesa/shader/grammar/descrip.mms
 ----------------------------------------------------------------------

19 years ago Committing in .
Jouk Jansen [Wed, 1 Jun 2005 12:05:34 +0000 (12:05 +0000)]
 Committing in .

 Update OpneVMS compilesupport

 Modified Files:
  Mesa/src/mesa/shader/descrip.mms
  Mesa/src/mesa/shader/slang/descrip.mms
  Mesa/src/mesa/shader/slang/slang_compile.c
  Mesa/src/mesa/shader/slang/slang_storage.c
  Mesa/src/mesa/shader/slang/slang_storage.h
 ----------------------------------------------------------------------

19 years agoMove fallback and other debugging under TDFX_DEBUG using the same mechanism
Eric Anholt [Wed, 1 Jun 2005 08:22:57 +0000 (08:22 +0000)]
Move fallback and other debugging under TDFX_DEBUG using the same mechanism
as other drivers.

19 years agoAdd no_rast option.
Eric Anholt [Wed, 1 Jun 2005 07:44:52 +0000 (07:44 +0000)]
Add no_rast option.

19 years agoAdd a mode to test flat shading + separate specular.
Keith Whitwell [Wed, 1 Jun 2005 07:02:23 +0000 (07:02 +0000)]
Add a mode to test flat shading + separate specular.