Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-05-21 | Add __DragonFly__ in querymatrix for fpclassify() | David Shao | |
Signed-off-by: Brian Paul <brianp@vmware.com> | |||
2010-05-21 | progs/tests: print more info in copypixrate.c | Brian Paul | |
2010-05-21 | docs: update 7.8.2 relnotes with Cell driver fixes | Brian Paul | |
2010-05-21 | cell: assorted compilation fixes | Brian Paul | |
2010-05-21 | cell: fix breakage from earlier draw module changes | Brian Paul | |
2010-05-21 | gallium: remnants of old ccw state | Keith Whitwell | |
2010-05-21 | Merge branch 'gallium-front-ccw' | Keith Whitwell | |
2010-05-21 | docs: update rasterizer for ccw changes | Keith Whitwell | |
Also rearrange some of the fields into point/line/polygon categories. | |||
2010-05-20 | scons: Remove debug print statement. | Vinson Lee | |
Fixes Python IndexError exception with default SCons build. | |||
2010-05-20 | Make TLS EGL dri2 driver search path behavior match TLS GLX dri2 behavior. | Eric Anholt | |
2010-05-20 | Fix a substitution in glesv1_cm.pc | Eric Anholt | |
2010-05-20 | i965: remove disabled code for cycling through MRF registers in clipping. | Eric Anholt | |
The idea would be that you could have multiple send messages going on if nothing depended on the previous message's results and you used a different send message. The problem is that the later send requires the VUE handle returned by the first send's allocate anyway. | |||
2010-05-20 | nv50: fixed other void pointer arithmetic errors | Xavier Chantry | |
2010-05-20 | nv50: fix too long shader uploads by splitting them | Xavier Chantry | |
2010-05-20 | nv50: fill in shader limits | Christoph Bumiller | |
2010-05-20 | scons: add comments and whitespace | Brian Paul | |
2010-05-20 | scons: fix llvm detection | Brian Paul | |
The test for env['platform'] caused an exception since 'env' is not defined at that point. Instead, determine the target platform by scanning sys.argv[]. | |||
2010-05-20 | gallivm: rename a var: s/val/array_size/ | Brian Paul | |
2010-05-20 | gallivm: fix spelling in comment | Brian Paul | |
2010-05-20 | gallivm: handle pointer types in lp_dump_llvmtype() | Brian Paul | |
2010-05-20 | llvmpipe: more tweaks to dump_fs_variant_key() | Brian Paul | |
2010-05-20 | gallium: fix/update tex target dumping | Brian Paul | |
2010-05-20 | llvmpipe: use util_dump_logicop() | Brian Paul | |
2010-05-20 | gallium: added util_dump_logicop() | Brian Paul | |
2010-05-20 | llvmpipe: put variant print/debug code into separate function | Brian Paul | |
2010-05-20 | intel: Throttle after doing copyregion/swapbuffers round trip | Kristian Høgsberg | |
Before we would throttle in the flush callback prior to round-tripping to the server to do copyregion or swapbuffer. Now, instead just note that we need to throttle and do it in intel_prepare_render(), which will be called after receiving the response from the server but before we start rendering the next frame. Even if the server also throttles us in swapbuffer, this just makes the throttling a no-op when we hit intel_prepare_render(). With that we can drop the using_dri2_swapbuffers hack and just always throttle. | |||
2010-05-20 | graw-null: Remove unnecessary header. | Vinson Lee | |
2010-05-17 | llvmpipe: fix front/back tri culling mix-up | Brian Paul | |
2010-05-14 | draw: fix front/back error in unfilled pipeline stage | Keith Whitwell | |
2010-05-14 | draw: fix typo checking for unfilled polygons | Keith Whitwell | |
2010-05-14 | softpipe: restore culling code | Keith Whitwell | |
2010-05-14 | gallium: more work on ccw flag removal | Keith Whitwell | |
The linux-debug target builds... | |||
2010-05-14 | gallium: convert rasterizer state to use gl-style front/back concepts | Keith Whitwell | |
Use front/back instead of cw/ccw throughout. Also, use offset_point/line/fill instead of offset_cw/ccw. Brings gallium representation of this state into line with its main user, and also what turns out to be the most common hardware representation. This fixes a long-standing bias in the interface towards the architecture of the software rasterizer. | |||
2010-05-14 | util: fix copy_rect stride in default transfer_inline_write | Keith Whitwell | |
2010-05-13 | egl: Implement EGL_NOK_swap_region | Kristian Høgsberg | |
This extension adds a new function which provides an alternative to eglSwapBuffers. eglSwapBuffersRegionNOK accepts two new parameters in addition to those in eglSwapBuffers. The new parameters consist of a pointer to a list of 4-integer blocks defining rectangles (x, y, width, height) and an integer specifying the number of rectangles in the list. | |||
2010-05-14 | r300g: fix for piglit/fp-indirections2 | Marek Olšák | |
2010-05-13 | rtasm: fix void * / func * casting warnings | Brian Paul | |
2010-05-13 | draw: silence casting warnings | Brian Paul | |
2010-05-13 | gallivm: silence uninitialized var warning | Brian Paul | |
2010-05-13 | llvmpipe: silence casting warnings | Brian Paul | |
2010-05-13 | gallivm: silence casting warning | Brian Paul | |
2010-05-13 | gallivm: silence uninitialized var warning | Brian Paul | |
2010-05-13 | llvmpipe: silence uninitialized var warnings | Brian Paul | |
2010-05-13 | llvmpipe: silence cast warnings in test programs | Brian Paul | |
2010-05-13 | gallivm: added lp_dump_llvmtype() debug helper | Brian Paul | |
2010-05-13 | llvmpipe: additional comments | Brian Paul | |
2010-05-13 | gallivm: rename a var | Brian Paul | |
2010-05-13 | egl: Allow a prioritized list of default drivers | Kristian Høgsberg | |
When there is no user driver or any matching display drivers we fall back to the default driver. This patch lets us have a list of default drivers instead of just one. The drivers are loaded in turn and we attempt to initialize the display. If it fails we unload the driver and move on to the next one. Compared to the display driver mechanism, this avoids loading a number of drivers and then only using one. Also, we call Initialize to see if the driver will work instead of relying on Probe. To know for sure that a driver will work, Probe really have to do a full Initialize, so we will just use Initialize directly. | |||
2010-05-13 | egl_dri2: Downgrade initialization errors to warnings | Kristian Høgsberg | |
Don't want to shutdown everything if egl_dri2 fails to initialize. | |||
2010-05-13 | util: Fix ptr -> int conversion. | José Fonseca | |