Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-09-23 | intel: Replace my intel_texture_bitmap code with _mesa_meta_Bitmap. | Eric Anholt | |
The meta code is more general than mine, and appears to pass the same sets of tests (piglit + some oglconform). | |||
2010-09-23 | intel: Remove unnecessary minimum pitch alignment to 32 bytes. | Eric Anholt | |
This broke with the cleanup I did in convolution removal. It's unnecessary anyway since region_alloc_tiled adjusts pitches for us (64 byte alignment) | |||
2010-09-23 | r300g: Always try to build libr300compiler.a | Tom Stellard | |
Make libr300compiler.a a PHONY target so that this library will always be built. This fixes the problem of libr300compiler.a not being updated when r300g is being built and r300c is not. This is a candidate for the Mesa 7.9 branch. | |||
2010-09-23 | intel: Remove disabled stencil drawpixels acceleration. | Eric Anholt | |
We still retain the fallback override for GL_STENCIL_INDEX, because the metaops version fails at oglconform. | |||
2010-09-24 | r300g: fix point sprite coord. | Dave Airlie | |
handled elsewhere now. thanks to Droste on irc for pointing out the fix | |||
2010-09-23 | r600g: initial evergreen support in new path | Jerome Glisse | |
This doesn't work yet. Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-09-23 | r600g: Destroy the blitter. | Tilman Sauerbeck | |
Signed-off-by: Tilman Sauerbeck <tilman@code-monkey.de> | |||
2010-09-23 | mesa: Remove EXT_convolution. | Eric Anholt | |
More optional code. | |||
2010-09-23 | mesa: Remove SGI_color_matrix. | Eric Anholt | |
Another optional ARB_imaging subset extension. | |||
2010-09-23 | mesa: Remove SGI_color_table. | Eric Anholt | |
Another optional ARB_imaging subset extension. | |||
2010-09-23 | mesa: Remove EXT_histogram. | Eric Anholt | |
This has always been optional, and not useful. | |||
2010-09-23 | mesa: Remove the non-required ARB_imaging extension. | Eric Anholt | |
Many of the EXT_ extensions in the subset have significant code overhead with no users. It is not a required part of GL -- though text describing the extension is part of the core spec since 1.2, it is always conditional on the ARB_imaging extension. | |||
2010-09-23 | d3d1x: obliterate IDL parameter names from d3d10.idl from Wine too | Luca Barbieri | |
2010-09-23 | d3d1x: add autogenerated files as prerequisites, so make builds them | Luca Barbieri | |
2010-09-23 | d3d1x: fix build without system EGL/egl.h | Luca Barbieri | |
2010-09-23 | d3d1x: add missing guid.cpp | Luca Barbieri | |
2010-09-23 | d3d1x: flush properly | Luca Barbieri | |
2010-09-23 | d3d1x: remove another include specstrings.h | Luca Barbieri | |
2010-09-23 | d3d1x: flush the pipe context when presenting | Luca Barbieri | |
2010-09-23 | d3d1x: remove specstrings.h include | Luca Barbieri | |
2010-09-23 | d3d11: obliterate IDL parameter names | Luca Barbieri | |
2010-09-23 | d3d1x: rename parameters in dxgi | Luca Barbieri | |
2010-09-23 | d3d1x: rename params in misc and objects | Luca Barbieri | |
2010-09-23 | d3d11: rename screen params | Luca Barbieri | |
2010-09-23 | d3d1x: rename context params | Luca Barbieri | |
2010-09-23 | d3d1x: minifix | Luca Barbieri | |
2010-09-23 | d3d1x: remove specstrings | Luca Barbieri | |
2010-09-23 | d3d1x: normalize whitespace | Luca Barbieri | |
2010-09-23 | d3d1x: s/tpf/sm4/g | Luca Barbieri | |
2010-09-23 | d3d1x: autogenerate shader enums and text from def files | Luca Barbieri | |
This avoids the duplication in tpf.h and tpf_text.cpp | |||
2010-09-23 | d3d1x: initialize the mutex | Luca Barbieri | |
2010-09-23 | draw: Prevent clipped vertices overflow. | José Fonseca | |
Some pathological triangles cause a theoritically impossible number of clipped vertices. The clipper will still assert, but at least release builds will not crash, while this problem is further investigated. | |||
2010-09-23 | draw: don't apply flatshading to clipped tris with <3 verts | Keith Whitwell | |
If a triangle was completely culled by clipping, we would still try to fix up its provoking vertex. | |||
2010-09-23 | d3d1x: bind NULL CSOs before destroying default CSOs on context dtor | Luca Barbieri | |
Otherwise softpipe and llvmpipe assert. | |||
2010-09-23 | d3d1x: fix deadlocks on non-recursive mutex | Luca Barbieri | |
2010-09-23 | egl: fix build since 17eace581d25a626a7d75d9d1205d012cbb14a6e | Dave Airlie | |
looks like mesa st didn't get updated. | |||
2010-09-23 | r600g: fix warnings since last commit. | Dave Airlie | |
2010-09-23 | r600g: use blitter to do db->cb flushing. | Dave Airlie | |
use the blitter + custom stage to avoid doing a whole lot of state setup by hand. This makes life a lot easier for doing this on evergreen it also keeps all the state setup in one place. We setup a custom context state at the start with a flag to denote its for the flush, when it gets generated we generate the correct state for the flush and no longer have to do it all by hand. this should also make adding texture *to* depth easier. | |||
2010-09-23 | u_blitter: add a custom blitter call passing a dsa cso | Dave Airlie | |
reimplement the flush stage added for r300 to allow a custom DSA stage to be used in the pipeline, this allows for r600 hw DB->CB flushes. | |||
2010-09-23 | d3d1x: properly reference count the backend | Luca Barbieri | |
2010-09-22 | dri: Pass the __DRIscreen and the __DRIscreen private back to image lookup | Kristian Høgsberg | |
We will typically have a current context when we need to lookup the image, but the lookup implementation don't need it so drop it. | |||
2010-09-22 | rbug: fix rbug when contexts are being destroyed | Zack Rusin | |
2010-09-23 | r600g: fix typo in evergreen register list | Dave Airlie | |
pointed out by glisse on irc. | |||
2010-09-23 | r600g: fix depth readback on rv610 and other quirky variants. | Dave Airlie | |
at least zreaddraw works for me here now on my rv610 | |||
2010-09-23 | r600g: use floats instead of hex for blit vbo | Dave Airlie | |
once I go past 0x3f80000, I can't translate hex to float in-brain anymore. | |||
2010-09-22 | i965: Warning fix for vector result any_nequal/all_equal change. | Eric Anholt | |
2010-09-22 | i965: Update expression splitting for the vector-result change to compares. | Eric Anholt | |
Fixes: glsl1-precision exp2 glsl1-precision log2 | |||
2010-09-22 | i965: When splitting vector variable assignment, ignore unset channels. | Eric Anholt | |
The new checks for sanity in ir_assignment creation got angry about this write_mask == 0. Fixes: glsl-fs-dot-vec2. glsl-fs-atan-2 glsl-fs-dot-vec2 | |||
2010-09-22 | glx: Invalidate buffers after binding a drawable | Kristian Høgsberg | |
If the server doesn't send invalidate events, we may miss a resize before the rendering starts. Invalidate the buffers now so the driver will recheck before rendering starts. https://bugs.freedesktop.org/show_bug.cgi?id=29984 https://bugs.freedesktop.org/show_bug.cgi?id=30155 | |||
2010-09-22 | i965: Fix the vector/expression splitting for the write_mask change. | Eric Anholt | |
+113 piglits. |