Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-05-14 | i965: Dump out the correct shared function for SEND on Ironlake. | Eric Anholt | |
2010-05-14 | i965: Support INTEL_DEBUG=clip to dump the clip program. | Eric Anholt | |
2010-05-14 | intel: Handle arbitrary compressed formats in intel_compressed_num_bytes. | Eric Anholt | |
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). | |||
2010-05-14 | gallium: remove forward declarations of non-existent objects | Marek Olšák | |
2010-05-14 | r300g: do not abort if a constant buffer is too large | Marek Olšák | |
What else can we do with misbehaving apps? | |||
2010-05-14 | r300g: add framebuffer state debug logging | Marek Olšák | |
2010-05-14 | r300g: sort out debug flags | Marek Olšák | |
2010-05-14 | egl: remove duplicate ARRAY_SIZE() macro declaration | Brian Paul | |
2010-05-14 | glxinfo: add queries and reporting for float and sRGB buffer types | Brian Paul | |
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. | |||
2010-05-14 | nouveau/nvfx: Define some capabilities for shaders | Patrice Mandin | |
Signed-off-by: Patrice Mandin <patmandin@gmail.com> | |||
2010-05-14 | egl: Silence uninitialized variable warnings. | Vinson Lee | |
2010-05-14 | mesa: print enum name instead of hexadecimal value in glGet errors | Brian Paul | |
2010-05-14 | mesa: another transform feedback error check, 80-col wrapping | Brian Paul | |
2010-05-14 | mesa: fpclassify dummy definition is not needed on FreeBSD. | Alex Kozlov | |
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 | |
2010-05-13 | Conditionally revert "gallivm: Use a more compact approach for ↵ | José Fonseca | |
lp_build_broadcast_scalar()." This reverts commit a09e46c72461183c879d8472b44fe740ecc79b9f. | |||
2010-05-13 | i965: Reduce a single GL_QUADS to GL_TRIANGLE_FAN. | Eric Anholt | |
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-13 | intel: Don't update window system renderbuffers on TexImage. | Eric Anholt | |
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-13 | mesa: Remove no-op wrappers around trig functions. | Eric Anholt | |
2010-05-13 | mesa: Remove _mesa_pow(), which is always just pow(). | Eric Anholt | |
2010-05-13 | r300g: fix texture transfers | Marek Olšák | |
The regression has first shown up after this state tracker change: b0427bedde80e3189524651a327235bdfddbc613. FDO bug #28082. | |||
2010-05-13 | mesa: silence compiler warning | Alan Hourihane | |
2010-05-13 | llvmpipe: Update instructions for MSVC builds. | José Fonseca | |
2010-05-13 | egl: Drop broken _EGL_PLATFORM_NO_OS code | Kristian Høgsberg | |
It would do strlen(library_suffix()) in _eglLoaderFile(), with library_suffix() returning NULL. So obviuosly not used or tested. | |||
2010-05-13 | egl: Don't try to load driver basename if the platform needs a suffix | Kristian Høgsberg | |
That is, don't dlopen(egl_glx) when we know we need to append .so. | |||
2010-05-13 | trace: Add missing header. | Vinson Lee | |
Fixes GCC implicit function declaration warning. | |||
2010-05-13 | st/mesa: Remove unnecessary header. | Vinson Lee | |
2010-05-13 | gallium: Add tokens for Cygwin. | Vinson Lee | |
2010-05-13 | trace: Remove unnecessary headers. | Vinson Lee | |
2010-05-13 | r300g: re-order caps | Marek Olšák | |
2010-05-13 | r300g: fill out the shader limits | Marek Olšák | |
2010-05-12 | trace: Update README | Jakob Bornecrantz | |
2010-05-12 | rbug: Update and add READMEs | Jakob Bornecrantz | |
2010-05-12 | scons: Add -fvisibility=hidden to CFLAGS for gcc builds | Jakob Bornecrantz | |