Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-03-09 | gallium: avoid deleting currently-bound CSO's on cache destruction | Keith Whitwell | |
2008-03-09 | draw: cope with binding NULL vertex shader (on context delete, for instance) | Keith Whitwell | |
2008-03-09 | cso: fix line endings | Keith Whitwell | |
2008-03-09 | cso: Use MALLOC | Keith Whitwell | |
2008-03-09 | cso: add a higher-level interface which does all pipe interactions to set a ↵ | Keith Whitwell | |
given state | |||
2008-03-08 | gallium: Document debug_printf usage. | José Fonseca | |
2008-03-06 | gallium: Surround externs with extern "C". | Michal Krol | |
2008-03-05 | gallium: michel's patch to rework texture/sampler binding interface | Keith Whitwell | |
Bind all the samplers/textures at once rather than piecemeal. This is easier for drivers to understand. | |||
2008-03-05 | gallium: Use custom vsnprintf in WINDDK. | José Fonseca | |
EngDebugPrint does not handle float point arguments, so we need to use our own vsnprintf implementation. | |||
2008-03-04 | draw: dont' compute clipmask or apply viewport when not clipping (rename ↵ | Keith Whitwell | |
bypass_clipping to coords_in_window_space? | |||
2008-03-03 | win32: don't prepend all debug with gallium3d | Keith Whitwell | |
2008-03-03 | draw: add fetch for bgra ubyte surfaces | Keith Whitwell | |
2008-03-01 | refactor code calling builtins and implement dp4 | Zack Rusin | |
2008-03-01 | make the first builtin work (dp3) | Zack Rusin | |
2008-03-01 | start implementing start of bultins | Zack Rusin | |
2008-02-29 | gallium: fix line emit order for unfilled tris | Brian Paul | |
A tri drawn with GL_LINE_LOOP and GL_POLYGON w/ fillmode=GL_LINE should produce the same results when line stipple is enabled. Results are correct now. | |||
2008-02-29 | gallium: point rast coord tweak | Brian Paul | |
2008-02-29 | gallium: need precalc_flat=1 for wide lines | Brian Paul | |
2008-02-29 | gallium: tweak coords for wide lines | Brian Paul | |
2008-02-29 | gallium: added pipe_get/put_tile_z() functions | Brian Paul | |
2008-02-29 | gallium: remove the ugly pipe->draw stage lookup code in ↵ | Brian | |
aaline/point/pstipple stages Added a void *draw ptr to pipe_context. Probably look for a better solution someday. | |||
2008-02-28 | gallium: new wide point/line stages (missed in prev commit) | Brian Paul | |
2008-02-28 | gallium: split draw_wide_prim stage into separate point/line stages. | Brian Paul | |
This fixes a validation/code-path problem. Enabling the stage for the sake of wide points also inadvertantly caused wide lines to be converted to tris when we actually want them passed through, such as for the AA line stage. This is just cleaner now. Also, replace draw_convert_wide_lines() with draw_wide_line_threshold() as was done for points. Allows for 1-pixel lines to be converted too if needed. | |||
2008-02-28 | gallium: Fix MSVC warnings. | José Fonseca | |
2008-02-28 | gallium: Fix sign/unsign comparison. | José Fonseca | |
2008-02-27 | gallium: added draw_num_vs_outputs() to query number of post-transform ↵ | Brian | |
vertex attribs | |||
2008-02-27 | gallium: remove dependencies on pipe_shader_state's semantic info | Brian | |
Use tgsi_scan_shader() to populate a tgsi_shader_info struct and use that instead. | |||
2008-02-27 | gallium: include p_util.h | Brian | |
2008-02-27 | gallium: include p_compiler.h instead of p_util.h | Brian | |
2008-02-27 | gallium: added file_max[] array to tgsi_shader_info | Brian | |
Records the highest index of a declared register. | |||
2008-02-27 | gallium: added uses_kill field to tgsi_shader_info | Brian | |
2008-02-27 | gallium: remove pipe_context->texture_create/release/get_tex_surface() | Brian | |
These functions are now per-screen, not per-context. | |||
2008-02-27 | gallium: better debug messages | Brian | |
2008-02-27 | gallium: Make headers C++ friendly. | José Fonseca | |
2008-02-27 | gallium: Replace // comments. | José Fonseca | |
2008-02-27 | gallium: Use stricter types. | José Fonseca | |
VC++ won't silently convert a pointer to a function with typed pointer arguments to one with void pointer arguments. | |||
2008-02-26 | gallium: updated prototype (missed in prev commit) | Brian | |
2008-02-26 | gallium: replace draw_convert_wide_points() with draw_wide_point_threshold() | Brian | |
Specifying a threshold size is a bit more flexible, and allows the option of converting even 1-pixel points to triangles (set threshold=0). Also, remove 0.25 pixel bias in wide_point(). | |||
2008-02-26 | gallium: Print texture target for short dumps. | Michal Krol | |
2008-02-26 | gallium: collect more shader info in tgsi_scan_shader() | Brian | |
Now getting input/output semantic info so we can eventually remove those fields from pipe_shader_state. | |||
2008-02-26 | gallium: disable debug code | Brian | |
2008-02-26 | gallium: Fix build on Windows. | Michal Krol | |
2008-02-26 | implement cache limits for cso | Zack Rusin | |
by default set to 4096, which might be on the large side | |||
2008-02-26 | add an explicit callback decleration and use it to silence warnings | Zack Rusin | |
2008-02-26 | hide cso cache definition and add some initial code for size limiting | Zack Rusin | |
the caches | |||
2008-02-26 | implement deleting of driver side cached state in cso's | Zack Rusin | |
2008-02-25 | gallium: rewrite AA point fragment shader to use a CMP instruction instead ↵ | Brian | |
of IF/ELSE/ENDIF Allows the shader to work on i915 hardware. | |||
2008-02-25 | gallium: fix bad ptr assignment | Brian | |
2008-02-25 | gallium: modify draw_find_vs_output() to search vertex shader outputs | Brian | |
This simplifies drivers using the draw module and removes the last dependency on vertex-shader "internals". Since the draw module is producing the post-transformed vertices, it makes sense to ask it where specific vertex attributes are located. This could also simplify some things in the state tracker code for selection, feedback, rasterpos... | |||
2008-02-25 | Replace standand library functions by portable ones. | José Fonseca | |