summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* graw: add quad-tex graw test for basic texturinggraw-testsKeith Whitwell2010-05-142-1/+406
|
* graw: combine graw_init and graw_create_window functionsKeith Whitwell2010-05-143-42/+51
| | | | | Different environments seem to want to create these in different orders. Abstract over this by combining the calls.
* graw: split util code into new fileKeith Whitwell2010-05-143-31/+37
|
* graw: move towards glut-like interface, add tri.cKeith Whitwell2010-05-144-27/+103
|
* scons: add 'targets' variable, for specifying ... targetsKeith Whitwell2010-05-142-6/+37
| | | | | | Ideally scons should be able to work backwards from the list of targets to figure out which drivers, state trackers and other convenience libraries need to be built.
* util: fix copy_rect stride in default transfer_inline_writeKeith Whitwell2010-05-141-2/+2
|
* egl: Implement EGL_NOK_swap_regionKristian Høgsberg2010-05-136-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.
* r300g: fix for piglit/fp-indirections2Marek Olšák2010-05-141-1/+1
|
* rtasm: fix void * / func * casting warningsBrian Paul2010-05-132-4/+24
|
* draw: silence casting warningsBrian Paul2010-05-131-5/+38
|
* gallivm: silence uninitialized var warningBrian Paul2010-05-131-1/+1
|
* llvmpipe: silence casting warningsBrian Paul2010-05-133-15/+32
|
* gallivm: silence casting warningBrian Paul2010-05-131-1/+17
|
* gallivm: silence uninitialized var warningBrian Paul2010-05-131-1/+1
|
* llvmpipe: silence uninitialized var warningsBrian Paul2010-05-131-1/+2
|
* llvmpipe: silence cast warnings in test programsBrian Paul2010-05-134-6/+63
|
* gallivm: added lp_dump_llvmtype() debug helperBrian Paul2010-05-132-0/+40
|
* llvmpipe: additional commentsBrian Paul2010-05-131-3/+5
|
* gallivm: rename a varBrian Paul2010-05-131-3/+4
|
* egl: Allow a prioritized list of default driversKristian Høgsberg2010-05-136-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.
* egl_dri2: Downgrade initialization errors to warningsKristian Høgsberg2010-05-131-4/+4
| | | | Don't want to shutdown everything if egl_dri2 fails to initialize.
* util: Fix ptr -> int conversion.José Fonseca2010-05-131-1/+1
|
* Conditionally revert "gallivm: Use a more compact approach for ↵José Fonseca2010-05-131-0/+10
| | | | | | lp_build_broadcast_scalar()." This reverts commit a09e46c72461183c879d8472b44fe740ecc79b9f.
* i965: Reduce a single GL_QUADS to GL_TRIANGLE_FAN.Eric Anholt2010-05-131-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.
* intel: Don't update window system renderbuffers on TexImage.Eric Anholt2010-05-132-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.
* mesa: Remove no-op wrappers around trig functions.Eric Anholt2010-05-135-57/+7
|
* mesa: Remove _mesa_pow(), which is always just pow().Eric Anholt2010-05-139-26/+14
|
* r300g: fix texture transfersMarek Olšák2010-05-133-2/+8
| | | | | | | The regression has first shown up after this state tracker change: b0427bedde80e3189524651a327235bdfddbc613. FDO bug #28082.
* mesa: silence compiler warningAlan Hourihane2010-05-131-1/+3
|
* llvmpipe: Update instructions for MSVC builds.José Fonseca2010-05-131-1/+9
|
* egl: Drop broken _EGL_PLATFORM_NO_OS codeKristian Høgsberg2010-05-131-32/+0
| | | | | It would do strlen(library_suffix()) in _eglLoaderFile(), with library_suffix() returning NULL. So obviuosly not used or tested.
* egl: Don't try to load driver basename if the platform needs a suffixKristian Høgsberg2010-05-131-3/+5
| | | | That is, don't dlopen(egl_glx) when we know we need to append .so.
* trace: Add missing header.Vinson Lee2010-05-131-0/+1
| | | | Fixes GCC implicit function declaration warning.
* st/mesa: Remove unnecessary header.Vinson Lee2010-05-131-1/+0
|
* gallium: Add tokens for Cygwin.Vinson Lee2010-05-133-6/+11
|
* trace: Remove unnecessary headers.Vinson Lee2010-05-132-2/+0
|
* r300g: re-order capsMarek Olšák2010-05-131-40/+28
|
* r300g: fill out the shader limitsMarek Olšák2010-05-131-2/+56
|
* trace: Update READMEJakob Bornecrantz2010-05-121-25/+12
|
* rbug: Update and add READMEsJakob Bornecrantz2010-05-123-3/+64
|
* scons: Add -fvisibility=hidden to CFLAGS for gcc buildsJakob Bornecrantz2010-05-121-1/+2
|
* graw: Make functions publicJakob Bornecrantz2010-05-121-7/+7
|
* rbug: No need to have rbug as a inputJakob Bornecrantz2010-05-121-3/+3
|
* gallivm: Ensure PIPE_OS_xxx are defined.José Fonseca2010-05-121-0/+1
|
* gallivm: Use a more compact approach for lp_build_broadcast_scalar().José Fonseca2010-05-121-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.
* llvmpipe: Dump fs key's stencil state.José Fonseca2010-05-121-0/+10
|
* util: Add function to dump PIPE_STENCIL_OP_xxxJosé Fonseca2010-05-122-0/+30
|
* llvmpipe: Enable mem2reg pass even with LP_DEBUG=nopt.José Fonseca2010-05-121-0/+5
| | | | Otherwise things start crashing.
* rbug: Add to all targets that link against traceJakob Bornecrantz2010-05-1231-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.
* trace: Remove rbug from traceJakob Bornecrantz2010-05-1210-1277/+5
|