Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-12-08 | Check for some header defines before redefining functions. Silences warnings. | Alan Hourihane | |
2004-12-08 | From: Stephane Marchesin <marchesin@icps.u-strasbg.fr> | Dave Airlie | |
Attached is a patch that adds pci init code for mesa solo on radeon. It's been tested on an itanium 2 with a radeon 7000 and it works here. The patch adds a new field in the miniglx.conf config file, to choose between pci and agp. | |||
2004-12-08 | fix depth/stencil readback if coordinates are larger than 1023 ↵ | Roland Scheidegger | |
(https://bugs.freedesktop.org/show_bug.cgi?id=2010). Should now work up to 2047, which is the current limit for 3d rendering. | |||
2004-12-07 | fixed an include path | Daniel Borca | |
2004-12-06 | small fix for debug paths | Daniel Borca | |
2004-12-03 | only enable GL_MESA_ycbcr_texture for real r200 chips, not the derivatives, ↵ | Roland Scheidegger | |
since yuv textures do not work for some reason on the other chips. | |||
2004-12-03 | enable GL_EXT_stencil_wrap (patch from idr), including some hacks for ↵ | Roland Scheidegger | |
original radeons which have some broken stencil ops. | |||
2004-12-03 | silence a variety of warnings found with g++ 3.4.2 | Brian Paul | |
2004-12-02 | silence warnings | Alan Hourihane | |
2004-12-02 | reverse some debug that slipped through | Alan Hourihane | |
2004-12-02 | Fix some warnings | Alan Hourihane | |
2004-11-29 | silence a warning | Brian Paul | |
2004-11-28 | fix missing width/height error | Brian Paul | |
2004-11-27 | Remove _mesa_ResizeBuffersMESA() call from _mesa_set_viewport(). | Brian Paul | |
Now, the driver's Viewport routine should call _mesa_ResizeBuffersMESA() if necessary. Cleaned up code related to GLframebuffer width/height initialization. Set initial viewport/scissor params in _mesa_make_current2(), instead of in the drivers' MakeCurrent functions. | |||
2004-11-27 | Remove the redundant width, height fields in xmesa_buffer struct. Just use | Brian Paul | |
the values in the contained GLframebuffer. Removed some other unneeded code. | |||
2004-11-27 | new GetOverlayInfo() function to reduce code and silence warnings | Brian Paul | |
2004-11-27 | Have OSMesaGetProcAddress() return new OSMESAproc typedef. | Brian Paul | |
2004-11-25 | Use a generic function typedef instead of void * to avoid gcc 3.4 warnings. | Brian Paul | |
2004-11-25 | Use __GLXextFuncPtr type instead of void * for generic functions to | Brian Paul | |
avoid gcc 3.4 compiler warnings. Remove the unused/obsolete GLX_render_texture stuff. | |||
2004-11-25 | Update expected DRM version to 2.0.0 | Keith Whitwell | |
2004-11-23 | revert enabling of hw quads for swtcl. It lead to problems with quad_strips, ↵ | Roland Scheidegger | |
since they'll get reduced to quads sometimes if hw quads are enabled. But this needs more thought, since it looks like clipped primitives will always be emitted as polys, so the reduced primitives for triangles, quads, quads_strips, polys all need to be the same, otherwise get lockups with for instance the olympic test. Render templates would probably need to be changed for this to work. | |||
2004-11-15 | moved windoze specific code outside drivers/glide/ | Daniel Borca | |
2004-11-15 | work around a bug in gcc 3.3.3 (which duplicates ASM block) | Daniel Borca | |
2004-11-15 | fix _mesa_image_address2d invocation | Daniel Borca | |
2004-11-12 | enable hw quad primitive for swtcl | Roland Scheidegger | |
2004-11-12 | add LOCK_HARDWARE/UNLOCK_HARDWARE to radeonClear so state gets updated which ↵ | Roland Scheidegger | |
hopefully fixes lockups (?) (from r200 driver) | |||
2004-11-12 | (from r200 driver) If an application cleared before any state had been ↵ | Roland Scheidegger | |
emitted, that clear would happen before any state had been set, causing a hang later on. Fix this by calling radeonFlush instead of FIREVERTICES (which checks if any state has been emitted but not flushed, before calling Flush) in radeonClear. While here, add some more debugging info which was useful, and remove an unnecessary save/restore in BackUpAndEmit. | |||
2004-11-12 | added a few sanity checks | Daniel Borca | |
made coding style a bit more consistent | |||
2004-11-12 | brown paper bag, r100 can't do hardware quads. | Adam Jackson | |
2004-11-12 | make render_quads_verts call EMIT_PRIM with the arguments in the right order, | Adam Jackson | |
and enable hardware quads on r200 and radeon. samples/prim renders quads correctly now. | |||
2004-11-10 | GL_(UN)PACK_SKIP_IMAGES should only be applied to 3D texture pack/unpacking | Brian Paul | |
and ignored for 1D and 2D images. Need to pass in image dimensions (1,2,3) to the _mesa_image_address() function. This change gets propogated to some other routines. Also added new _mesa_image_address[123]d() convenience functions. | |||
2004-11-10 | add some chip ids | Roland Scheidegger | |
2004-11-09 | do clipping prior to XGetImage, just in case the image would extend beyond ↵ | Brian Paul | |
the screen's bounds | |||
2004-11-09 | Removed _swrast_clip_pixelrect(). Use _mesa_clip_drawpixels() instead. | Brian Paul | |
2004-11-08 | Remove need for defining _MSC_VER when building Mesa for windows with | Brian Paul | |
a non MS C compiler (MinGW). (Gregor Anich) | |||
2004-11-03 | enable GL_EXT_fog_coord. Calculate fog factors and submit them instead of ↵ | Roland Scheidegger | |
fog coords (it seems the chip cannot do fog factor computation when not using fragment depth as fog coord source). vtxfmt uses fallback for now (most code present but some magic would be needed if replaying vertices is necessary later on). | |||
2004-11-02 | Added MMX optimized version of the RGB565 ReadRGBASpan routine. | Ian Romanick | |
2004-11-02 | No visible changes, but commit the groundwork for further experiments: | Nicolai Haehnle | |
- Install custom (though inactive) pipeline - Track depth test and culling state in hardware registers | |||
2004-11-02 | Add culling registers, sync versions of r300_reg.h | Nicolai Haehnle | |
2004-11-01 | Nicolai's sw-clipspan-fixes.patch | Keith Whitwell | |
2004-11-01 | protected against old djgpp distros | Daniel Borca | |
2004-10-31 | Removed _swrast_validate_pbo_access(). | Brian Paul | |
In x11 driver, map/unmap PBO as needed in DrawPixels functions. | |||
2004-10-31 | use _mesa_unmap_buffer by default | Brian Paul | |
2004-10-27 | Bug #1713: Some rare libGL's have __glXFindDRIScreen defined but do not | Adam Jackson | |
export it via glXGetProcAddress. These are not supported anymore, so print an error message to that effect. | |||
2004-10-26 | As per suggestions my Michel Daenzer, improve the fix for bugzilla #1513. | Ian Romanick | |
2004-10-25 | Bug #1679: Link DRI drivers against DRI_LIB_DEPS, not GL_LIB_DEPS. | Adam Jackson | |
2004-10-24 | Implement ColorMask | Nicolai Haehnle | |
2004-10-24 | Hardware accelerated depth clear | Nicolai Haehnle | |
2004-10-23 | Big-endian fixes for R200 sw TCL path. | Ian Romanick | |
2004-10-20 | fixed compilation errors | Daniel Borca | |