summaryrefslogtreecommitdiff
path: root/progs
AgeCommit message (Collapse)Author
2005-06-24Ignore files generated as part of the build process.Ian Romanick
2005-06-21Mammoth update to the Python code generator scripts that live inIan Romanick
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
2005-06-16Fix a few compiler warningsJon Smirl
2005-06-01Add a mode to test flat shading + separate specular.Keith Whitwell
2005-05-23remove stupid flagsDaniel Borca
2005-05-20use MAX_SCREENS instead of hard-coded numberBrian Paul
2005-05-20fix reversed strstr() args, print mode stringBrian Paul
2005-05-20replace // with /* */Brian Paul
2005-05-20 Committing in .Jouk Jansen
Update openVMS compile support Modified Files: Mesa/progs/demos/descrip.mms Mesa/src/mesa/shader/slang/descrip.mms Mesa/src/mesa/tnl/descrip.mms ----------------------------------------------------------------------
2005-05-20Use the 1.3 names for FogCoord*Adam Jackson
2005-05-19move osmesa demos to their own directoryKeith Whitwell
2005-05-19Fix EGL fbdev palette problem. demo3 can save ppm of screenJon Smirl
2005-05-18Fix inverted y for egl fbdev, add egl demo3Jon Smirl
2005-05-18To better exercise pixel packing, replace regular glReadPixels with fourBrian Paul
ReadPixels that get the image piece by piece.
2005-05-18Implement fbdev swapbuffers()Jon Smirl
2005-05-17Fix several internal problems with generating the list of configs.Jon Smirl
2005-05-14Add forgotten demo2.cJon Smirl
VS: ----------------------------------------------------------------------
2005-05-13First attempt at getting egl support up on dumb framebuffer.Jon Smirl
Seems to be mostly working. Not all of egl API is implemented.
2005-05-07assorted warning clean-ups for x86_64, etc (Mikko T.)Brian Paul
2005-05-04Major check-in of changes for GL_EXT_framebuffer_object extension.Brian Paul
Main driver impacts: - new code for creating the Mesa GLframebuffer - new span/pixel read/write code Some drivers not yet updated/tested.
2005-05-04updates for latest EGLScreenMESA changesBrian Paul
2005-04-29new fileKeith Whitwell
2005-04-26no need to enable fog or set fog mode with fragment programBrian Paul
2005-04-22demo / test progsBrian Paul
2005-04-06added wrappers/helpers for creating/destroying rendering contextsBrian Paul
2005-04-06changed implementation of GetAllFBConfigs()Brian Paul
2005-04-05Make glxgears_fbconfig compile and respect the DISPLAY setting. Add itIan Romanick
to the Makefile as well.
2005-04-04s/Togle/Toggle/Brian Paul
2005-03-22Add more formats to test.Keith Whitwell
2005-03-14If setting GL_PACK_INVERT_MESA results in a GL error, log it.Ian Romanick
2005-02-26use girl2.rgb by defaultDave Airlie
2005-02-26Add glXAllocateMemoryMESA demo app using ycbcr...Dave Airlie
add girl2.rgb which is a slightly resized girl.rgb so client texturing works
2005-02-14Simple test for GL_MESA_pack_invert.Ian Romanick
2005-02-09Simple test for ARB_texture_env_crossbar functionality. It is difficultIan Romanick
to come up with good tests for this functionality that don't require either ATI_texture_env_combine3 or NV_texture_env_combine4.
2005-01-31makefile update (readtex, showbuffer)Daniel Borca
2005-01-29added osmesa16 stuffBrian Paul
2005-01-29assorted fixesBrian Paul
2005-01-29added missing glFinish()Brian Paul
2005-01-24reenable some assertionsBrian Paul
2005-01-19added texobjshare.cBrian Paul
2005-01-19test program for texture sharing, deleting, etcBrian Paul
2005-01-19glVertex* is the provoking "cmd" (that is, by the time of glVertex*, we must ↵Daniel Borca
have all other attributes already set). i am committing this before i forget. however, i'm still leaving my code disabled, because the old code seems legal.
2005-01-17fix some weirdness accidentally checked in in the pastBrian Paul
2005-01-17since we've already messed up this one, let we do it further and make it ↵Daniel Borca
look like a fire...
2005-01-17remove trailing slash from TOP definitionDaniel Borca
2005-01-12new test to exercise context and window create/deleteKeith Whitwell
2005-01-11VMS updates from Jouk JansenBrian Paul
2005-01-10remove a debug lineBrian Paul
2005-01-10tweak output formattting, fixed uninitialized var errorBrian Paul
2005-01-09minor readtex fixesBrian Paul