summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-10-16mesa: lift default symlinks target into Makefile.templateBrian Paul
Driver Makefiles can still add symlink dependencies/rules if needed.
2009-10-16mesa: use EXTRA_MODULES and SUBDIRS to build r300 compilerBrian Paul
This is a bit cleaner and avoids rebuilding the r300_dri.so library all the time.
2009-10-16mesa: added SUBDIRS support in dri/Makefile.templateBrian Paul
2009-10-16mesa: move a commaBrian Paul
2009-10-16mesa: added MESA_GLSL=useprog debug flagBrian Paul
This logs glUseProgram() calls to stderr.
2009-10-16r300g: Use a hash table to look up vertex info.Corbin Simpson
Need to move rs_block to this, too. Also, I'm getting massive amounts of flicker for some reason; I bet we've gotta re-re-examine PSC and friends. :C
2009-10-16util: Change function names to begin with u_.Corbin Simpson
Avoids link-time clashes with Mesa's internal hash table.
2009-10-16progs/tests: Use rand() instead of random().José Fonseca
Forgot these on previous commit.
2009-10-16progs/tests: Use rand() instead of random().José Fonseca
More portable. Same implementation on Linux.
2009-10-16prog/tests: Fix MSVC build.Vinson Lee
2009-10-15r300g: Set logical ID for each emitted texture/sampler.Corbin Simpson
multitexarray works on my r300, but texrect doesn't.
2009-10-15nouveau: nv30: Hack to enforce same number of bits as front buffer, for ↵Patrice Mandin
render targets
2009-10-15nouveau: nv30: refuse binding a colour buffer with a zeta buffer with ↵Patrice Mandin
different bits, till the backend can tell Mesa not to do that.
2009-10-15st/xorg: refix source overZack Rusin
2009-10-15progs/egl: put declarations before codeBrian Paul
2009-10-15egl: Rework the synchronization primitives.Chia-I Wu
This adds error checking to the synchronization primitives. And eglWaitGL is now implemented by eglWaitClient. Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
2009-10-15egl: Rework eglSwapInterval.Chia-I Wu
This adds error checking to eglSwapInterval and clamps the swap interval. Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
2009-10-15egl: Rework error checking in eglSwapBuffers.Chia-I Wu
Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
2009-10-15egl: Update comments about eglapi.c.Chia-I Wu
Mention that opaque handles are looked up and checked. Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
2009-10-15egl: Rework error checking in eglGetCurrentSurface.Chia-I Wu
Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
2009-10-15egl: Include GL header in eglconfigutil.h.Chia-I Wu
This is just a cosmetic change. Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
2009-10-15egl: Fix GLX_USE_TLS build.Chia-I Wu
Remove an extraneous semicolon. Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
2009-10-15egl: Fix eglCheckConfigHandle.Chia-I Wu
A stupid bug by me made the check void. Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
2009-10-14trace: Handle transfer returning nullJakob Bornecrantz
2009-10-15st/xorg: fix most of the composition modesZack Rusin
2009-10-14r300g: Move ZTOP to its own state atom.Corbin Simpson
It may seem pointless, but this avoids a fair amount of predicted CSO pain.
2009-10-14progs/demos: try different depth formats in fbo_firecube.cBrian Paul
2009-10-14docs: document more MESA_GLSL env var optionsBrian Paul
2009-10-14mesa: assorted top-level Makefile clean-upsBrian Paul
2009-10-14mesa: added VERBOSE_SWAPBUFFERSBrian Paul
2009-10-14vbo: clean-ups, reformattingBrian Paul
2009-10-14mesa: added MESA_VERBOSE option 'draw' to debug glDrawArrays/Elements, etc.Brian Paul
2009-10-14mesa: rename VERBOSE_IMMEDIATE->VERBOSE_MATERIAL to reflect what it doesBrian Paul
2009-10-14mesa: remove unused ctx->Driver.PrioritizeTextures() hookBrian Paul
2009-10-14mesa: remove unused ctx->Driver.TextureMatrix() hookBrian Paul
2009-10-13st/xorg: Fix dpms include problemsJakob Bornecrantz
2009-10-15autoconf: Fix case for not having packageJakob Bornecrantz
2009-10-14st/xorg: get transparency on fills working (fixes Qt/KDE apps)Zack Rusin
2009-10-14i915g: Fix warningsJakob Bornecrantz
2009-10-14r600: enable EXT_vertex_array_bgra extensionsAlex Deucher
2009-10-14util: Fix cpu detection on Windows. Cleanup.José Fonseca
2009-10-14llvmpipe: Use ALIGN_STACK.José Fonseca
2009-10-14gallium: New ALIGN_STACK macro to tell gcc to align stack pointer.José Fonseca
2009-10-14scons: Disable SSE intrinsics on MinGW.José Fonseca
-mstackrealign causes stack corruption on MinGW. And without it the ability to use SSE instrinsics goes down the drain. Even if we use __attribute__((force_align_arg_pointer)) for the functions we explicitly use SSE instrinsics, the SSE code automatically generated by gcc will cause assertion failures. What a nightmare. Thankfully LLVM gets this right, so all runtime generated SSE code just works. rtasm code doesn't assume 16byte alignment. Therefore the bulk of our performance sensitive code is not affected by this. Still, intrinsics can be convenient, and it would be nice to get this working again some day, sp will try to get a reduced test case.
2009-10-14Merge branch 'mesa_7_6_branch'Brian Paul
2009-10-14progs/Makefile: remove extra quotingBrian Paul
This reverts part of commit 115edf24a9128b79dfa5f30482c990e2cb898357 and fixes the error: "/bin/sh: line 0: test: too many arguments".
2009-10-14Merge branch 'mesa_7_6_branch'Brian Paul
2009-10-14mesa: remove left-over debug printfBrian Paul
2009-10-14prog/tests: Fix MSVC build.Vinson Lee
2009-10-14r300g: Move ztop to derived state.Corbin Simpson
Need to get it into its own atom instead of piggybacking on DSA.