| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2009-09-08 | mesa: bump version to 7.7 | Brian Paul | |
| 2009-09-08 | mesa: fix viewport_z_clip breakage | Brian Paul | |
| 2009-09-08 | intel: Add support for ARB_draw_elements_base_vertex. | Eric Anholt | |
| On the 965, we just drop the value into the primitive packet. On non-945, we rely on the sw tnl code handling it. | |||
| 2009-09-08 | mesa: Add support for ARB_draw_elements_base_vertex. | Eric Anholt | |
| 2009-09-08 | glapi: Add ARB_draw_elements_base_vertex | Eric Anholt | |
| 2009-09-08 | mesa: Expose NV_depth_clamp if ARB_depth_clamp is supported. | Eric Anholt | |
| The wording of these two is exactly the same, except for the issue "Can fragments with wc<=0 be generated when this extension is supported?", which idr thinks is a non-issue for us. | |||
| 2009-09-08 | i965: Add support for ARB_depth_clamp. | Eric Anholt | |
| 2009-09-08 | Regenerate files for GL_ARB_depth_clamp. | Eric Anholt | |
| 2009-09-08 | mesa: Add support for ARB_depth_clamp. | Eric Anholt | |
| This currently doesn't include fixing up the cliptests in the assembly paths to support ARB_depth_clamp, so enabling depth_clamp forces the C path. | |||
| 2009-09-08 | i965: Respect spec requirement for pixel shader computed depth with no zbuffer. | Eric Anholt | |
| 2009-09-08 | i965: Set NULL WM surfaces as tiled according to requirement by specs. | Eric Anholt | |
| 2009-09-08 | i965: Use the renderbuffer surface size instead of region size for WM surfaces. | Eric Anholt | |
| For drawing to lower mipmap levels, the region size makes the renderbuffer be the size of the lowest level, instead of the current level. On DRI1, Brian previously found that the RB size was incorrect, so leave this broken there. | |||
| 2009-09-08 | Revert "intel: helper to debug bufmgr (disabled)" | Eric Anholt | |
| This reverts commit e0ec405a9fa6fbc1cf2ac531ed5efd1a64e01f18. This is already available in INTEL_DEBUG=bufmgr in the environment. | |||
| 2009-09-08 | mesa: bump version to 7.5.2 | Brian Paul | |
| I'm not 100% sure there'll be a 7.5.2 release, but just in case. | |||
| 2009-09-08 | i965: #include clean-ups | Brian Paul | |
| 2009-09-08 | intel: #include clean-ups | Brian Paul | |
| 2009-09-08 | i965: use _mesa_is_bufferobj() | Brian Paul | |
| Also, remove unneeded call to _mesa_validate_pbo_access(). It's done by core Mesa as the comment suggested. | |||
| 2009-09-08 | i965: use _mesa_is_bufferobj() | Brian Paul | |
| 2009-09-08 | i965: use _mesa_is_bufferobj() | Brian Paul | |
| 2009-09-08 | i965: use _mesa_is_bufferobj() | Brian Paul | |
| 2009-09-08 | r600: fix dri2 clipping | Alex Deucher | |
| 2009-09-08 | i965: fix incorrect test for vertex position attribute | Brian Paul | |
| 2009-09-08 | slang: Correctly handle end of tokens marker. | Michal Krol | |
| 2009-09-08 | slang: Do not parse whitespace. | Michal Krol | |
| The preprocessor tokeniser deals with those. | |||
| 2009-09-08 | slang: Correctly parse numbers from the new preprocessor. | Michal Krol | |
| 2009-09-08 | grammar: Fix token stripping. | Michal Krol | |
| 2009-09-08 | slang: Remove the old preprocessor. | Michal Krol | |
| 2009-09-08 | slang: Remove dependencies on error tokens. | Michal Krol | |
| 2009-09-07 | slang: Adapt shader syntax description to grammar parser changes. | Michal Krol | |
| 2009-09-07 | grammar: Adapt grammar to the glsl preprocessor. | Michal Krol | |
| 2009-09-07 | grammar: Remove dead code. | Michal Krol | |
| 2009-09-07 | grammar: Remove grammar_check(). | Michal Krol | |
| 2009-09-07 | mesa: Include <unistd.h> only when one is available. | Michal Krol | |
| 2009-09-07 | mesa: Fix calling conventions of sync object api callbacks. | Michal Krol | |
| 2009-09-06 | mesa: initial version of _mesa_meta_generate_mipmap() | Brian Paul | |
| Incomplete and totally untested. Based on intel_generate_mipmap(). | |||
| 2009-09-06 | xlib: test _mesa_meta_bitmap() | Brian Paul | |
| 2009-09-06 | mesa: use separate temp texture for bitmaps | Brian Paul | |
| 2009-09-06 | mesa: temp_texture changes | Brian Paul | |
| 2009-09-06 | mesa: free meta bitmap buffers | Brian Paul | |
| 2009-09-06 | mesa: use _mesa_set_enable() | Brian Paul | |
| 2009-09-06 | mesa: _mesa_meta_bitmap() function | Brian Paul | |
| 2009-09-06 | xlib: move misplaced brace | Brian Paul | |
| 2009-09-06 | Merge branch 'master' into r300-compiler | Nicolai Hähnle | |
| Conflicts: src/gallium/drivers/r300/r300_tgsi_to_rc.c | |||
| 2009-09-06 | r300/compiler: New dataflow structures and passes | Nicolai Hähnle | |
| This replaces the old NQSSADCE code with the same functionality, but quite different design. Instead of doing a single integerated pass, we now build explicit data structures representing the dataflow. This will enable analysis of flow control instruction, and could potentially open an avenue for several dataflow based optimizations, such as peephole optimization, fusing MUL+ADD to MAD, and so on. | |||
| 2009-09-04 | NV fp parser: Support instruction and TEMP / OUTPUT sizes | Ian Romanick | |
| Adds support for declaring TEMP and OUTPUT variables as 'LONG' or 'SHORT' precision. The precision specifiers are parsed, but they are currently ignored. Some support for this may be added in the future, but neither Intel hardware nor, as far as I'm aware, Radeon hardware support multiple precisions. Also adds support for instruction precision ('X', 'H', and 'R') suffixes and instruction condition code output ('C') suffix. This results in a fairly major change to the lexer. Instructions are matched with all the possible suffix strings. The suffix string are then carved off by a context (i.e., which program mode and options are set) aware parser that converts the suffixes to bits in prog_instruction. This could have been handled in the same way _SAT was originally handled in the lexer, but it would have resulted in a very large lexer with lots of opportunity for cut-and-paste errors. | |||
| 2009-09-04 | ARB prog parser: Add new constructor for asm_instruction | Ian Romanick | |
| The new constructor copies fields from the prog_instruction that the parser expects the lexer to set. | |||
| 2009-09-04 | r600: add support for EXT_texture_sRGB | Alex Deucher | |
| 2009-09-04 | r300: Add support for GL_EXT_provoking_vertex | Alex Deucher | |
| 2009-09-04 | r600: Add support for GL_EXT_provoking_vertex | Alex Deucher | |
| 2009-09-04 | i965: Fix warnings in intel_pixel_read.c. | Eric Anholt | |
| (cherry picked from commit c80ce5ac90b1e0ac7a72cd41c314aa2000bfecf5) | |||
