Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | remove slang_library_texsample.[ch] | Brian | 2007-02-02 | 1 | -1/+0 |
| | |||||
* | rename slang_link2.c slang_link.c | Brian | 2007-02-02 | 1 | -3/+3 |
| | |||||
* | rename slang_assemble_typeinfo.[ch] to slang_typeinfo.[ch] | Brian | 2007-02-02 | 1 | -1/+1 |
| | |||||
* | remove slang_assemble*.c files | Brian | 2007-02-02 | 1 | -4/+0 |
| | |||||
* | remove slang_export.c and related code | Brian | 2007-02-02 | 1 | -1/+0 |
| | |||||
* | remove slang_link.c and slang_analyse.c | Brian | 2007-02-02 | 1 | -2/+0 |
| | |||||
* | remove slang_execute.c, slang_execute_x86.c | Brian | 2007-02-02 | 1 | -3/+1 |
| | |||||
* | remove slang_label.c until it's ready | Brian | 2007-02-01 | 1 | -1/+0 |
| | |||||
* | fix g++ warnings/errors | Brian | 2007-01-23 | 1 | -0/+1 |
| | |||||
* | Rework code related to temp register allocation, both for user variables | Brian | 2007-01-13 | 1 | -0/+1 |
| | | | | | | and expression temporarires. Much better register utilization now. Lots of other fixes. The OpenGL GLSL "orange book" brick shader demo works now. | ||||
* | Overhaul of GLSL API functions, dispatching, etc. | Brian | 2006-12-19 | 1 | -4/+1 |
| | |||||
* | change/add/rm several filenames | Brian | 2006-12-15 | 1 | -3/+10 |
| | |||||
* | Remove unneeded -I directories (3Dlabs headers). | Brian | 2006-12-13 | 1 | -2/+0 |
| | |||||
* | Checkpoint GLSL compiler work. Add new sources, remove obsolete. | Brian | 2006-12-13 | 1 | -33/+6 |
| | |||||
* | s/X86_SOURCES/ASM_SOURCES/ in ALL_SOURCES to try to fix make depend warnings ↵ | Brian Paul | 2006-10-16 | 1 | -1/+1 |
| | | | | (bug 8669) | ||||
* | Move mipmap generation functions, texture scaling functions into new | Brian Paul | 2006-09-29 | 1 | -0/+1 |
| | | | | mipmap.c file. | ||||
* | remove stray tab | Brian Paul | 2006-09-06 | 1 | -1/+1 |
| | |||||
* | Functions for vertex/fragment program transformations, optimizations, etc. | Brian Paul | 2006-08-24 | 1 | -0/+1 |
| | |||||
* | move ALL_SOURCES to sources file | Brian Paul | 2006-08-21 | 1 | -1/+9 |
| | |||||
* | Fix-ups for linux-fbdev config. No longer build Xlib driver sources. | Brian Paul | 2006-08-18 | 1 | -0/+2 |
| | |||||
* | Add support for GL_APPLE_vertex_array_object. Several test programs | Ian Romanick | 2006-06-12 | 1 | -0/+1 |
| | | | | | | | and demos are also added. Adding basic support to drivers should be as easy as just enabling the extension, though thorough test would also be required. | ||||
* | added rbadaptors.c | Brian Paul | 2006-05-19 | 1 | -0/+1 |
| | |||||
* | Add slang_analyse.c and slang_library_texsample.c. | Michal Krol | 2006-03-14 | 1 | -0/+2 |
| | |||||
* | added s_blit.c | Brian Paul | 2006-03-01 | 1 | -0/+1 |
| | |||||
* | More GLSL code: | Michal Krol | 2006-02-27 | 1 | -1/+2 |
| | | | | | | | | | | | | | - add x86 code generator; - add full support for uniforms in ARB_shader_objects; - add assembly instruction: global_addr; - reorganize #includes; - built-in uniforms accessed by index, rather than by name; - add some entries to x86sse rtasm; - add configurations to VC6 projects: 'Release x86' and 'Debug x86'; - #define SLANG_X86 active only on VC6 x86 builds; - introduce code export table for a shader; - remove GNU license from the noise library; | ||||
* | More GLSL code: | Michal Krol | 2006-02-21 | 1 | -0/+2 |
| | | | | | | | - uniforms (only GetLocation, Uniform1f and Uniform4fv for now for demos); - fix bugs and optimize array size handling; - 2D texture sampling (needs Enable(TEXTURE_2D) to work); - decrease built-in library assembly size by 30%. | ||||
* | More GLSL code. | Michal Krol | 2006-02-18 | 1 | -0/+1 |
| | | | | | | - general constructors allowed; - implement noise functions (from Stefan Gustavson - thanks!) - cosmetic stuff. | ||||
* | Add swrast/s_arbshader.c. | Michal Krol | 2006-02-15 | 1 | -0/+1 |
| | |||||
* | Add tnl/t_vb_arbshader.c. | Michal Krol | 2006-02-13 | 1 | -4/+5 |
| | |||||
* | Add shader/slang/slang_compile_*.* files. | Michal Krol | 2006-01-30 | 1 | -1/+5 |
| | |||||
* | Removed the GL_SGIX/SGIS_pixel_texture extensions. Same thing can be | Brian Paul | 2005-12-14 | 1 | -1/+0 |
| | | | | done with fragment programs nowadays. | ||||
* | Remove the _mesa_parse_arb_vertex/fragment_program() functions into | Brian Paul | 2005-11-19 | 1 | -2/+0 |
| | | | | | | | arbprogparse.c and remove arbvertparse.[ch] and arbfragparse.[ch]. Clean up quite a bit of the arb parsing code. Rewrite parser extension code to avoid a mess of string operations every time the parser was used. | ||||
* | added depthstencil.c | Brian Paul | 2005-11-16 | 1 | -0/+1 |
| | |||||
* | At keithw's request, remove all traces of the "fragment program to C" and | Ian Romanick | 2005-11-08 | 1 | -2/+0 |
| | | | | TCC experiment. | ||||
* | Add _mesa_exec_malloc() and _mesa_exec_free() for allocating | Keith Whitwell | 2005-10-18 | 1 | -0/+2 |
| | | | | | executable memory. Based on Thomas Hellstrom's patch. TODO: glapi.c also needs this, but cannot access this code. | ||||
* | alphabetize | Brian Paul | 2005-09-16 | 1 | -2/+2 |
| | |||||
* | Split the s_texture.c file into two new files: | Brian Paul | 2005-09-15 | 1 | -1/+2 |
| | | | | | s_texcombine.c - for texture combining/application s_texfilter.c - for texture sampling/filtering | ||||
* | use ASM_API variable, bug 4415 | Brian Paul | 2005-09-12 | 1 | -2/+6 |
| | |||||
* | Clean-up of sources/Makefile, bug 4111 | Brian Paul | 2005-09-10 | 1 | -4/+10 |
| | |||||
* | Add support for assembly (static) dispatch functions on x86-64. This | Ian Romanick | 2005-07-02 | 1 | -0/+3 |
| | | | | | | is basically patch #2939 from X.org bugzilla #3379. This does *not* fix the bug as it does not dynamically generate stubs at run-time. It just gets things one step closer. | ||||
* | Add t_vb_arbprogram_sse.c | Keith Whitwell | 2005-06-08 | 1 | -0/+1 |
| | |||||
* | Add new runtime assembly files. | Keith Whitwell | 2005-06-07 | 1 | -0/+1 |
| | |||||
* | add shader/slang/slang_assemble_assignment.c | Michal Krol | 2005-05-25 | 1 | -0/+1 |
| | |||||
* | update grammar_mesa.c path | Michal Krol | 2005-05-25 | 1 | -1/+1 |
| | |||||
* | add mesa/shader/grammar to include list | Michal Krol | 2005-05-25 | 1 | -0/+1 |
| | |||||
* | intermediate code generator (not finished); | Michal Krol | 2005-05-19 | 1 | -0/+6 |
| | | | | generic back-end interpreter (interprets directly intermediate code) | ||||
* | Remove old t_vertex.c codegen infrastructure, tie in new code. | Keith Whitwell | 2005-05-18 | 1 | -2/+2 |
| | | | | Currently disabled, can enable with MESA_EXPERIMENTAL=t. | ||||
* | x86-64 transform optimizations (Mikko T.) | Brian Paul | 2005-05-07 | 1 | -1/+5 |
| | |||||
* | fix xm_span2.c reference | Brian Paul | 2005-05-04 | 1 | -1/+1 |
| | |||||
* | Major check-in of changes for GL_EXT_framebuffer_object extension. | Brian Paul | 2005-05-04 | 1 | -4/+6 |
| | | | | | | | Main driver impacts: - new code for creating the Mesa GLframebuffer - new span/pixel read/write code Some drivers not yet updated/tested. |