Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-04-29 | Use variable library name in pkg-config output. | Tom Fogal | |
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-29 | autoconf: Add switch for optional EGL | Dan Nicholson | |
EGL doesn't build on all platforms, so allow people to opt out. | |||
2009-04-29 | autoconf: Clean up some m4 usage | Dan Nicholson | |
m4_fatal is equivalent to m4_errprint + m4_exit. | |||
2009-04-29 | tgsi: added tgsi_check_soa_dependencies() and related debug code (disabled) | Brian Paul | |
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-29 | mesa: added _mesa_check_soa_dependencies() function | Brian Paul | |
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-28 | softpipe: return PIPE_UNREFERENCED in softpipe_is_buffer/texture_referenced() | Brian Paul | |
This allows the engine demo to run again (avoid crash in VBO code). This stuff still needs to be revisited someday though... | |||
2009-04-28 | mesa/st: protect internal flushes with FLUSH_CURRENT | Keith Whitwell | |
Already doing this for driver.flush() | |||
2009-04-28 | mesa/main: protect driver.finish with FLUSH_CURRENT | Keith Whitwell | |
Already doing this for driver.flush() | |||
2009-04-28 | mesa/st: remove duplicate offset calculation | Keith Whitwell | |
2009-04-28 | gallium/draw: add ability to print out active pipeline stages | Keith Whitwell | |
2009-04-28 | mesa/st: translate VERT_ATTRIB_GENERIC8..15 in st_translate_vertex_program | Keith Whitwell | |
It seems quake4 can hit these attributes sometimes. | |||
2009-04-28 | progs: add fflushes for cygwin | Keith Whitwell | |
2009-04-28 | util/indices: remove debug prints | Keith Whitwell | |
2009-04-28 | mesa/st: workaround for crashes in st_copy_texsubimage | Keith Whitwell | |
Proper fix for this hasn't been identified, but avoid crashing. | |||
2009-04-28 | wgl: Store current HDC/HGLRC in stw_context. | José Fonseca | |
Less TLS lookups. | |||
2009-04-28 | R300: add quadpipe overrides | Alex Deucher | |
RV410 SE chips only have 1 quadpipe. Also, handle other R300 chip with quadpipe override | |||
2009-04-28 | i965: avoid segfault in intel_update_renderbuffers() if using DRI1 | Brian Paul | |
2009-04-28 | swrast: add missing break in clamp_rect_coord_linear() | Brian Paul | |
See bug 21461. | |||
2009-04-28 | demos: asst. updates, clean-ups | Brian Paul | |
2009-04-28 | gallium dri st: Propagate the drawable info when we bind to new drawables. | Thomas Hellstrom | |
Signed-off-by: Thomas Hellstrom <thellstrom-at-vmware-dot-com> | |||
2009-04-28 | gallium dri st: Use st_get_current() instead of GET_CURRENT_CONTEXT() | Thomas Hellstrom | |
Signed-off-by: Thomas Hellstrom <thellstrom-at-vmware-dot-com> | |||
2009-04-28 | st: Add an st_get_current() function. | Thomas Hellstrom | |
Signed-off-by: Thomas Hellstrom <thellstrom-at-vmware-dot-com> | |||
2009-04-28 | gallium-intel: Create a i965_dri.so symlink | Jakob Bornecrantz | |
This is only used for debuging the gem backend on i965 chipset using the softpipe pipe driver. Usage: "export INTEL_SOFTPIPE=y" and point LIBGL_DRIVERS_PATH to "$MESA/lib/gallium" where $MESA is the mesa root. | |||
2009-04-28 | gallium-intel: Fix build of dri driver | Jakob Bornecrantz | |
2009-04-28 | gallium dri st: Fix up some comments and minor bugs. | Thomas Hellstrom | |
Signed-off-by: Thomas Hellstrom <thellstrom-at-vmware-dot-com> | |||
2009-04-28 | radeon-r300: Fix a bit of breakage. | Corbin Simpson | |
Not really sure why reordering the ioctls makes them work again. | |||
2009-04-28 | radeon: Use PCI_MATCH_ANY for xorg driver. | Corbin Simpson | |
Might as well. | |||
2009-04-28 | gallium: Rename the dri state tracker lib to libdridrm.a | Thomas Hellstrom | |
2009-04-28 | gallium: indent and cleanfile the dri state-tracker. | Thomas Hellstrom | |
2009-04-28 | gallium: Update the dri2 state tracker to support dri1. | Thomas Hellstrom | |
Signed-off-by: Thomas Hellstrom <thellstrom-at-vmware-dot-com> | |||
2009-04-28 | gallium: Add a dri1 api | Thomas Hellstrom | |
that a driver needs to implement on top of the drm api to support dri1. Signed-off-by: Thomas Hellstrom <thellstrom-at-vmware-dot-com> | |||
2009-04-28 | gallium: Move the dri2 state tracker since we're about to extend it to dri1. | Thomas Hellstrom | |
Signed-off-by: Thomas Hellstrom <thellstrom-at-vmware-dot-com> | |||
2009-04-28 | gallium: Update the drm_api. | Thomas Hellstrom | |
Make it possible to pass state-tracker-specific data to the init_screen function, and even open the door for device-specific state-tracker screen initialization. Signed-off-by: Thomas Hellstrom <thellstrom-at-vmware-dot-com> | |||
2009-04-27 | Avoid a segfault in shader compilation | Robert Ellison | |
If a shader reaches an out-of-memory condition while adding a new function (reallocating the function list), a segfault will occur during cleanup (because the num_functions field is non-zero, but the functions pointer is NULL). This fixes that segfault by zeroing out the num_functions field if reallocation fails. | |||
2009-04-27 | wgl: Cope with pre-existing threads. | José Fonseca | |
DllMain is called with DLL_THREAD_ATTACH only by threads created after the DLL is loaded by the process. | |||
2009-04-27 | wgl: Implement WGL_EXT_extensions_string extension. | José Fonseca | |
2009-04-27 | util: Remove unix includes. | José Fonseca | |
2009-04-27 | i965: only upload constant buffer data when we actually need the const buffer | Brian Paul | |
Make the use_const_buffer field per-program and only call the code which updates the constant buffer's data if the flag is set. This should undo the perf regression from 20f3497e4b6756e330f7b3f54e8acaa1d6c92052 | |||
2009-04-27 | util/time: add util_time_sleep() for windows userspace | Keith Whitwell | |
Somebody with a clue could probably do a better implemenation... | |||
2009-04-27 | mesa/st: fix incorrect face, level in compress_with_blit | Keith Whitwell | |
We were incorrectly applying the destination texture face and level when requesting a transfer to the temporary texture, which has only one face and level. This would obviously cause problems uploading to compressed cube and mipmap textures. | |||
2009-04-27 | demos: Clean up allocated Textures and Display Lists when demo quit | Shuang He | |
2009-04-24 | util: Add debug_printf_once | Micah Dowty | |
2009-04-27 | mesa: Call _mesa_snprintf instead of snprintf. | José Fonseca | |
snprintf not directly available on Windows. | |||
2009-04-27 | stw: Use a statically initiallized gl proc table. | José Fonseca | |
It doesn't change anyway. | |||
2009-04-27 | r300: always emit output insts after all KIL insts | Maciej Cencora | |
2009-04-26 | r300-gallium: Correctly flush Draw. | Corbin Simpson | |
Should help with a few non-TCL bugs. | |||
2009-04-26 | r300-gallium: Add a draw_flush() to r300_flush(). | Mathias Gottschlag | |
This fixes some missing primitives which had been drawn right before the next glClear(). | |||
2009-04-25 | r300-gallium: Fix vertex shader OVM counting. | Corbin Simpson | |
Attribs must be packed: position, point size, colors, texcoords. Thanks to osiris for pointing it out. | |||
2009-04-25 | r300-gallium: Clean up FB state emit. | Corbin Simpson | |
2009-04-25 | r300-gallium: Set framebuffer pitch on every framebuffer change. | Mathias Gottschlag | |
Signed-off-by: Corbin Simpson <MostAwesomeDude@gmail.com> |