Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-12-07 | add some whitespace | Brian | |
2007-12-07 | Move struct softpipe_texture definition into sp_texture.h | Brian | |
Also, added softpipe_texture() cast wrapper. | |||
2007-12-07 | minor code movement | Brian | |
2007-12-07 | Eliminate struct pipe_region. | Michel Dänzer | |
Directly use struct pipe_buffer_handle for storage and struct pipe_surface for (un)mapping. | |||
2007-12-06 | Hide texture layout details from the state tracker. | Michel Dänzer | |
pipe->get_tex_surface() has to be used for access to texture image data. | |||
2007-12-05 | added tile funcs for B8G8R8A8 format | Brian | |
2007-11-29 | Move dimensions from struct pipe_region to struct pipe_surface. | Michel Dänzer | |
2007-11-23 | gallium: remove sp_headers.h references. | Michal Krol | |
2007-11-23 | gallium: reorg tgsi directories. | Michal Krol | |
2007-11-21 | Replace draw_set_vertex_attributes() with simpler draw_set_vertex_info(). | Brian | |
Just pass in the vertex_info object and make a copy of it. | |||
2007-11-20 | add PIPE_FORMAT_Z24_S8 support to softpipe patsh | Brian | |
2007-11-19 | optimize earlyz_quad(), add comments, remove unneeded #includes | Brian | |
2007-11-18 | Implement early depth test. | Michal Krol | |
Early depth test is enabled when depth test is enabled and alpha test is disabled and fragment shader does not write depth. The early-z is implemented by moving the depth test stage just before the fragment shader stage and prepending it with an earlyz stage, introduced with this commit. The earlyz stage prepares the quad->outputs.depth for the following depth test stage by interpolating Z position, just as the fragment shader would do. | |||
2007-11-16 | note problem with fragment coord Y orientation | Brian | |
2007-11-08 | Implement shadow comparisons. | Brian | |
2007-11-08 | use pipe_surface_reference() in sp_tile_cache_set_surface() | Brian | |
2007-11-08 | fix bad width/height code in softpipe_clear() | Brian | |
2007-11-08 | Added pipe->get_paramf() to query float limits. | Brian | |
So far max point size, line width, texture anistopy and lod bias. | |||
2007-11-07 | Reset temporary vertices ids. | José Fonseca | |
2007-11-07 | Use a consistent number to identify undefined vertices. | José Fonseca | |
2007-11-06 | remove dead code in softpipe_is_format_supported() | Brian | |
2007-11-06 | Remove pipe->max_texture_size(), use get_param() instead. | Brian | |
Also, in st_init_limits(), clamp driver's values against Mesa's internal limits. | |||
2007-11-05 | Determine GL extensions/limits by making pipe queries. | Brian | |
The state tracker calls pipe->get_param() to determine the GL limits and which OpenGL extensions are supported. This is an initial implementation that'll probably change... | |||
2007-11-02 | Cleanups. | Zack Rusin | |
Remove some debugging output and try to make sure that Mesa compiles when configured without LLVM | |||
2007-11-02 | Implement COS and CMP opcode. | Zack Rusin | |
There's some weird rounding issue with COS that I can't figure out. | |||
2007-11-02 | Add debugging ifdefs to make it less verbose | Zack Rusin | |
2007-11-02 | Get fragment shaders working on top of LLVM. | Zack Rusin | |
Redo the entry points, get the output propagation correctly, interpolate the inputs before feeding into llvm for now. | |||
2007-11-02 | Change the fragment shader signature to better match actual | Zack Rusin | |
arguments that we need there. | |||
2007-11-02 | Add basic entry points for fragment shaders. | Zack Rusin | |
2007-11-02 | Renaming llvmtgsi to gallivm. Taking first steps on the way to supporting | Zack Rusin | |
fragment shaders through llvm. | |||
2007-11-01 | implement get/put_tile() for xlib driver | Brian | |
2007-10-29 | minor code simplification | Brian | |
2007-10-29 | fix memcpy bugs | Brian | |
2007-10-29 | Make it compile under linux. | Michal Krol | |
Move pipe_region/surface_reference functions to pipe/p_inlines.h. Remove #include "p_util.h" from pipe/p_context.h. | |||
2007-10-29 | Make gallium compile in win32. | Michal Krol | |
Use FREE, MALLOC, CALLOC, GETENV wrappers. Silence compiler warnings. Add proper copyrights. | |||
2007-10-29 | fix bad fragment shader pointer assignment | Brian | |
2007-10-29 | Remove typedefs from enums. | Zack Rusin | |
typedefs are rather evil, remove them and use the enum keyword explicitely. | |||
2007-10-29 | Fix i915simple build. | José Fonseca | |
2007-10-28 | Replace supported_formats with is_format_supported interface. | Michal Krol | |
The old supported_formats interface returned a list of formats supported by a pipe/winsys implementation. This was reasonable when gallium had a fixed list of predefined format. Now things has changed and the definition of PIPE_FORMAT is more flexible. The new shiny is_format_supported interface gets PIPE_FORMAT as an argument and returns a boolean whether this particular format is supported. | |||
2007-10-28 | Use FREE and MALLOC instead of free and malloc. | Michal Krol | |
2007-10-28 | Control FS TGSI dumping with GALLIUM_DUMP_FS env variable. | michal | |
2007-10-28 | Fix newlines. | michal | |
2007-10-27 | Use FREE instead of free. Fix newlines. | michal | |
2007-10-27 | Enable SSE path. | michal | |
2007-10-27 | Respect use_sse flag. | michal | |
2007-10-27 | Add #ifs. | michal | |
2007-10-27 | Enable SSE2 for fragment shaders. | michal | |
2007-10-27 | Define destroy method called by softpipe's destructor. | michal | |
2007-10-27 | Silence compiler warnings. | michal | |
2007-10-27 | Silence compiler warnings. | michal | |