summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* r300: rv350+ support FLT16_2/4 vertex formatsAlex Deucher2010-01-251-1/+1
|
* r300g: Finish and enable immediate mode.Corbin Simpson2010-01-253-53/+106
| | | | Based on Marek's immd-mode patch.
* radeong: Make sure that we're not emitting relocations for local buffers.Corbin Simpson2010-01-251-2/+6
| | | | Split from Marek's immd-mode patch.
* radeong: Make is_r3xx inline to avoid warnings.Corbin Simpson2010-01-251-1/+1
| | | | Split from Marek's immd-mode patch.
* radeong: Clean up domain usages.Corbin Simpson2010-01-251-11/+18
| | | | Split from Marek's immd-mode patch.
* Revert "r300g,radeong: finish and enable the immediate mode"Corbin Simpson2010-01-258-219/+67
| | | | This reverts commit 112239e9a66a155d36fe2ad0ab130e6f26eff298.
* Fix compressed texture loads for non-minimal pitches againLuca Barbieri2010-01-251-2/+4
| | | | | | | | My commit eea6a7639f767b1d30b6ef1f91a9c49e3f3b78f0 does a memcpy of height lines, but that's wrong because the texture has a block layout and we must thus use the number of vertical blocks instead of the height. Signed-off-by: Brian Paul <[email protected]>
* winsys/drm: Correctly install EGL drivers.Chia-I Wu2010-01-251-1/+1
| | | | | Remove extraneous quotes that prevent some drivers to be installed when there are more than one display in EGL_DISPLAYS.
* pipebuffer: Reapply the mesa_7_7_branch's changes.José Fonseca2010-01-252-335/+769
| | | | | | | | | | After the last mesa_7_7_branch merge the old master code remained, instead of the newer mesa_7_7_branch's code. This commit makes both branches match, modulo interface changes. Note: future mesa_7_7_branch -> master merges will most likely hit conflicts in these files. Unless otherwise stated, the mesa_7_7_branch is the reference.
* llvmpipe: Remove lp_tex_sample_c.c again.José Fonseca2010-01-251-1712/+0
| | | | | Popped back to life in some merge. Not necessary even as a reference, since it is identical to softpipe's sp_tex_sample.c with renamed symbols.
* gallium-docs: Add note on scissor.Corbin Simpson2010-01-251-1/+4
|
* r300g,radeong: finish and enable the immediate modeMarek Olšák2010-01-248-67/+219
| | | | Nearly 100% performance increase in glxgears.
* r300g: fix zero-area scissorMarek Olšák2010-01-241-0/+16
|
* r300g,radeong: set tiling flags in libdrmMarek Olšák2010-01-243-0/+35
|
* radeong: do not emit a zero-sized command streamMarek Olšák2010-01-241-0/+5
| | | | | Fixing a hardlock introduced in fcbd285e421903ee0a65f19f5d633b25b5923c24 and reproducible with piglit/bugs/fdo23489.
* egl: Native types are renamed in EGL 1.3.Chia-I Wu2010-01-259-23/+26
| | | | Rename Native*Type to EGLNative*Type.
* egl: Make resource void pointer in _eglCheckResource.Chia-I Wu2010-01-255-11/+11
| | | | | This emphasizes the fact that the resource to be checked could really be invalid and have an unknown type.
* egl: Install EGL headers.Chia-I Wu2010-01-251-1/+9
| | | | Install EGL (and KHR) headers along with the library.
* egl: Add support for EGL_KHR_image.Chia-I Wu2010-01-259-1/+233
| | | | Individual drivers still need to implement the API hooks.
* egl: Update headers.Chia-I Wu2010-01-256-77/+441
| | | | | | Update to the current versions found at http://www.khronos.org/registry/egl/. There is one modification in khrplatform.h for GCC visibility.
* egl: check if driver_name is nullIgor Oliveira2010-01-251-1/+2
|
* nv50: fix uninitialized variable in nv50_revdep_reorderMarcin Slusarz2010-01-251-1/+1
| | | | | "unsafe" is never initialized, but used (found by valgrind)
* nv50: fix crash in nv50_pre_pipebuffer_map (nv50_screen->cur_ctx)Marcin Slusarz2010-01-251-0/+4
| | | | | | nv50_pre_pipebuffer_map references screen->cur_ctx which points to freed memory after the context is destroyed. This crash is easily triggerable by progs/xdemos/glxcontexts.
* nouveau/winsys: be nice and close the device on destroyMarcin Slusarz2010-01-251-0/+2
|
* nouveau: fix winsys object leakMarcin Slusarz2010-01-252-0/+11
|
* nv50: fix handling of FragCoord inputChristoph Bumiller2010-01-241-12/+11
|
* nv50: only flush texture caches on st requestChristoph Bumiller2010-01-242-3/+5
|
* nv50: implement render_conditionChristoph Bumiller2010-01-241-4/+36
| | | | Still not handling queries on multiple contexts though.
* egl: Add and use make_library_path.Chia-I Wu2010-01-241-27/+49
| | | | | | Add a platform specific function to turn a library name to a library path. It is used to convert EGL_DRIVER or the default driver to a library path that can be loaded.
* egl: Remove _eglFindAPIs.Chia-I Wu2010-01-242-56/+0
| | | | | This function is not used and should have been removed by last commit. My mistake.
* egl: Remove unused helper functions.Chia-I Wu2010-01-242-217/+0
| | | | | _eglFillInConfigs and _eglFindAPIs have no user in Mesa and are unlikely to find one soon. It should be fine to remove them.
* egl: Remove unused casting functions.Chia-I Wu2010-01-241-21/+0
| | | | _eglUIntToPointer and _eglPointerToUInt are no longer used.
* egl: Make surfaces and contexts resources.Chia-I Wu2010-01-249-221/+79
| | | | | Turn _EGLSurface and _EGLContext into _EGLResource so that they can be managed uniformly.
* egl: Add _EGLResource and _EGLResourceType.Chia-I Wu2010-01-243-0/+113
| | | | | | Resources are objects managed by a display. They can be linked to or unlinked from a display. It is also possible to check if a resource is valid.
* egl: Move surface functions in egldisplay.[ch] to eglsurface.[ch]Chia-I Wu2010-01-244-119/+133
| | | | | Move functions to where they should be. There should be no real change here.
* egl: Move context functions in egldisplay.[ch] to eglcontext.[ch].Chia-I Wu2010-01-244-118/+132
| | | | | Move functions to where they should be. There should be no real change here.
* mesa/es: Improve Makefile rules.Chia-I Wu2010-01-242-18/+20
| | | | | | | | | | Make sure glapi headers are cleaned when "make clean". Make sure all sources depend on subdirs-stamp-tmp so that sources/headers are generated first. subdirs-stamp-tmp will be removed after a successful build. It might be a problem when a build fails. But it is much better than where we currently are: glapi headers are never cleaned or re-generated.
* r300g: avoid the use of gotoDave Airlie2010-01-241-3/+1
| | | | I was being lazy on Sunday morning, Droste on irc called me on it ;-)
* r300g: fix flushing harder.Dave Airlie2010-01-242-3/+4
| | | | | | I swear ipers runs here after this commit. After we flush we need to redo the space check
* egl: Install drivers to ${libdir}/egl.Chia-I Wu2010-01-236-12/+22
| | | | | Install EGL drivers to EGL_DRIVER_INSTALL_DIR, which is default to ${libdir}/egl.
* st/vega: Clean up Makefile.Chia-I Wu2010-01-231-54/+26
|
* st/es: Pass -linker and -ldflags to mklib.Chia-I Wu2010-01-231-2/+2
|
* r300: fix wrong call in last commitDave Airlie2010-01-231-1/+1
|
* r300g: fix up buffer emission ordering.Dave Airlie2010-01-233-22/+34
| | | | | | | This fixes the code space checking VBOs, then resetting the space list and space checking other buffers. it fixes demos/ipers Signed-off-by: Dave Airlie <[email protected]>
* r300: only enable half floats on r500s.Dave Airlie2010-01-231-1/+2
| | | | Thank to MAD for point it out.
* Merge branch 'arb_half_float_vertex'Dave Airlie2010-01-2314-2228/+2524
|\
| * r300: half float supportDave Airlie2010-01-233-0/+18
| | | | | | | | Signed-off-by: Dave Airlie <[email protected]>
| * i965: add support for ARB_half_float_vertexDave Airlie2010-01-232-0/+12
| | | | | | | | | | | | | | enables the extension on i965 and adds support to the draw upload for the vertex format. Signed-off-by: Dave Airlie <[email protected]>
| * mesa: add core support for ARB_half_float_vertex.Dave Airlie2010-01-234-0/+43
| | | | | | | | | | | | | | | | Adds the extension to the list + support to the APIs. also add t_draw.c support to convert for sw rast. Signed-off-by: Dave Airlie <[email protected]>
| * glapi: add GL_HALF_FLOAT enum support.Dave Airlie2010-01-233-2228/+2235
| | | | | | | | | | | | Regenerate enums files and GLX indirect. Signed-off-by: Dave Airlie <[email protected]>