summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-05-17llvmpipe: fix front/back tri culling mix-upgallium-front-ccwBrian Paul1-2/+2
2010-05-14draw: fix front/back error in unfilled pipeline stageKeith Whitwell1-3/+4
2010-05-14draw: fix typo checking for unfilled polygonsKeith Whitwell1-1/+1
2010-05-14softpipe: restore culling codeKeith Whitwell1-3/+21
2010-05-14gallium: more work on ccw flag removalKeith Whitwell11-74/+79
The linux-debug target builds...
2010-05-14gallium: convert rasterizer state to use gl-style front/back conceptsKeith Whitwell28-293/+234
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-14util: fix copy_rect stride in default transfer_inline_writeKeith Whitwell1-2/+2
2010-05-13egl: Implement EGL_NOK_swap_regionKristian Høgsberg6-2/+98
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-14r300g: fix for piglit/fp-indirections2Marek Olšák1-1/+1
2010-05-13rtasm: fix void * / func * casting warningsBrian Paul2-4/+24
2010-05-13draw: silence casting warningsBrian Paul1-5/+38
2010-05-13gallivm: silence uninitialized var warningBrian Paul1-1/+1
2010-05-13llvmpipe: silence casting warningsBrian Paul3-15/+32
2010-05-13gallivm: silence casting warningBrian Paul1-1/+17
2010-05-13gallivm: silence uninitialized var warningBrian Paul1-1/+1
2010-05-13llvmpipe: silence uninitialized var warningsBrian Paul1-1/+2
2010-05-13llvmpipe: silence cast warnings in test programsBrian Paul4-6/+63
2010-05-13gallivm: added lp_dump_llvmtype() debug helperBrian Paul2-0/+40
2010-05-13llvmpipe: additional commentsBrian Paul1-3/+5
2010-05-13gallivm: rename a varBrian Paul1-3/+4
2010-05-13egl: Allow a prioritized list of default driversKristian Høgsberg6-26/+45
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-13egl_dri2: Downgrade initialization errors to warningsKristian Høgsberg1-4/+4
Don't want to shutdown everything if egl_dri2 fails to initialize.
2010-05-13util: Fix ptr -> int conversion.José Fonseca1-1/+1
2010-05-13Conditionally revert "gallivm: Use a more compact approach for ↵José Fonseca1-0/+10
lp_build_broadcast_scalar()." This reverts commit a09e46c72461183c879d8472b44fe740ecc79b9f.
2010-05-13i965: Reduce a single GL_QUADS to GL_TRIANGLE_FAN.Eric Anholt1-11/+20
This is similar to the GL_QUAD_STRIP -> TRIANGLE_STRIP optimization -- the GS usage to split the quads into tris is a huge bottleneck, so a quick check improves glean blendFunc time massively (width * height of the window of single-pixel GL_QUADS, many many times). This may also end up helping with cairo performance, which sometimes ends up drawing a single quad.
2010-05-13intel: Don't update window system renderbuffers on TexImage.Eric Anholt2-3/+5
While sometimes rendering occurs in the form of blits for TexImage, it doesn't interact with the window system renderbuffers, so skip it.
2010-05-13mesa: Remove no-op wrappers around trig functions.Eric Anholt5-57/+7
2010-05-13mesa: Remove _mesa_pow(), which is always just pow().Eric Anholt9-26/+14
2010-05-13r300g: fix texture transfersMarek Olšák3-2/+8
The regression has first shown up after this state tracker change: b0427bedde80e3189524651a327235bdfddbc613. FDO bug #28082.
2010-05-13mesa: silence compiler warningAlan Hourihane1-1/+3
2010-05-13llvmpipe: Update instructions for MSVC builds.José Fonseca1-1/+9
2010-05-13egl: Drop broken _EGL_PLATFORM_NO_OS codeKristian Høgsberg1-32/+0
It would do strlen(library_suffix()) in _eglLoaderFile(), with library_suffix() returning NULL. So obviuosly not used or tested.
2010-05-13egl: Don't try to load driver basename if the platform needs a suffixKristian Høgsberg1-3/+5
That is, don't dlopen(egl_glx) when we know we need to append .so.
2010-05-13trace: Add missing header.Vinson Lee1-0/+1
Fixes GCC implicit function declaration warning.
2010-05-13st/mesa: Remove unnecessary header.Vinson Lee1-1/+0
2010-05-13gallium: Add tokens for Cygwin.Vinson Lee3-6/+11
2010-05-13trace: Remove unnecessary headers.Vinson Lee2-2/+0
2010-05-13r300g: re-order capsMarek Olšák1-40/+28
2010-05-13r300g: fill out the shader limitsMarek Olšák1-2/+56
2010-05-12trace: Update READMEJakob Bornecrantz1-25/+12
2010-05-12rbug: Update and add READMEsJakob Bornecrantz3-3/+64
2010-05-12scons: Add -fvisibility=hidden to CFLAGS for gcc buildsJakob Bornecrantz1-1/+2
2010-05-12graw: Make functions publicJakob Bornecrantz1-7/+7
2010-05-12rbug: No need to have rbug as a inputJakob Bornecrantz1-3/+3
2010-05-12gallivm: Ensure PIPE_OS_xxx are defined.José Fonseca1-0/+1
2010-05-12gallivm: Use a more compact approach for lp_build_broadcast_scalar().José Fonseca1-8/+10
It produces exactly the same machine code, but it cuts 5% of the number of instructions generated for a typical shader. Also, preserve the scalar when length is 1.
2010-05-12llvmpipe: Dump fs key's stencil state.José Fonseca1-0/+10
2010-05-12util: Add function to dump PIPE_STENCIL_OP_xxxJosé Fonseca2-0/+30
2010-05-12llvmpipe: Enable mem2reg pass even with LP_DEBUG=nopt.José Fonseca1-0/+5
Otherwise things start crashing.
2010-05-12rbug: Add to all targets that link against traceJakob Bornecrantz31-8/+47
Also added calls to the create function in target helpers and in tr_drm.c the latter being a hack and should be replaced with the wrap screen target helper. But at least this way we don't regress.