summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2009-05-08scons: Don't use deprecated Options.José Fonseca2-9/+9
2009-05-08util: Limit the stack walk to avoid referencing undefined memory.José Fonseca1-1/+10
2009-05-08gallium/tgsi: hack around linker/archiver breakageKeith Whitwell1-0/+27
Add a dummy function which exists only so that tgsi_text_translate() doesn't get magic-ed out of the libtgsi.a archive by the build system. Don't remove unless you know this has been fixed - check on mingw/scons builds as well.
2009-05-08progs/trivial: add vbo-noninterleaved testKeith Whitwell3-0/+141
2009-05-08wgl: Include alpha bits in pixel format's cColorBits field.José Fonseca1-1/+1
2009-05-08gallium/draw: cope with unused vertex_elementsKeith Whitwell3-2/+9
2009-05-08trivial: add line-flat.cKeith Whitwell3-0/+149
2009-05-08wgl: UINT_PTR null value is an integral type, so return 0 instead of NULL.José Fonseca1-2/+2
2009-05-08pb: Save the stack backtrace when creating/mapping a debug buffer.José Fonseca1-1/+101
2009-05-08pb: Dump the fenced buffer sizes.José Fonseca1-4/+6
2009-05-07swrast: fix span clipping bugBrian Paul2-22/+71
If a horizontal span of pixels was located at x < 0 we could sometimes read/write outside of renderbuffer bounds.
2009-05-07mesa: unmap buffer objects during context tear-downBrian Paul1-0/+4
2009-05-05gallium: fix texcoords for cubemap mipmap generationBrian Paul1-10/+86
We need to use (s,t,r) cubemap coords when sampling from the cubemap texture so the rendered quad gets texture samples from the correct cube face.
2009-05-04glx: replace Xmalloc() calls with Xcalloc()Brian Paul2-2/+2
Fixes a bug where psp->WaitX was uninitialized. Reported by Chris Clayton.
2009-05-01st: create renderbuffer's pipe_surface in st_render_texture()Brian Paul1-1/+11
Previously we created the pipe_surface during framebuffer validation. But if we did a glCopyTex[Sub]Image() before anything else we wouldn't yet have the surface. This fixes that.
2009-05-01mesa: fix state validation bug for glCopyTex[Sub]Image()Brian Paul1-5/+16
We need to make sure the framebuffer state is up to date to make sure we read pixels from the right buffer when doing a texture image copy.
2009-05-01Fix symbol list for mangled Mesa on Darwin.Tom Fogal1-59/+59
When building mangled Mesa on Darwin, the exported symbols are named `_mgluWhatever' instead of simply `_gluWhatever'. When using a list of exported symbols via the system ld's `-exported_symbols_list' command line option (as done by mklib), this resulted in error messages about exporting symbols which do not exist. Fortunately the file format accepts simple wildcards. This throws a wildcard so that the symbol list will match both the mangled and non-mangled names, preventing the warning and actually exporting the correct symbols in one shot.
2009-05-01mesa: remove -devel suffix from versionBrian Paul1-1/+1
2009-05-01configs: bump MESA_MINOR to 5Brian Paul1-1/+1
2009-05-01docs: fix typoBrian Paul1-1/+1
2009-05-01radeon: Don't even bother with things too big to fit into our card.Corbin Simpson1-1/+3
2009-05-01r300-gallium, radeon-winsys: Hide radeon_cs from r300 pipe.Corbin Simpson4-20/+36
2009-05-01r300-gallium, radeon-winsys: Space accounting.Corbin Simpson7-9/+126
It is no longer optional in current libdrm, so it was time to actually start counting our BOs.
2009-05-01r300-gallium, radeon-winsys: Reorganize r300_winsys header, break ABI.Corbin Simpson3-47/+70
Make things more consistent, prepare for more function hooks.
2009-05-01r300-gallium: Don't bother with conditional double define.Corbin Simpson1-7/+0
We'll just forever leave it in r300_winsys.h since it's needed for whichever winsys is hosting the pipe.
2009-05-01radeon: Fix cast and comment.Corbin Simpson1-2/+1
2009-04-30docs: asst. updates for 7.5 releaseBrian Paul3-7/+7
2009-04-30docs: bring in 7.4 doc updates from mesa_7_4_branchBrian Paul4-3/+117
2009-04-30docs: notes about new version number meaning in release notesBrian Paul1-1/+8
2009-04-30mesa: update linux-static, linux-x86-static configsBrian Paul2-7/+4
2009-04-30demos: silence warningBrian Paul1-1/+1
2009-04-30mklib: replace if/expr with caseTormod Volden1-12/+15
Saves forking an expr for every object.
2009-04-30mesa: Prepend "-Wl," to linking optionsTormod Volden3-2/+19
Let mklib ignore -Wl options inside the object list when building static libraries
2009-04-30i915simple: remove duplicated i915_context.c in C_SOURCESBrian Paul1-1/+0
2009-04-30r300: Increase reference count of texture objects referenced by current state.Michel Dänzer4-9/+11
Fixes a use-after-free reported in http://bugs.freedesktop.org/show_bug.cgi?id=20539, so this possibly fixes that bug. It has been confirmed to fix http://bugs.freedesktop.org/show_bug.cgi?id=17895 .
2009-04-30gallium: Add SCons build support for the DRI state tracker.Michel Dänzer2-0/+24
2009-04-29egl: Don't install demodriverDan Nicholson1-2/+0
I don't think anyone besides a developer would ever want to use the demo egl driver. Furthermore, egl would only ever load demodriver if it was set via EGL_DRIVER in the environment. In that case, I think you can point it to your mesa source directory.
2009-04-29progs/tests: Update ignoresJakob Bornecrantz1-8/+6
2009-04-29progs/tests: Add mipmap_comp for mipmap testing with compressed texturesJakob Bornecrantz4-0/+298
2009-04-29Use variable library name in pkg-config output.Tom Fogal10-10/+15
Previously the pkg-config output files would contain e.g. `-lGL' and `-lGLU', even if the user modified their configuration to build libraries with different names. This modifies the pkg-config inputs, and corresponding makery, so that modifying the output library name will cause the appropriate updated name to appear in the pkg-config `-l' option. Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
2009-04-29autoconf: Add switch for optional EGLDan Nicholson1-9/+23
EGL doesn't build on all platforms, so allow people to opt out.
2009-04-29autoconf: Clean up some m4 usageDan Nicholson1-15/+7
m4_fatal is equivalent to m4_errprint + m4_exit.
2009-04-29tgsi: added tgsi_check_soa_dependencies() and related debug code (disabled)Brian Paul1-0/+62
The TGSI interpeter operates in SOA style. We need to check for data dependencies in instructions which read from and write to the same register. For now just adding some debug code to detect that condition. Actual fixes to follow.
2009-04-29mesa: added _mesa_check_soa_dependencies() functionBrian Paul2-0/+53
This function will check an instruction to see if there's data dependencies between the dst and src registers if executed in an SOA manner.
2009-04-28softpipe: return PIPE_UNREFERENCED in softpipe_is_buffer/texture_referenced()Brian Paul1-2/+2
This allows the engine demo to run again (avoid crash in VBO code). This stuff still needs to be revisited someday though...
2009-04-28mesa/st: protect internal flushes with FLUSH_CURRENTKeith Whitwell1-1/+1
Already doing this for driver.flush()
2009-04-28mesa/main: protect driver.finish with FLUSH_CURRENTKeith Whitwell1-0/+1
Already doing this for driver.flush()
2009-04-28mesa/st: remove duplicate offset calculationKeith Whitwell2-18/+1
2009-04-28gallium/draw: add ability to print out active pipeline stagesKeith Whitwell15-1/+24
2009-04-28mesa/st: translate VERT_ATTRIB_GENERIC8..15 in st_translate_vertex_programKeith Whitwell1-0/+8
It seems quake4 can hit these attributes sometimes.