Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed some missing uint8_t -> u_int8_t. | Felix Kuehling | 2004-12-15 | 2 | -4/+4 |
| | |||||
* | Add _mesa_delete_texture_object() call to viaDeleteTexture | Keith Whitwell | 2004-12-15 | 1 | -0/+3 |
| | | | | [Freedesktop BUG 2080] | ||||
* | uint*t -> u_int*t | Alan Hourihane | 2004-12-14 | 8 | -98/+98 |
| | |||||
* | fix warning | Alan Hourihane | 2004-12-14 | 1 | -1/+1 |
| | |||||
* | uint*t -> u_int*t changes | Alan Hourihane | 2004-12-14 | 51 | -246/+245 |
| | |||||
* | fix recursion problem introduced on Nov 27 | Brian Paul | 2004-12-12 | 3 | -2/+3 |
| | |||||
* | Get linux-solo dependencies building correctly, | Keith Whitwell | 2004-12-09 | 2 | -2/+2 |
| | | | | Make sure symlinks are built in driver directories before running makedepend. | ||||
* | back out Keiths last checkin - for Solo the include order is important | Dave Airlie | 2004-12-09 | 1 | -3/+7 |
| | |||||
* | fixup pci code for Jon's last checkin for changing page size | Dave Airlie | 2004-12-09 | 1 | -2/+2 |
| | |||||
* | (Stephane Marchesin, me) add hyperz support to radeon and r200 drivers. Only ↵ | Roland Scheidegger | 2004-12-08 | 16 | -12/+116 |
| | | | | fast z clear and z buffer compression are supported for now, hierarchical-z is not. Still problems with multiple apps and z/stencil readback, which is why hyperz is disabled per default. Also add the new point sprite packet drm 1.13 accepts to the sanity code. | ||||
* | Improve the behaviour of the build system wrt depend files. | Keith Whitwell | 2004-12-08 | 4 | -10/+9 |
| | | | | | | | | - Remove the -Y option for makedepend, so that the standard directories are searched - No longer pipe the multiple errors that the -Y option caused into /dev/null -- we want to know about these failures. - Fix up a few other misc makedepend failures. | ||||
* | Use union type to avoid strict aliasing problems. | Alan Hourihane | 2004-12-08 | 1 | -20/+34 |
| | |||||
* | Check for some header defines before redefining functions. Silences warnings. | Alan Hourihane | 2004-12-08 | 1 | -0/+3 |
| | |||||
* | From: Stephane Marchesin <[email protected]> | Dave Airlie | 2004-12-08 | 2 | -7/+96 |
| | | | | | | | 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. | ||||
* | fix depth/stencil readback if coordinates are larger than 1023 ↵ | Roland Scheidegger | 2004-12-08 | 1 | -2/+2 |
| | | | | (https://bugs.freedesktop.org/show_bug.cgi?id=2010). Should now work up to 2047, which is the current limit for 3d rendering. | ||||
* | only enable GL_MESA_ycbcr_texture for real r200 chips, not the derivatives, ↵ | Roland Scheidegger | 2004-12-03 | 1 | -1/+5 |
| | | | | since yuv textures do not work for some reason on the other chips. | ||||
* | enable GL_EXT_stencil_wrap (patch from idr), including some hacks for ↵ | Roland Scheidegger | 2004-12-03 | 5 | -0/+56 |
| | | | | original radeons which have some broken stencil ops. | ||||
* | silence warnings | Alan Hourihane | 2004-12-02 | 3 | -14/+27 |
| | |||||
* | Fix some warnings | Alan Hourihane | 2004-12-02 | 1 | -1/+5 |
| | |||||
* | Remove _mesa_ResizeBuffersMESA() call from _mesa_set_viewport(). | Brian Paul | 2004-11-27 | 28 | -73/+45 |
| | | | | | | | | 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. | ||||
* | Update expected DRM version to 2.0.0 | Keith Whitwell | 2004-11-25 | 1 | -1/+1 |
| | |||||
* | revert enabling of hw quads for swtcl. It lead to problems with quad_strips, ↵ | Roland Scheidegger | 2004-11-23 | 1 | -2/+2 |
| | | | | 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. | ||||
* | enable hw quad primitive for swtcl | Roland Scheidegger | 2004-11-12 | 1 | -2/+2 |
| | |||||
* | add LOCK_HARDWARE/UNLOCK_HARDWARE to radeonClear so state gets updated which ↵ | Roland Scheidegger | 2004-11-12 | 1 | -0/+7 |
| | | | | hopefully fixes lockups (?) (from r200 driver) | ||||
* | (from r200 driver) If an application cleared before any state had been ↵ | Roland Scheidegger | 2004-11-12 | 1 | -16/+21 |
| | | | | | | | | | | 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. | ||||
* | brown paper bag, r100 can't do hardware quads. | Adam Jackson | 2004-11-12 | 1 | -1/+1 |
| | |||||
* | make render_quads_verts call EMIT_PRIM with the arguments in the right order, | Adam Jackson | 2004-11-12 | 2 | -2/+2 |
| | | | | | and enable hardware quads on r200 and radeon. samples/prim renders quads correctly now. | ||||
* | GL_(UN)PACK_SKIP_IMAGES should only be applied to 3D texture pack/unpacking | Brian Paul | 2004-11-10 | 3 | -20/+20 |
| | | | | | | | 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. | ||||
* | add some chip ids | Roland Scheidegger | 2004-11-10 | 2 | -3/+21 |
| | |||||
* | enable GL_EXT_fog_coord. Calculate fog factors and submit them instead of ↵ | Roland Scheidegger | 2004-11-03 | 9 | -9/+266 |
| | | | | 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). | ||||
* | Added MMX optimized version of the RGB565 ReadRGBASpan routine. | Ian Romanick | 2004-11-02 | 1 | -7/+19 |
| | |||||
* | No visible changes, but commit the groundwork for further experiments: | Nicolai Haehnle | 2004-11-02 | 7 | -24/+360 |
| | | | | | - Install custom (though inactive) pipeline - Track depth test and culling state in hardware registers | ||||
* | Add culling registers, sync versions of r300_reg.h | Nicolai Haehnle | 2004-11-02 | 1 | -9/+16 |
| | |||||
* | Nicolai's sw-clipspan-fixes.patch | Keith Whitwell | 2004-11-01 | 2 | -12/+13 |
| | |||||
* | Bug #1713: Some rare libGL's have __glXFindDRIScreen defined but do not | Adam Jackson | 2004-10-27 | 1 | -6/+26 |
| | | | | | export it via glXGetProcAddress. These are not supported anymore, so print an error message to that effect. | ||||
* | As per suggestions my Michel Daenzer, improve the fix for bugzilla #1513. | Ian Romanick | 2004-10-26 | 3 | -2/+66 |
| | |||||
* | Bug #1679: Link DRI drivers against DRI_LIB_DEPS, not GL_LIB_DEPS. | Adam Jackson | 2004-10-25 | 1 | -1/+1 |
| | |||||
* | Implement ColorMask | Nicolai Haehnle | 2004-10-24 | 2 | -9/+35 |
| | |||||
* | Hardware accelerated depth clear | Nicolai Haehnle | 2004-10-24 | 5 | -16/+62 |
| | |||||
* | Big-endian fixes for R200 sw TCL path. | Ian Romanick | 2004-10-23 | 1 | -0/+21 |
| | |||||
* | fix compilation error in `convertPalette' (still have to fix the issue, though) | Daniel Borca | 2004-10-19 | 1 | -2/+4 |
| | |||||
* | Small optimization for big-endian (e.g., PowerPC) systems. | Ian Romanick | 2004-10-18 | 1 | -0/+10 |
| | |||||
* | print an error message in convertPalette before dying. | Daniel Borca | 2004-10-18 | 1 | -0/+3 |
| | | | | this is NOT a fix, but it'll have to wait a little... | ||||
* | small fix to match new _mesa_rescale_teximage2d | Daniel Borca | 2004-10-18 | 1 | -0/+2 |
| | |||||
* | Fix compile errors when DEBUG is defined. | Ian Romanick | 2004-10-18 | 2 | -5/+5 |
| | |||||
* | Fix t_vertex byte-ordering issues for PowerPC. This was tested with gears | Ian Romanick | 2004-10-17 | 1 | -0/+20 |
| | | | | and tunnel (for fog). | ||||
* | Fix hangs on big-endian (e.g., PowerPC) hardware. | Ian Romanick | 2004-10-17 | 1 | -2/+1 |
| | |||||
* | - FIX: flickering | Nicolai Haehnle | 2004-10-17 | 12 | -81/+274 |
| | | | | - Scissor support works now | ||||
* | Fixed off by one errors in clipping. | Ville Syrjala | 2004-10-16 | 1 | -2/+2 |
| | |||||
* | Add code to support projective texturing and fix mixed enabling of texture | Eric Anholt | 2004-10-16 | 11 | -270/+265 |
| | | | | | | | | | | | | | | | coordinate generation. Original code by Roland Schiedegger, with changes by myself. While here, ensure that the swtcl path does tnl_install_attrs enough when fog/specular are being (en/dis)abled. Notable effects: - projtex test works with TCL and is closer with swtcl (Bugzilla #1461) - 8/9 squares work in texgenmix instead of 3. - texcyl "reflect" mode works (GL_SPHERE_MAP is now a fallback -- unclear if the hardware can actually support it). - flickering in doom3 replaced by just plain darkness. - blocktube fixed (Bugzilla #984) - fixes stex3d |