Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-12-08 | Simplify the redundant meaning of format layout. | Michal Krol | |
We really just need to know whether the format is compressed or not. For more detailed information format colorspace should suffice. | |||
2009-12-08 | Format layout cannot be used to distinguish scaled/normalised formats. | Michal Krol | |
2009-12-08 | util/format: Take advantage of sequential nature of pipe_format enum. | Michal Krol | |
Make sure the format descriptor table can be indexed directly. | |||
2009-12-08 | gallium: Make pipe_format a sequential enum. | Michal Krol | |
2009-12-08 | util/format: Remove unreferenced local. | Michal Krol | |
2009-12-08 | Remove remaining pipe format utility functions. | Michal Krol | |
Depricate pf_type(), pf_size_*(), pf_layout() and pf_exp2(). Map depricated PIPE_FORMAT_TYPE to new UTIL_FORMAT_ values: UNKNOWN = TYPE_VOID UNORM = TYPE_UNSIGNED + LAYOUT_ARITH SNORM = TYPE_SIGNED + LAYOUT_ARITH FIXED = TYPE_FIXED FLOAT = TYPE_FLOAT USCALED = TYPE_UNSIGNED + LAYOUT_ARRAY SSCALED = TYPE_SIGNED + LAYOUT_ARRAY SRGB = TYPE_COLORSPACE_SRGB | |||
2009-12-03 | Remove pf_swizzle_* internal macros. | Michal Krol | |
2009-12-03 | gallium: Remove pf_mixed_*(). | Michal Krol | |
2009-12-03 | gallium: Remove pf_rev(). | Michal Krol | |
2009-12-03 | Move pf_get_component_bits() to u_format auxiliary module. | Michal Krol | |
2009-12-03 | Move pf_get_bits/size() to u_format auxiliary module. | Michal Krol | |
2009-12-03 | Move pf_get_block() to u_format auxiliary module. | Michal Krol | |
2009-12-03 | Move pf_is_depth_and_stencil() to u_format auxiliary module. | Michal Krol | |
2009-12-03 | Move pf_is_depth_stencil() to u_format auxiliary module. | Michal Krol | |
2009-12-03 | Move pf_is_compressed() to u_format auxiliary module. | Michal Krol | |
2009-12-03 | gallium: Remove unused format functions. | Michal Krol | |
2009-12-03 | tgsi/ureg: Fix ureg_emit_src(). | Michal Krol | |
2009-12-02 | radeong: Clean up some bad code. | Corbin Simpson | |
2009-12-02 | radeong: Add helper to determine pipe driver. | Corbin Simpson | |
2009-12-02 | radeong: Do ioctls before selecting pipe driver. | Corbin Simpson | |
2009-12-02 | r300g, radeong: De-specialize r300_winsys into radeon_winsys. | Corbin Simpson | |
There's like five good reasons for this, I swear. | |||
2009-12-02 | radeong: Change ioctl order, document it. | Corbin Simpson | |
2009-12-02 | r300g: No vertex textures here. | Corbin Simpson | |
2009-12-02 | cso: check if pipe_context::bind_vertex_sampler_states is non-null | Brian Paul | |
Fixes segfaults upon exit when the CSO module is releasing its objects. | |||
2009-12-02 | Revert "llvmpipe: plug in dummy pipe_context::set_vertex_sampler_textures ↵ | Brian Paul | |
function" This reverts commit 792888121b92913733daec7526c9441f27ce1231. We're instead returning 0 for the PIPE_CAP_MAX_VERTEX_TEXTURE_UNITS query. | |||
2009-12-02 | llvmpipe: return 0 for PIPE_CAP_MAX_VERTEX_TEXTURE_UNITS query | Brian Paul | |
The driver (and draw module) don't support vertex shader textures yet. | |||
2009-12-02 | llvmpipe: plug in dummy pipe_context::set_vertex_sampler_textures function | Brian Paul | |
Fixes immediate segfault. | |||
2009-12-02 | cell: fix TGSI breakage | Brian Paul | |
2009-12-02 | gallium/util: __builtin_bswap32() is in only gcc 4.3 or later | Brian Paul | |
2009-12-02 | gallium/util: added PIPE_CC_GCC_VERSION symbol | Brian Paul | |
2009-12-01 | mesa: added comment for target_enum_to_index() | Brian Paul | |
2009-12-01 | softpipe: setup machine->Face without a conditional | Brian Paul | |
2009-12-01 | tgsi: fix ureg emit after version token change | Keith Whitwell | |
2009-12-01 | st/xorg: fix merge droppings | Keith Whitwell | |
These were stranded in emacs and not saved before committing. | |||
2009-12-01 | Merge commit 'origin/tgsi-simplify-ext' | Keith Whitwell | |
Conflicts: src/gallium/drivers/r300/r300_vs.c | |||
2009-12-01 | Merge commit 'origin/mesa_7_7_branch' | Keith Whitwell | |
Conflicts: src/gallium/drivers/svga/svga_screen_texture.c src/gallium/state_trackers/xorg/xorg_composite.c src/gallium/state_trackers/xorg/xorg_exa.c src/gallium/state_trackers/xorg/xorg_renderer.c src/gallium/state_trackers/xorg/xorg_xv.c src/mesa/main/texgetimage.c src/mesa/main/version.h | |||
2009-12-01 | mesa: Update vertex texture code after gallium changes. | Michal Krol | |
2009-12-01 | r300g: simplify allocations of VS output registers | Marek Olšák | |
No need to parse TGSI tokens since it's easier to walk through shader semantics. Also fog coordinates now work reliably. | |||
2009-12-01 | r300g: simplify allocations of FS input registers | Marek Olšák | |
2009-12-01 | r300g: clean up derived states | Marek Olšák | |
The state setups which aren't derived anymore have been moved to the VS and FS objects. | |||
2009-12-01 | r300g: VS->FS attribute routing rework | Marek Olšák | |
Now it always correctly pairs up VS and FS even if the semantics and indices of VS outputs and FS inputs don't match. | |||
2009-12-01 | r300g: add R300 prefix in reg definitions | Marek Olšák | |
2009-12-01 | cso: Fix function prototype. | Michal Krol | |
2009-12-01 | trace: Implement separate vertex sampler state. | Michal Krol | |
2009-12-01 | fo: Implement separate vertex sampler state. | Michal Krol | |
2009-12-01 | id: Implement separate vertex sampler state. | Michal Krol | |
2009-12-01 | trace: Reduce double semicolons to single ones. | Michal Krol | |
2009-12-01 | sp: Do not falsely advertise support for some SNORM formats. | Michal Krol | |
2009-12-01 | sp: Implement separate vertex sampler state. | Michal Krol | |
2009-12-01 | python: Update for renamed sampler/texture state setters. | Michal Krol | |