Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-02-10 | r300g: Fix typo. | Corbin Simpson | |
Thanks to Uros Bizjak for catching it. | |||
2010-02-10 | r300/compiler: r500-fs: Properly set HW register swizzles. | Corbin Simpson | |
Fixes fallout from 9a1bf52c. | |||
2010-02-10 | scons: Only build progs when explicitly requested in the command line. | José Fonseca | |
2010-02-10 | llvmpipe: Map rendertargets when bound as textures. | José Fonseca | |
Fixes gearbox segfault (fdo 25960). Corruption remains. | |||
2010-02-10 | dri: Fix copy-and-paste brain damage in previous commit | Ian Romanick | |
A number of places in 3cce4a1e10361458630511543b7a8a6438544775 use TRUE instead of GL_TRUE. This causes build failures in all of the drivers that I don't typically build. Win. Reported by sungami on IRC. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> | |||
2010-02-10 | intel: Don't expose GLX_SWAP_EXCHANGE_OML | Ian Romanick | |
We can't always guarantee that the swap will happen by exchange, so we can't expose this mode. GLX_SWAP_UNDEFINED_OML already covers the case where the swap *might be* by exchange. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Kristian Høgsberg <krh@bitplanet.net> | |||
2010-02-10 | intel: Expose a minimal number of configs with accumulation buffer | Ian Romanick | |
Expose one config per color depth that includes accumulation buffer. We could probably expose only one config with accumulation buffer, but that would require figuring out the actual color depth. This is easier and only exposes 2 useless configs. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Kristian Høgsberg <krh@bitplanet.net> | |||
2010-02-10 | dri: Allow selective generation of accum. buffer configs | Ian Romanick | |
Modify the interface to driCreateConfigs allowing drivers to not expose configs with an accumuation buffer. All of the drivers calling function have been updated to pass true for the accumulation selector. This maintains the current behavior. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Kristian Høgsberg <krh@bitplanet.net> Reviewed-by: Corbin Simpson <MostAwesomeDude@gmail.com> | |||
2010-02-10 | intel: Stop exposing useless 24 depth/0 stencil configs | Ian Romanick | |
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Kristian Høgsberg <krh@bitplanet.net> | |||
2010-02-10 | intel: Remove redundant init of depth_bits / stencil_bits in intelInitScreen2 | Ian Romanick | |
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Kristian Høgsberg <krh@bitplanet.net> | |||
2010-02-10 | intel: Update comment in intelInitScreen2 to noting DRI2 protocol issues | Ian Romanick | |
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Kristian Høgsberg <krh@bitplanet.net> | |||
2010-02-10 | Merge branch 'master' of git+ssh://git.freedesktop.org/git/mesa/mesa | unknown | |
2010-02-10 | glsl/pp: fix extension enable/disable options | Brian Paul | |
Now the #extension name: disable/enable flags do the right thing. Fixes glean/glsl1 "Preprocessor test (extension test 3)" | |||
2010-02-10 | Add new symbol to exports list | unknown | |
2010-02-10 | Simplify GLSL extension mechanism. | Michal Krol | |
Since extension name and extension name string are the same, collapse them into one name. | |||
2010-02-10 | glsl/pp: Fix ifdef directive for extension names. | Michal Krol | |
2010-02-10 | glsl: GLSL extensions have the GL_ prefix | Brian Paul | |
Both the #extension directive name and the preprocessor symbol start with the GL_ prefix. For example: ... New glean/glsl1 tests have been added to test the #extension feature. | |||
2010-02-10 | st/xorg: fix a silly offset bug in xv | Zack Rusin | |
we were multiplying the difference in the wrong direction. | |||
2010-02-10 | r600: Fix typo in __DRI_TEXTURE_FORMAT_RGBA rename | Kristian Høgsberg | |
Oops, I n00bed it. | |||
2010-02-10 | llvmpipe: Fix null pointer dereference when no depth buffer is bound. | José Fonseca | |
2010-02-10 | llvmpipe: Leave depth buffer in swizzled format. | José Fonseca | |
This fixes several assertion failures due to only Z32 being supported. | |||
2010-02-10 | glu/sgi: Initialize member of class Uarray. | Vinson Lee | |
2010-02-10 | llvmpipe: Remove unnecessary headers. | Vinson Lee | |
2010-02-10 | scons: export drawllvm after actually checking that llvm is present | Zack Rusin | |
2010-02-09 | egl_dri2: Only allocate config if we're going to keep it | Kristian Høgsberg | |
Small optimization. | |||
2010-02-09 | egl_dri2: Initialize config attributes with visual id and class from X | Kristian Høgsberg | |
2010-02-09 | eglinfo: Also print visual type, assuming X visual types | Kristian Høgsberg | |
This may not make a lot of sense for non-X EGL, but for EGL under X it's very useful. | |||
2010-02-09 | egl_dri2: Allow pbuffer and pixmap surfaces for all configs | Kristian Høgsberg | |
2010-02-10 | radeon: Fix printf formatings to match te values. | Pauli Nieminen | |
2010-02-10 | radeon: Define EXT_framebuffer_object constants to match hw. | Pauli Nieminen | |
This hides the assertion failure in glean/fbo test. Underlying problem when same texture is set twice to different attachments will cause assertion. | |||
2010-02-09 | mesa: move all limit/constant assertions into check_context_limits() | Brian Paul | |
2010-02-10 | Drop incorrectly revived files during the 'gallium-nopointsizeminmax' merge. | Francisco Jerez | |
2010-02-09 | r300g: One less assert. | Corbin Simpson | |
This entire codepath needs to be cleaned to be more pliant towards shader failure. | |||
2010-02-09 | r300g: Don't write non-existent bit on non-r500. | Corbin Simpson | |
Might help with compiz being funky with MRTs. | |||
2010-02-09 | r300g: Correct colorbuffer measurements. | Corbin Simpson | |
Also clarify changes from pointminmax. | |||
2010-02-09 | r300g: Be ever-so-slightly more useful on bad shaders. | Corbin Simpson | |
2010-02-09 | configure.ac: Enable egl demos when --enable-egl is passed | Kristian Høgsberg | |
2010-02-09 | xeglgears: Add test case for eglBindTexImage() | Kristian Høgsberg | |
2010-02-09 | egl_dri2: Implement eglBindTexImage() | Kristian Høgsberg | |
2010-02-09 | dri_interface: Introduce DRI tokens for the texBuffer texture formats | Kristian Høgsberg | |
This used to take GLX tokens, but the DRI interface can't depend on GLX defines. We fix this by introducing DRI tokens that have the same value as the GLX texture format tokens. | |||
2010-02-09 | egl_dri2: Use a helper function for looking up and binding extensions | Kristian Høgsberg | |
2010-02-09 | gallium/auxiliary: add -D__STDC_CONSTANT_MACROS | Brian Paul | |
Not sure why this is needed now, after the gallivm re-org. | |||
2010-02-09 | llvmpipe: remove .s rule (already in Makefile.template) | Brian Paul | |
2010-02-09 | llvmpipe: lp_tile_surface.c isn't committed yet | Brian Paul | |
2010-02-09 | radeon: Add some debug output for fbo support | Pauli Nieminen | |
2010-02-09 | r200: Fix UMS notto emit stp. | Pauli Nieminen | |
Polgon stipples are handled by kernel in UMS. Mark the state as never to be emited for UMS. | |||
2010-02-09 | Merge branch 'gallium-nopointsizeminmax' | Roland Scheidegger | |
Conflicts: src/gallium/drivers/nv10/nv10_state.c src/gallium/drivers/nv20/nv20_state.c src/gallium/drivers/nv50/nv50_program.c | |||
2010-02-09 | docs: fix typo: s/osdemo/osdemos/ | Brian Paul | |
(cherry picked from commit 0371956d66cdc8a1629753fca9cb3cdc49b0d145) | |||
2010-02-09 | gallium: Adding the %.s rule to generate asm code | Chris Li | |
Signed-off-by: José Fonseca <jfonseca@vmware.com> | |||
2010-02-09 | gallium: Using the proper pattern rules for Makefile template. | Chris Li | |
The .o.c rule is consider obsolete. Signed-off-by: José Fonseca <jfonseca@vmware.com> |