summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-02-27radeon: Assert pointer is not null before dereferencing.Vinson Lee
Add back an assert that was removed in commit cd5f167353f16fb4f5b349002625b704f3e23778.
2010-02-27dri: Assert pointer is not null before dereferencing.Vinson Lee
2010-02-27st/dri: Assert pointer is not null before dereferencing.Vinson Lee
2010-02-27r600: Assert pointer is not null before dereferencing.Vinson Lee
2010-02-27glsl: Assert input to strcmp is not null.Vinson Lee
2010-02-27glsl: Assert pointer is not null before dereferencing.Vinson Lee
2010-02-26mesa: Remove unnecessary header.Vinson Lee
2010-02-27st/xorg: Re-enable crtc on resizeJakob Bornecrantz
2010-02-27st/xorg: Fix copy-topyJakob Bornecrantz
2010-02-27vmware/xorg: Bump to match vmware driverJakob Bornecrantz
2010-02-27st/xorg: Make resize fail gracefullyJakob Bornecrantz
2010-02-27st/xorg: Obey max {width|height} from kernel and GalliumJakob Bornecrantz
2010-02-27st/xorg: Encapsulate all customizable stuff in a separate class.Thomas Hellstrom
This avoids exposing the ms driver structure to the winsys, and nicely encapsulates driver customizable stuff. In the future more things might be customizable by the winsys, like throttling, 3D readback etc. Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com>
2010-02-27vmware/xorg: Export modinfo just as the other vmware X drivers doesJakob Bornecrantz
2010-02-27st/xorg: A bit more debugging infoJakob Bornecrantz
2010-02-27st/xorg: Make default of debugging fallbacks smartJakob Bornecrantz
Set it to the same as 2d acceleration
2010-02-27drm/vmware: Latest interface changes are backwards incopatibleJakob Bornecrantz
Since the execbuffer change actually changed size off the ioctl struct and not just a reuse of padded bits, we can't support old kernels as easily as the scanout change was.
2010-02-27st/xorg, vmware/xorg: Fix xnfcalloc arguments.Thomas Hellstrom
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com>
2010-02-27vmware: Update vmwgfx_drm.h to kernel version.Thomas Hellstrom
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com>
2010-02-26r600: enable OQ on rv740 on drms with working pipe configAlex Deucher
2010-02-26r600: fail to validate unsupported texture formatsKlaus Schnass
2010-02-26nv40: fix include of nv04_surface_2d.hChristoph Bumiller
2010-02-26eglinfo: Wrap extension stringKristian Høgsberg
2010-02-26xeglgears: Add an case that exercises EGL_KHR_gl_renderbuffer_imageKristian Høgsberg
2010-02-26egl_dri2: Implement EGL_KHR_gl_renderbuffer_imageKristian Høgsberg
2010-02-26intel: Lookup requested renderbuffer in intel_create_image_from_renderbufferKristian Høgsberg
Previously we'd use the current renderbuffer.
2010-02-26progs/tests: add compile-time option for coloring texture cornersBrian Paul
When debugging wrap modes it's helpful to set each corner of the texture image to a distinct color.
2010-02-26gallium: define GENERATED auxiliary filesBrian Paul
Don't need special default dependency on u_format_pack.h anymore.
2010-02-26gallium: added GENERATED_SOURCES var to Makefile.templateBrian Paul
For use in dependency checking and make clean.
2010-02-26progs/glsl: Ensure CFLAGS are passed during linkingDan Nicholson
Commit ab6825b3e3fd04564b7840e945fa32b0a7b3c0c2 fixed an issue where the architecture option -m32 wasn't being passed to the compiler when linking .o files. This would only fix the issue with user's building with the hacky --enable-32-bit. The right way to fix this is to pass CFLAGS to the linker, which the GNU make builtin rules unfortunately don't do. Signed-off-by: Dan Nicholson <dbn.lists@gmail.com> Tested-by: Török Edwin <edwintorok@gmail.com>
2010-02-26xeglgears: Clean up the code a bitKristian Høgsberg
Still a mess...
2010-02-26Set API dispatch pointers for OES_EGL_image functionsKristian Høgsberg
This chunk fell through the cracks when I rebase the EGLImage patch series.
2010-02-26Revert "gallium: remove unneeded -I path from Makefile.templast"Brian Paul
This reverts commit d9c65ddd52199469c49fc0d3ad90fedb9a69274d. Looks like the nouveau drivers need this. Perhaps the drivers could be fixed to add the extra -I path where needed. I'll leave that up to others.
2010-02-26gallium/nouveau: clean-up #includesBrian Paul
2010-02-26gallium: remove unneeded -I path from Makefile.templastBrian Paul
2010-02-26softpipe: fix up #includesBrian Paul
2010-02-26gallium/trace: remove unneeded path prefixes on #includesBrian Paul
2010-02-26gallium/identity: remove unneeded path prefixes on #includesBrian Paul
2010-02-26glx: fix incorrect array stack memory allocationMarkus Fleschutz
The array stack space wasn't allocated to the proper size. Fixes out of bounds memory writes when the client/array stack depth exceeds one. See fd.o bug 26768.
2010-02-26util: Define SRGB's channels as normalized.José Fonseca
A better approximation than uscaled...
2010-02-26util: Code generate functions to pack and unpack a single pixel.José Fonseca
Should work correctly for all pixel formats except SRGB formats. Generated code made much simpler by defining the pixel format as a C structure. For example this is the generated structure for PIPE_FORMAT_B6UG5SR5S_NORM: union util_format_b6ug5sr5s_norm { uint16_t value; struct { int r:5; int g:5; unsigned b:6; } chan; }; Not used everywhere yet because it seems compiled code is slower than bitshift arithmetic by some misterious reason. So we should generate bitshift arithmetic at least for the simple UNORM pixel formats.
2010-02-26util: Factor some code into u_format_parse.pyJosé Fonseca
2010-02-26util: Add util_bswap16.José Fonseca
2010-02-26util: Use python names consistent with u_format.hJosé Fonseca
2010-02-26mesa: fix _BaseFormat assignment in _mesa_soft_renderbuffer_storage()Brian Paul
The rb->InternalFormat field will be set by the caller if the allocation succeeds. Until then, this field's value can't be used. Fixes a failed assertion with FlightGear.
2010-02-26mesa: update tarball file list, bump version stringBrian Paul
2010-02-26progs/xdemos: fix typo in glxinfo helpBrian Paul
2010-02-26llvmpipe: Fix lp_tile_r5g6b5_unorm_write_4ub.José Fonseca
Was using 32bit integer pointers instead of 16bits.
2010-02-26llvmpipe: Fix scons dependencies.José Fonseca
2010-02-26util: Add is_pot() method to formats.José Fonseca