summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-02-18Upload matrix stateThomas White
2010-02-18Fire the engine at the end of the pipelineThomas White
2010-02-18Use burst command for vertex submissionThomas White
2010-02-18Actually send vertex stream info to GPUThomas White
2010-02-18Update copyright datesThomas White
2010-02-18Poke fewer registers for glamoClearThomas White
2010-02-18Fix glamoClear() using burst commandsThomas White
2010-02-18Remove unused 'regname'Thomas White
2010-02-18Use burst commands instead of single commandsThomas White
2010-02-18Add missing FLUSH()es in t_dd_dmatmp.hThomas White
Signed-off-by: Thomas White <taw@bitwiz.org.uk>
2010-02-18Ready for vertex submission to hardwareThomas White
2010-02-18Jazz up glxdemoThomas White
Since we're modifying glxdemo anyway, this changes it so that clicking on the window changes the clear colour to a randomly chosen one and redraws.
2010-02-18Revert "Nasty workaround for apparent GCC bug"Thomas White
An improved workaround has now been committed. This reverts commit 692fd8a500e0f9eadc703b29b0c7550f57863e29.
2010-02-18Better workaround for GCC bugThomas White
The problem triggered by CLAMP (see 692fd8a500e0f9eadc703b29b0c7550f57863e29) appears to be GCC bug #39501. A saner workaround than the previous one is to alter the compiler options.
2010-02-18Nasty workaround for apparent GCC bugThomas White
This is a horrible workaround for what I think must be a GCC bug. Remove that usleep(1), or go back to the original CLAMP() macro, and glxdemo will have a white background instead of a grey one. That is to say, the value 0.5 is getting clamped to 1.0 because of some underlying floating-point weirdness. This happens when cross-compiling for armv4t-angstrom-linux-gnueabi with GCC version 4.1.1 or 4.3.2.
2010-02-18Use correct colour for glClear()Thomas White
2010-02-18Give glxdemo's window a titleThomas White
2010-02-18Remove debugThomas White
2010-02-18glClear() placeholder codeThomas White
It draws something!
2010-02-18Add MSAA stuff to calls to driCreateConfigsThomas White
2010-02-18Loads of triangle and context stuffThomas White
2010-02-18Glamo->glamoThomas White
2010-02-18Remove old glamo-regs.h (Should be glamo_regs.h)Thomas White
2010-02-18Add register header and implement glClear() (sort of)Thomas White
2010-02-18Formatting in glamo_tris.cThomas White
2010-02-18CmdQ fixesThomas White
2010-02-18FormattingThomas White
2010-02-18Add command queue stuffThomas White
2010-02-18Indentation in glamo_state.cThomas White
2010-02-18Implement glamoResizeBuffersThomas White
2010-02-18Tidy upThomas White
2010-02-18IndentationThomas White
It's official. Indenting with spaces make me sick.
2010-02-18Fix renderbuffersThomas White
2010-02-18More framebuffer stuffThomas White
2010-02-18Link against libdrm_glamoThomas White
..and remove a commented out old thing from the Makefile
2010-02-18Framebuffer, renderbuffer, state and initial triangle stuffThomas White
2010-02-18Fix after rebase against Mesa 7.4Thomas White
2010-02-18Comment out config call which was segfaultingThomas White
2010-02-18Add state hooksThomas White
2010-02-18Context stuffThomas White
2010-02-18Move the modeline to the bottom of the fileThomas White
2010-02-18One more missing includeThomas White
2010-02-18Includes and formattingThomas White
2010-02-18Skeleton Glamo DRI driverThomas White
Signed-off-by: Thomas White <taw@bitwiz.org.uk>
2010-02-18Revert "st/mesa: Make the frontbuffer visible on st_flush(PIPE_FLUSH_FRAME)."Francisco Jerez
We probably don't want to propagate this condition to the pipe driver, this reverts commit f455ca6490fcb65781b21f81c7117bd923e250d1 and the dri_update_buffer flush altogether until an agreement is reached.
2010-02-18intel: Include main/hash.h using "" instead of <>Kristian Høgsberg
2010-02-18progs/trivial: Update .gitignore.Vinson Lee
2010-02-18progs/redbook: Fix array out-of-bounds access.Vinson Lee
2010-02-18st/mesa: always call FLUSH_CURRENT before st->pipe->flush()Keith Whitwell
Undoes part of commit f455ca6 which would permit pipe->flush() to be called while the VBO module still had its buffers mapped. Some drivers care deeply about this. Sorry for not spotting this earlier.
2010-02-17progs/rbug: Silence printf format warning.Vinson Lee