Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-10-04 | [965] Replace various alignment code with a shared ALIGN() macro. | Eric Anholt | |
In the process, fix some alignment issues: - Scratch space allocation was aligned into units of 1KB, while the allocation wanted units of bytes, so we never allocated enough space for scratch. - GRF register count was programmed as ALIGN(val - 1, 16) / 16 instead of ALIGN(val, 16) / 16 - 1, which overcounted for val != 16n+1. | |||
2007-09-11 | i965: take the secondary color into account when drawing | Xiang, Haihao | |
bitmap. fix#10688 | |||
2007-08-29 | i965: check NULL pointer. fix bug#12193 | Xiang, Haihao | |
2007-07-31 | i965: fix bad casts in do_blit_bitmap to support WindowPos correctly | Xiang, Haihao | |
2007-07-04 | fix LogicOp/bitmap problem, bug 11133 | Eric Anholt | |
2006-10-05 | Accelerate glBitmap with a color expand blit. Nice speedup for demos | Keith Whitwell | |
like 'fire' that display a help message or fps number this way. |