summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/r200
AgeCommit message (Collapse)Author
2004-05-12obsolete in favor of regular MakefilesBrian Paul
2004-05-05Remove a debug printf that should not have been left in.Ian Romanick
2004-05-05Added support for the 3rd texture coordinate for cubemaps and 3DIan Romanick
textures. progs/demos/cubemap and progs/demos/stex3d seem to work correctly at all tcl_mode settings. x86 / SSE codegen is currently disabled.
2004-05-04add r200 x86 sourcesDave Airlie
2004-04-29Allow *_dri.so to build in Mesa tree with the 'linux-dri' target.Keith Whitwell
2004-04-27Use the dispatch table directly instead of calling GL functions.Ian Romanick
2004-04-27Remove include of texutil.h to get build working.Ian Romanick
2004-04-26bring over build fixes from stable branchAlan Hourihane
2004-04-23Convert R200 driver to use the t_vertex interface.Ian Romanick
2004-04-22New glTexImage code.Brian Paul
The gl_texture_format struct now has a StoreTexImageFunc that's called by glTex[Sub]Image[123]D to convert the user's texture data into the specific texture format layout. Now it's much easier to add new texture formats (like the 16/32-bit floating point formats). The texutil.[ch] and texutil_tmp.h files are obsolete.
2004-04-14disable under _SOLO buildAlan Hourihane
2004-04-13fix the usage of GLX_MESA_allocate_memoryAlan Hourihane
2004-04-13Add DRM_SOURCE_PATH to make system.Jon Smirl
Needed for linux-solo to build
2004-04-08lots of Makefile updates for new build systemBrian Paul
2004-03-26New Makefile systemBrian Paul
2004-03-26Make sure drivers don't dereference a NULL pointer ifIan Romanick
__driUtilCreateNewScreen returns NULL.
2004-03-21Implemented support for software-based AUX color buffers.Brian Paul
Only available with Xlib driver for now. Assorted clean-ups related to Draw/ReadBuffer(). Renamed FRONT_LEFT_BIT -> DD_FRONT_LEFT_BIT, etc.
2004-03-18Convert int(8|32)_t to uint(8|32)_t, like should have been done the first time.Ian Romanick
2004-03-17Convert all uses of CARD32 and CARD8 to int32_t and int8_t.Ian Romanick
2004-03-12These files are redundant now. Definitions come from DRM files.Jon Smirl
2004-03-11Adjustments to make everything use IOCTL/sarea defines in DRM insteadJon Smirl
of glx/mini. removes glx/mini/drm.h glx/mini/sarea.h
2004-02-28Only print message about disabling HW TCL if the chip supports it in theMichel Dänzer
first place, and make the message a bit clearer. + Remove some extraneous whitespace.
2004-02-27Fix a problem with 24-bit screens. Modes with 0 stencil bits wereIan Romanick
erroneously marked as GLX_SLOW_CONFIG.
2004-02-26Create all the right modes for 16-bit screens.Ian Romanick
2004-02-24call _tnl_allow_pixel/vertex_fog() funcsBrian Paul
2004-02-13Minor tweaks to get the fbconfig list returned by __driCreateNewScreenIan Romanick
to pass through filter_modes (in libGL) properly.
2004-02-12Fix a problem that caused the new interface code to not actually beIan Romanick
used. Fix a couple problems that confound the fbconfig filtering code in libGL.
2004-02-11Initial pass at adding support for the new DRI driver interfaces toIan Romanick
the R200 driver. Not as clean / well commented as it should / could be.
2004-02-10Changed lighting to use SOURCE_MATERIAL instead of PREMULT (moves some light ↵Roland Scheidegger
color calculations to the GPU). Two-side lighting fallback no longer needed and eliminated.
2004-02-06Refactor "class" texture environments to be implemented in terms ofIan Romanick
ARB_texture_env_combine state.
2004-02-06remove bogus check of texture target in R200TexParameterRoland Scheidegger
2004-02-06align blits for texture rectangles correctly, fix potential problem ↵Roland Scheidegger
overwriting dma region
2004-01-27Added support for EXT_blend_equation_separate / ATI_blend_equation_separate.Ian Romanick
The internal driver interface was also changed to use BlendEquationSeparate instead of BlendEquation.
2004-01-27Consolidate texObj->Pos/Neg/X/Y/Z and texObj->Image into a singleKeith Whitwell
array, texObj->Image[face][level].
2004-01-26remove bogus assertion in DeleteTexture() functionBrian Paul
2004-01-24Fix hardware ROP state handling (Roland Scheidegger)Michel Dänzer
2004-01-23Call UpdateMaterial() unconditionally on GL_COLOR_MATERIAL state changeMichel Dänzer
(Roland Scheidegger), and update lighting state unconditionally there. Fixes lighting oddities in the xscreensaver endgame hack, bzflag and possibly elsewhere.
2004-01-23Fix attenuation hardware state handling, inspired by the R200 DDK referenceMichel Dänzer
driver (our r200 driver basically didn't do this at all, maybe got lost along the way?)
2004-01-22Corrected a comment about how the DOT3 hardware works in the R200.Ian Romanick
2004-01-21Silence some compiler warnings.Ian Romanick
2004-01-21Make the R200 driver work with the NewTextureObject in Mesa. OtherIan Romanick
drivers that use the texmem interface will likely need similar changes.
2004-01-21Remove dd_function_table::BlendFunc. All drivers now useIan Romanick
dd_function_table:BlendFuncSeparate. If a driver does not actually support EXT_blend_func_separate, it can assume that the RGB and alpha blend functions are the same.
2004-01-20Undo some bits from last check-in related to the ctx->Driver.NewTextureObjectBrian Paul
functions. Don't allocate the driver-specific data during texture object creation but do it later as needed (as code originally was).
2004-01-20Before calling _mesa_create_context(), initialize a dd_function_table structBrian Paul
by calling _mesa_init_driver_functions() and then plugging in the driver- specific functions. In particular, make sure ctx->Driver.NewTextureObject points to the appropriate driver function so that _all_ texture objects are augmented with the driver-specific data. Put in a bunch of assertions in the texture-related driver functions that texObj->DriverData is valid. Remove old dead code in near future.
2004-01-18minor changes to silence warningsBrian Paul
2004-01-18Change get_ust_nop()'s parameter from int64_t to uint64_t to silence warnings.Brian Paul
2004-01-14Fix initialisation of cubic tecture offsets (Andreas Stenglein)Michel Dänzer
2004-01-13Added support for EXT_texture_mirror_clamp.Ian Romanick
2004-01-12Removed redundant extension strings. The Mesa extension mechanismIan Romanick
automatically enables "duplicate" extensions without the driver explicitly enabling them.
2004-01-11call _mesa_delete_texture_object() from in the driver's DeleteTexture functionBrian Paul