summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* gallivm: added some vector length sanity checksBrian Paul2010-05-141-0/+2
|
* gallivm: added lp_sizeof_llvm_type()Brian Paul2010-05-142-0/+41
|
* gallivm: comments, const qualifiersBrian Paul2010-05-141-4/+11
|
* tgsi: clean up in emit_fetch()Brian Paul2010-05-141-43/+41
|
* mesa: more info in glUniform error messagesBrian Paul2010-05-141-4/+7
|
* mesa: silence void * / func * conversion warningsBrian Paul2010-05-141-5/+10
|
* tgsi: add a dummy function to silence warningBrian Paul2010-05-141-0/+8
|
* mesa: enum bitfields are a gcc-only feature, use GLubyteBrian Paul2010-05-141-2/+2
|
* egl: Implement EGL_NOK_texture_from_pixmapKristian Høgsberg2010-05-148-29/+61
| | | | | | | This extension allows a color buffer to be used for both rendering and texturing. EGL allows the use of color buffers of pbuffer drawables for texturing, this extension extends this to allow the use of color buffers of pixmaps too.
* egl: Only allow valid config attributes in _eglParseConfigAttribList()Kristian Høgsberg2010-05-141-28/+24
| | | | Passing 0x3030, 0 in the chooser list didn't get caught.
* i965: Add program dumping for INTEL_DEBUG=gs.Eric Anholt2010-05-143-2/+12
|
* i965: Parse the ff_sync URB send opcode on Ironlake disasm.Eric Anholt2010-05-141-1/+15
|
* i965: Use R16G16B16A16_FLOAT for 3-component half-float.Eric Anholt2010-05-141-1/+1
| | | | | | | | | | The RGBX version isn't supported as a vertex input type, but since we force the last channel's value anyway, this should be fine. The only potential risk I see is in the limiter on VBO reads past the end of the buffer forcing the whole vertex to 0 when the A channel lands past the end. Fixes piglit draw-vertices-half-float.
* i965: Dump out the correct shared function for SEND on Ironlake.Eric Anholt2010-05-146-8/+17
|
* i965: Support INTEL_DEBUG=clip to dump the clip program.Eric Anholt2010-05-145-2/+13
|
* intel: Handle arbitrary compressed formats in intel_compressed_num_bytes.Eric Anholt2010-05-141-19/+8
| | | | | | | Note that we don't support arbitrary block size for compressed quite yet -- block height of 4 is hard-coded all over the place. Bug #27098 (srgb dxt1 producing a bytes per pixel of 0).
* gallium: remove forward declarations of non-existent objectsMarek Olšák2010-05-145-5/+0
|
* r300g: do not abort if a constant buffer is too largeMarek Olšák2010-05-141-14/+18
| | | | What else can we do with misbehaving apps?
* r300g: add framebuffer state debug loggingMarek Olšák2010-05-143-1/+35
|
* r300g: sort out debug flagsMarek Olšák2010-05-141-13/+16
|
* egl: remove duplicate ARRAY_SIZE() macro declarationBrian Paul2010-05-141-1/+1
|
* glxinfo: add queries and reporting for float and sRGB buffer typesBrian Paul2010-05-141-26/+71
| | | | | | | | | | | | | Check for the GLX_ARB_fbconfig_float and GLX_NV_float_buffer extensions to determine if color bufs are floating point. Check for the GLX_EXT_framebuffer_sRGB extension to determine if the framebuffer is sRGB capable. Increase field size for some attribs (visual ID and buffer size) to accomodate today's larger values. Also print missing caveats info in verbose mode.
* nouveau/nvfx: Define some capabilities for shadersPatrice Mandin2010-05-141-0/+38
| | | | Signed-off-by: Patrice Mandin <patmandin@gmail.com>
* egl: Silence uninitialized variable warnings.Vinson Lee2010-05-141-1/+1
|
* mesa: print enum name instead of hexadecimal value in glGet errorsBrian Paul2010-05-141-4/+9
|
* mesa: another transform feedback error check, 80-col wrappingBrian Paul2010-05-141-3/+9
|
* mesa: fpclassify dummy definition is not needed on FreeBSD.Alex Kozlov2010-05-141-1/+1
|
* 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.