Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Start breaking the #include dependencies between pipe drivers and mesa. | Keith Whitwell | 2007-08-13 | 27 | -584/+553 |
| | | | | | | | | | | Pipe drivers shouldn't really know much about mesa and certainly shouldn't be #including files from src/mesa/main and the like. I've also (in i915simple especially) moved over from GL types to more conventional int/unsigned usage. This probably isn't really the ultimate desired set of types to use - possibly C99 would be better. It may even be that a subset of the GL types is preferable. | ||||
* | check if we have a zbuf before enabling depth_test stage | Brian | 2007-08-13 | 1 | -1/+2 |
| | |||||
* | fix some issues with texture/mipmap_tree state tracking | Brian | 2007-08-13 | 3 | -6/+8 |
| | |||||
* | with Y=0=top, front/back determination is negated | Brian | 2007-08-13 | 3 | -5/+5 |
| | |||||
* | check for ctx==NULL in st_renderbuffer_delete() | Brian | 2007-08-13 | 1 | -7/+12 |
| | |||||
* | fill in the get_tile() function so ReadPixels can work | Brian | 2007-08-13 | 1 | -3/+36 |
| | |||||
* | flush pipe before reading image | Brian | 2007-08-13 | 1 | -1/+9 |
| | |||||
* | Change/fix surface allocation functions. | Brian | 2007-08-11 | 4 | -50/+45 |
| | | | | | Use xmesa_new_color_surface() for front/back renderbuffer surfaces. Use xmesa_surface_alloc() for everything else (textures, other renderbuffers) | ||||
* | mt->pitch must be at least 16 because of 64-byte alignment in sp_region.c ↵ | Brian | 2007-08-11 | 1 | -0/+6 |
| | | | | (fix that someday) | ||||
* | do clipping in get_tile() | Brian | 2007-08-11 | 1 | -6/+14 |
| | |||||
* | added Bitmap() stub, call st_validate_state() in DrawPixels | Brian | 2007-08-11 | 1 | -3/+18 |
| | |||||
* | remove some temp pipe hacks | Brian | 2007-08-11 | 1 | -15/+0 |
| | |||||
* | added st_cb_queryobj.c | Brian | 2007-08-11 | 2 | -0/+3 |
| | |||||
* | Begin/EndQuery functions | Brian | 2007-08-11 | 2 | -0/+112 |
| | |||||
* | repair breakage from recent pipe_winsys re-org | Brian | 2007-08-11 | 3 | -38/+149 |
| | |||||
* | fix invalid usage of buffer_unreference() | Brian | 2007-08-11 | 2 | -2/+2 |
| | | | | | | | Need to pass the address of the buffer ptr, not the buffer ptr. Before, the region->buffer type was void * so it wasn't effectively type-checked. Changing the type to pipe_buffer_object* allows the compiler to detect the error. Fixing this solves a segfault. | ||||
* | notes/asserts for get/put_tile() | Brian | 2007-08-11 | 1 | -0/+3 |
| | |||||
* | move pipe_buffer_handle definition to top of file, use it in pipe_region | Brian | 2007-08-11 | 1 | -5/+4 |
| | |||||
* | remove #include mtypes.h | Brian | 2007-08-11 | 1 | -1/+0 |
| | |||||
* | Rename intel_buffers.[ch] to intel_swapbuffers.[ch] | Keith Whitwell | 2007-08-11 | 7 | -14/+6 |
| | |||||
* | Fix some build failures. Move intelScreenContext to intel_context.c | Keith Whitwell | 2007-08-11 | 5 | -36/+38 |
| | |||||
* | Pull in improved debug from master | Keith Whitwell | 2007-08-11 | 1 | -23/+429 |
| | |||||
* | make it easier to compare debug code with non-pipe version | Keith Whitwell | 2007-08-11 | 2 | -80/+80 |
| | |||||
* | add intel_lock.c to build | keithw | 2007-08-11 | 1 | -0/+1 |
| | |||||
* | remove intel_ioctl.c | keithw | 2007-08-11 | 7 | -325/+178 |
| | |||||
* | move batch ioctl to intel_batchbuffer.c | keithw | 2007-08-11 | 3 | -128/+35 |
| | |||||
* | remove unused irq functions | keithw | 2007-08-11 | 2 | -46/+0 |
| | |||||
* | move locking to new file | keithw | 2007-08-11 | 2 | -118/+170 |
| | |||||
* | remove intelGetString() | keithw | 2007-08-11 | 1 | -64/+0 |
| | |||||
* | Move string functions to state_tracker, add queries to pipe, winsys. | Keith Whitwell | 2007-08-10 | 14 | -11/+258 |
| | |||||
* | Y invert, clean-up | Brian | 2007-08-10 | 1 | -82/+74 |
| | |||||
* | invert Y for scissor | Brian | 2007-08-10 | 1 | -0/+8 |
| | |||||
* | use winsys supported_formats() query | keithw | 2007-08-10 | 1 | -0/+5 |
| | |||||
* | add missing printf | keithw | 2007-08-10 | 1 | -0/+9 |
| | |||||
* | move dri_bo() to a header file | keithw | 2007-08-10 | 3 | -16/+21 |
| | |||||
* | added pipe->max_texture_size() query, use it in st_drawpixels() | Brian | 2007-08-10 | 4 | -0/+76 |
| | |||||
* | Lift common winsys functions into pipe's new p_winsys. | Keith Whitwell | 2007-08-10 | 33 | -896/+494 |
| | |||||
* | fix image orientation | Brian | 2007-08-10 | 1 | -5/+8 |
| | |||||
* | readpixels handles any format/type/packing/transfer ops now | Brian | 2007-08-10 | 1 | -10/+56 |
| | |||||
* | setup sampler state, computed wincoords with pixel zoom factors | Brian | 2007-08-10 | 1 | -30/+59 |
| | |||||
* | don't hardcode cpp | Brian | 2007-08-10 | 1 | -6/+8 |
| | |||||
* | added st_sizeof_format() | Brian | 2007-08-10 | 2 | -0/+13 |
| | |||||
* | basic texture-based glDrawPixels path works | Brian | 2007-08-10 | 1 | -21/+60 |
| | |||||
* | use st_mesa_format_to_pipe_format() | Brian | 2007-08-10 | 1 | -17/+2 |
| | |||||
* | added st_mesa_format_to_pipe_format() | Brian | 2007-08-10 | 2 | -0/+18 |
| | |||||
* | alignment/pitch/width clean-ups | Brian | 2007-08-10 | 2 | -7/+19 |
| | |||||
* | minor clean-ups | Brian | 2007-08-10 | 1 | -17/+16 |
| | |||||
* | Handle glFlush/glFinish through the state tracker. | Keith Whitwell | 2007-08-10 | 15 | -57/+212 |
| | |||||
* | pipe->region_alloc() now takes width instead of pitch, plus a flags param | Brian | 2007-08-10 | 9 | -33/+44 |
| | |||||
* | fix asst glitches | Brian | 2007-08-10 | 1 | -3/+3 |
| |