summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-04-07Follow the GLX_SGIX_fbconfig spec and return the complete list ofIan Romanick
available fbconfigs if attrList is NULL. This fixes bug #2917.
2005-04-06added wrappers/helpers for creating/destroying rendering contextsBrian Paul
2005-04-06changed implementation of GetAllFBConfigs()Brian Paul
2005-04-06Fix Fake_glXChooseFBConfig so passing NULL attribList causes a list of allBrian Paul
fbconfigs to be returned.
2005-04-06Make linux-dri-x86-64 more like linux-dri-x86. Add ARCH_FLAGS. This isIan Romanick
where things like "-m64" or "-m32" should be specified. Using this, a 32-bit DRI build can be done on an x86-64 system by doing 'ARCH_CFLAGS=-m32 make linux-dri-x86'. Minor tweaks to linux-dri to support these changes.
2005-04-05Make glxgears_fbconfig compile and respect the DISPLAY setting. Add itIan Romanick
to the Makefile as well.
2005-04-05Don't call PrimitiveNotify with an invalid primitive. Fix ipersKeith Whitwell
wireframe mode.
2005-04-04s/Togle/Toggle/Brian Paul
2005-04-04updated warning string to match patch in bug report 2868Brian Paul
2005-04-01Use FEATURE_shading_language to control whether the shading languageBrian Paul
compiler is hooked in. May be enabled on compiler command line by setting -DFEATURE_shading_lanuage=1.
2005-03-30Disable _mesa_3dlabs_create_{program,shader}_object references.Adam Jackson
2005-03-29Disable C++ shading language code yet again. Doesn't compile with olderBrian Paul
g++ installations.
2005-03-29re-enable shading language sourcesBrian Paul
2005-03-29re-enable _mesa_init_shaderobjects_3dlabs() callBrian Paul
2005-03-29fix a variety of warnings/errorsBrian Paul
2005-03-26disable 3dlabs shading language code until build is fixedBrian Paul
2005-03-26disable _mesa_init_shaderobjects_3dlabs() call until build is fixedBrian Paul
2005-03-26remove INSTALL.GNU from tarball listBrian Paul
2005-03-26obsoleteBrian Paul
2005-03-25implement gl2_3dlabs_shhandle interface; resolve few TODOsMichal Krol
2005-03-25cleanup query functionsMichal Krol
2005-03-25add _mesa_init_shaderobjects_3dlabs() declarationMichal Krol
2005-03-25fix comments; fix TBuiltInResource typedefMichal Krol
2005-03-25fix comments; disable DLL linkage for WIN32Michal Krol
2005-03-24Fixed segfault due to an off-by-one error in SAVAGE_TEX_MAXLEVELS.Felix Kuehling
2005-03-23Initialize texture addresses to something valid.Felix Kuehling
2005-03-23remove file after mergeKeith Whitwell
2005-03-23no changeBrian Paul
2005-03-23use $(*_LIB) in the *_LIB_NAME definitionsBrian Paul
2005-03-22rename mesaVis to try and improve clarityKeith Whitwell
2005-03-22add FreeTexImageData hook to help single-copy texturing in driversKeith Whitwell
2005-03-22merge unichrome changes from branchKeith Whitwell
2005-03-22Remove test for defined(DRM_USE_MALLOC) around definition ofKeith Whitwell
drmSIGIOHandler().
2005-03-22Add more formats to test.Keith Whitwell
2005-03-22Add DRM_USE_MALLOC flagKeith Whitwell
2005-03-22Calculate haveAccumBuffer, haveDepthBuffer and haveStencilBuffer inKeith Whitwell
driFillInModes().
2005-03-18Add support for production version of ATI RN50/ES1000. (ATI TechnologiesMichel Dänzer
Inc.)
2005-03-18Misc fixes.Aapo Tahkola
2005-03-18update against 03-Feb-2005 releaseMichal Krol
2005-03-18enable all 3dlabs front-end compiler sourcesMichal Krol
2005-03-18a little program to change // comments to /* */ onesMichal Krol
2005-03-18glslang flex and bison sources:Michal Krol
flex glslang.l bison -t -v -d glslang.y mv glslang.tab.c Gen_glslang_tab.cpp (shouldn't be .c?) mv glslang.tab.h glslang_tab.h
2005-03-17Fix to get doom3 started.Aapo Tahkola
2005-03-17xmllint fixes. Revert 'note_unflushed' changes that were accidetnallyIan Romanick
committed in the last version.
2005-03-17Simple TCL stage and ability to disable vps.Aapo Tahkola
2005-03-17Enable the generation of server-side __glGetBooleanv_size and relatedIan Romanick
functions. There are two parts to this. First, a size element with a name "Get" is shorthand for having four separate size elements with names "GetIntegerv", "GetDoublev", "GetFloatv", and "GetBooleanv". Additionally, a count of "?" is treated specially. This causes a call to a handcoded function named "__gl<base name>_variable_size". This is *only* needed to support GL_COMPRESSED_TEXTURE_FORMATS. That enum can return a variable number of values depending how many compressed texture formats are supported by the implementation. Fix a problem with glGetProgram{Local,Env}Parameter[df]vARB, glAreProgramsResidentNV, and glGetVertexAttribivNV. These changes only affect code generated for the server-side. The changes to enum.c are caused by enums added for the server-side __glGetBooleanv_size functions.
2005-03-17Minor refactoring and code tweaking. The only notable chage is thatIan Romanick
FilterGLAPISpecBase::xref is replaced by FilterGLAPISpecBase::functions_by_name. The notable difference between the two is that ::functions_by_name includes all functions, whether they have an assigned offset or not. This feature will be useful (necessary) when more server-side code is generated.
2005-03-17Minor vertex array support tweaks. These are in preparation for theIan Romanick
(eventual) addition of support for ARB_vertex_buffer_object. Elminitate the need for array_state_vector::large_header. Make some very minor tweaks to the handling of the indices pointer in emit_DrawElements_old.
2005-03-17Minor vertex array support tweaks. Most of these are in preparation for theIan Romanick
(eventual) addition of support for ARB_vertex_buffer_object. Move all the private vertex array data structures out of indirect_vertex_array.c and into indirect_va_private.h. Rename array_state_vector::enabled_array_count to array_state_vector::enabled_client_array_count. Make sure that both the GL extension string and the server GL version are available when __glXInitVertexState is called. Make sure that array_state::normalized is set correctly in the array's gl*Pointer function.
2005-03-17Refactored some of the code for PrintGlxReqSize_[ch]. This ensures that theIan Romanick
same set of functions will be iterated for both the generated C-source file and the generated header file.