summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2010-05-16i965: Remove the half-baked code for multiple OQs at the same time.Eric Anholt
GL doesn't actually let you begin an OQ while one is active, so the extra work was pointless.
2010-05-16i965: Remove unused occlusion query struct field.Eric Anholt
2010-05-16r300/compiler: fix peephole optimizerTom Stellard
Tested-by: Marek Olšák <maraeo@gmail.com>
2010-05-16r300/compiler: Implement simple peephole optimizerNicolai Hähnle
Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com>
2010-05-16r300g: implement flush+sync (AKA glFinish)Marek Olšák
See comments in the code.
2010-05-16r300g: expose radeon_bo_wait to the driverMarek Olšák
2010-05-16r300g: remove unused winsys entrypointsMarek Olšák
2010-05-16sw/wrapper: Implement dt_get_handleJakob Bornecrantz
2010-05-16sw/wrapper: Make sure targets are texturesJakob Bornecrantz
2010-05-16i965g: Fix return for resource_get_handleJakob Bornecrantz
2010-05-16r300g/swtcl: put emitting max index to the right placeMarek Olšák
This fixes CS rejections in openarena.
2010-05-16r300g/swtcl: flush draw to avoid the rejection of CSMarek Olšák
2010-05-16r300g/swtcl: update PSC only once when a shader is changedMarek Olšák
2010-05-16r300g/swtcl: call update_derived_state only once per draw-callMarek Olšák
2010-05-15st/xlib: Remove unnecessary header.Vinson Lee
2010-05-15st/xorg: Remove unnecessary header.Vinson Lee
2010-05-15mesa: Remove unnecessary header.Vinson Lee
2010-05-15r300g: Move code after declarations.Vinson Lee
Fixes SCons build.
2010-05-16r300g/swtcl: fix provoking vertexMarek Olšák
2010-05-16r300g/swtcl: fix point sprite texgen (do it in HW)Marek Olšák
2010-05-16r300g/swtcl: disable converting points/lines to trianglesMarek Olšák
2010-05-15r300/compiler: silence a warningMarek Olšák
2010-05-15r300g: fix psychedelic colors with SWTCLMarek Olšák
r300_vertex_shader::outputs was uninitialized. Also remove the tokens parameter.
2010-05-15r300g: the vertex_stream_state atom for SWTCL should be staticMarek Olšák
plus whitespace and comment fixes.
2010-05-15r300g: remove unused struct r300_vertex_infoMarek Olšák
2010-05-15r300g: fix emission of some non-CSO atoms at the beginning of CSMarek Olšák
2010-05-15r300g: remove unused r300_query::activeMarek Olšák
2010-05-15r300g: fix BO space accounting for occlusion queriesMarek Olšák
2010-05-15r300g: forbid overlapping queries and print error messagesMarek Olšák
2010-05-15r300g: rename a few emit_query functionsMarek Olšák
2010-05-15r300g: silence warningsMarek Olšák
2010-05-15llvmpipe: Remove unnecessary headers.Vinson Lee
2010-05-15util: Remove unused cruft.José Fonseca
2010-05-15llvmpipe: Use GALLIVM_DEBUG opt where applicable.José Fonseca
2010-05-15draw: Use GALLIVM_DEBUG opt.José Fonseca
2010-05-15gallivm: Centralize some of the LLVM debugging options.José Fonseca
2010-05-15gallivm: Temporarily remove function call supportJosé Fonseca
Commits moved to the gallivm-call feature branch for further experimentation and stabilization.
2010-05-15gallivm: use our util_snprintfZack Rusin
2010-05-15gallivm: implement function callsZack Rusin
2010-05-14i965: Set the correct provoking vertex for clipped first-mode trifans.Eric Anholt
Bug #24470: glean clipFlat test.
2010-05-14gallivm: added some vector length sanity checksBrian Paul
2010-05-14gallivm: added lp_sizeof_llvm_type()Brian Paul
2010-05-14gallivm: comments, const qualifiersBrian Paul
2010-05-14tgsi: clean up in emit_fetch()Brian Paul
2010-05-14mesa: more info in glUniform error messagesBrian Paul
2010-05-14mesa: silence void * / func * conversion warningsBrian Paul
2010-05-14tgsi: add a dummy function to silence warningBrian Paul
2010-05-14mesa: enum bitfields are a gcc-only feature, use GLubyteBrian Paul
2010-05-14egl: Implement EGL_NOK_texture_from_pixmapKristian Høgsberg
This extension allows a color buffer to be used for both rendering and texturing. EGL allows the use of color buffers of pbuffer drawables for texturing, this extension extends this to allow the use of color buffers of pixmaps too.
2010-05-14egl: Only allow valid config attributes in _eglParseConfigAttribList()Kristian Høgsberg
Passing 0x3030, 0 in the chooser list didn't get caught.