summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2008-05-28Merge branch 'gallium-vertex-linear' into gallium-0.1Jakob Bornecrantz
Conflicts: src/gallium/auxiliary/draw/draw_pt_varray.c
2008-05-28i915: Don't segfault on buffer allocation errorJakob Bornecrantz
2008-05-28i915: Make EGL_i915 compileJakob Bornecrantz
2008-05-28i915: Make EGL_i915 segfault if modesetting is not workingJakob Bornecrantz
2008-05-28egl: Temporarily disable eglx.[c|h] buildingJakob Bornecrantz
2008-05-28egl: Make dri driver compileJakob Bornecrantz
2008-05-28egl: Make demo driver compileJakob Bornecrantz
2008-05-28gallium: Windows CE portability fixes.José Fonseca
2008-05-27include eglconfigutil.hBrian Paul
2008-05-27Move some config-related utility functions into new eglconfigutil.c file.Brian Paul
2008-05-27misc updates, clean-ups, remove dependency on mtypes.hBrian Paul
2008-05-27minor overhaul/re-org of driver selection/loading codeBrian Paul
2008-05-27added _eglGet*Handle() functionsBrian Paul
These are the inverse of the _eglLookup*() functions. Returns the public handle for a private surface/config/display/etc. Removes glapi.c's direct access of private fields.
2008-05-27added EGL_OPENGL_API caseBrian Paul
2008-05-27eliminate the context hash tableBrian Paul
In EGL 1.4 the opaque EGLContext type is a pointer so we can just cast between public EGLContext handles and private _EGLContext pointers.
2008-05-27fix typo: s/Contexts/Surfaces/Brian Paul
2008-05-27s/GLuint/unsigned/Brian Paul
2008-05-27assorted changes to compile with new EGL 1.4 headers (untested)Brian Paul
2008-05-27pipe stderr to /dev/nullBrian Paul
2008-05-27draw: support psize in vs_varient pathsKeith Whitwell
Preserve the vinfo "EMIT_*" format descriptors in the varient key, and deal with PSIZE directly in each implementation.
2008-05-27draw: add disabled debug codeKeith Whitwell
2008-05-27draw: ensure vs outputs mapped correctly to vinfo attribsKeith Whitwell
2008-05-27draw: fix ABS aliasing bugKeith Whitwell
2008-05-28gallium: Autodetect WINCE.José Fonseca
2008-05-27draw: explicitly list nr_inputs, outputs in varient keyKeith Whitwell
2008-05-27draw: remove dead fileKeith Whitwell
2008-05-27draw: Fixed typo in draw_pt_varray and added commentsJakob Bornecrantz
2008-05-27draw: Fix for EMIT_4UB caseJakob Bornecrantz
2008-05-27draw: hook up viewport / rhw emit to varient key stateKeith Whitwell
2008-05-27draw: restore extras path in draw_pt_vcache.c, keep pipeline flags out of ↵Keith Whitwell
non-pipeline elts
2008-05-27draw: dump individual instructions as they are processedKeith Whitwell
2008-05-27tgsi: export utils for dumping individual instructionsKeith Whitwell
2008-05-27draw: fix writemask/shufps confusionKeith Whitwell
2008-05-27draw: some possible fixes for spillingKeith Whitwell
2008-05-27ffvertex: emit full LIT when attenuating (needs the 1 in X position)Keith Whitwell
2008-05-27ffvertex: don't compute whole eye vector if only eye.z is requiredKeith Whitwell
2008-05-26gallium: free renderbuffer's old texture in st_renderbuffer_alloc_storage()Brian Paul
2008-05-26draw: defensively flush pipeline backend when setting primitiveKeith Whitwell
2008-05-26draw: defensively reset render primitive some moreKeith Whitwell
2008-05-26draw: defensively reset render primitive, which can get clobbered by clippingKeith Whitwell
2008-05-26draw: add missing breakKeith Whitwell
2008-05-26Revert DOS line endings.José Fonseca
2008-05-26Remove CVS keywords.José Fonseca
2008-05-26i915: Removed screen sufixes on texture functionsJakob Bornecrantz
2008-05-26i915: Fix for tex-surface mergeJakob Bornecrantz
2008-05-26Merge branch 'gallium-tex-surface' into gallium-0.1Jakob Bornecrantz
Conflicts: src/gallium/include/pipe/p_util.h
2008-05-26draw: extend precision in RSQ opcodeKeith Whitwell
2008-05-26draw: more aos tweaksKeith Whitwell
2008-05-25cso: use memcpy rather than structure asignment for copyingKeith Whitwell
Apparently gcc will omit to copy hidden padding bytes under some circumstances, which means later on memcmp() will indicate a difference between structs even though all the visible members are identical.
2008-05-25draw: slight tweak for XPD opcodeKeith Whitwell