Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | st/xorg: Add support for EXA_MIXED_PIXMAPS and EXA_SUPPORTS_PREPARE_AUX. | Michel Dänzer | |
Also make sure not to leak malloced memory when switching pixmaps to texture based. | |||
2009-09-08 | egl: also use X types for building on Apple/MacOS X | Brian Paul | |
See bug 20413. | |||
2009-09-08 | scons: Add Mac OS to target platform list. | Vinson Lee | |
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-08 | gdi: Fix prototype of gdi_softpipe_surface_buffer_create(). | Michal Krol | |
2009-09-08 | gdi: Fix prototype of gdi_softpipe_surface_buffer_create(). | 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 | gdi: Add glsl to LIBS. | Michal Krol | |
2009-09-07 | grammar: Remove dead code. | Michal Krol | |
2009-09-07 | scons: Don't set LLVM_VERSION if one of the llvm-config calls fails. | Vinson Lee | |
Ubuntu 8.10 has llvm-config version 2.2, which doesn't have nativecodegen. This triggers an exception. | |||
2009-09-07 | llvmpipe: Silent debug statement. | José Fonseca | |
2009-09-07 | llvmpipe: Better abs for floating points. | José Fonseca | |
2009-09-07 | llvmpipe: Code generate the texture sampling inside the shader. | José Fonseca | |
Finally a substantial performance improvement: framerates of apps using texturing tripled, and furthermore, enabling/disabling texturing only affects around 15% of the framerate, which means the bottleneck is now somewhere else. Generated texture sampling code is not complete though -- we always sample from the base level -- so final figures will be different. | |||
2009-09-07 | llvmpipe: Texture sampling code generation primitives. | José Fonseca | |
Only supports single level 2d textures, with neareast and bilinear filtering for now. | |||
2009-09-07 | llvmpipe: Convenience function to obtain the integer type with same bitdepth ↵ | José Fonseca | |
of an arbitrary type. | |||
2009-09-07 | llvmpipe: Utility functions for linear and bilinear interpolation. | José Fonseca | |
2009-09-07 | llvmpipe: Correct implementation of floor. | José Fonseca | |
2009-09-07 | llvmpipe: Utility function to get the pointer to a structure member. | José Fonseca | |
2009-09-07 | llvmpipe: SoA pixel unpacking specialization. | José Fonseca | |
2009-09-07 | util: Utility function to check if a number is a power of two. | José Fonseca | |
2009-09-07 | llvmpipe: Further abstract the texture sampling generation from TGSI ↵ | José Fonseca | |
translation. | |||
2009-09-07 | grammar: Remove grammar_check(). | Michal Krol | |
2009-09-07 | glsl: Add error messages for version parser. | Michal Krol | |
2009-09-07 | glsl: Handle file tokens in apps/process. | Michal Krol | |
2009-09-07 | glsl: Handle file numbering. | Michal Krol | |
2009-09-07 | glsl: Actually respect the hash-line directive. | Michal Krol | |
2009-09-07 | glsl: Handle line tokens in apps/process. | Michal Krol | |
2009-09-07 | glsl: Correctly handle line numbering. | Michal Krol | |
2009-09-07 | glsl: Preserve newline inside comment blocks. | Michal Krol | |
2009-09-07 | glsl: Implement predefinded macros. | Michal Krol | |
The values are hardcoded: __LINE__ = 1, __FILE__ = 0 and __VERSION__ = 110. | |||
2009-09-07 | glsl: Implement `line' preprocessor directive. | Michal Krol | |
2009-09-07 | glsl: Output endof token after processing a directive. | Michal Krol | |
Some directives may output tokens as a result of their operation. |