aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* winsys/r600: share the source listChia-I Wu2011-08-253-13/+10
* r600g: share the source listChia-I Wu2011-08-253-31/+19
* glsl: Make sure that Extensions.dummy_true is set to trueIan Romanick2011-08-241-0/+2
* vbo: remove unused var, remove unneeded local varBrian Paul2011-08-241-4/+1
* llvmpipe: add more restrict keywordsBrian Paul2011-08-241-4/+4
* swrast: Remove swrast eject/validate texture image code.Brian Paul2011-08-241-79/+0
* radeon: Fix flushing before writing a teximage's BO when !t->bo.Eric Anholt2011-08-241-12/+12
* st/mesa: remove st_texture_image::face,level fieldsBrian Paul2011-08-244-23/+17
* intel: use new gl_texture_image:Face, Level fieldsBrian Paul2011-08-249-51/+34
* mesa: add gl_texture_image::Face, Level fieldsBrian Paul2011-08-242-0/+5
* x11: add missing comma to fix compilationBrian Paul2011-08-241-1/+1
* r600g: fill out missing entries in opcode tables.Dave Airlie2011-08-241-0/+36
* winsys/svga: use os_mmap() for memory mappingChia-I Wu2011-08-241-5/+6
* winsys/radeon: use os_mmap() for memory mappingChia-I Wu2011-08-241-3/+3
* auxiliary/os: add wrappers for mmap/munmapChia-I Wu2011-08-241-0/+87
* i965: Only map the necessary buffer range in brw_prepare_indicesIan Romanick2011-08-231-3/+2
* tnl: Only map the necessary buffer range in bind_indicesIan Romanick2011-08-231-5/+21
* mesa: Only map the necessary buffer range in vbo_get_minmax_indexIan Romanick2011-08-231-4/+19
* mesa: Eliminate dd_function_table::MapBufferIan Romanick2011-08-2324-267/+123
* radeon: Hack up an implementation of MapBufferRangeIan Romanick2011-08-231-0/+33
* mesa: Fix incorrect access parameter passed to MapBufferIan Romanick2011-08-232-6/+2
* mesa: Remove target parameter from dd_function_table::FlushMappedBufferRangeIan Romanick2011-08-235-8/+6
* intel: Correctly check for read-only mappings in intel_bufferobj_map_rangeIan Romanick2011-08-231-1/+3
* mesa: Remove target parameter from dd_function_table::MapBufferRangeIan Romanick2011-08-236-11/+7
* mesa: Remove target parameter from dd_function_table::GetBufferSubDataIan Romanick2011-08-237-10/+6
* mesa: Remove target parameter from dd_function_table::BufferSubDataIan Romanick2011-08-236-8/+5
* mesa: Remove target parameter from dd_function_table::MapBufferIan Romanick2011-08-2324-69/+40
* mesa: Remove target parameter from dd_function_table::UnmapBufferIan Romanick2011-08-2326-75/+53
* make: Add missing source file.José Fonseca2011-08-231-0/+1
* i965: Fix typo in 2b224d66a01f3ce867fb05558b25749705bbfe7aEric Anholt2011-08-231-1/+1
* i965/gen6+: Use non-normalized coordinates for GL_TEXTURE_RECTANGLE.Eric Anholt2011-08-234-2/+19
* i965: Implement textureSize (TXS) on Gen4.Kenneth Graunke2011-08-233-6/+23
* i965/fs: Implement textureSize (TXS) on Gen5+.Kenneth Graunke2011-08-236-10/+35
* i965/fs: Rudimentary support for non-floating point texture results.Kenneth Graunke2011-08-231-1/+1
* glsl/builtins: Uncomment textureSize prototypes.Kenneth Graunke2011-08-232-4/+0
* texture_builtins.py: Add support for textureSize (txs).Kenneth Graunke2011-08-231-14/+36
* glsl: Add a new ir_txs (textureSize) opcode to ir_texture.Kenneth Graunke2011-08-2311-36/+65
* st/xorg: Advertise support for XvMCMaarten Lankhorst2011-08-234-0/+129
* mesa: call _mesa_set_vp_override in glDrawTex*Chia-I Wu2011-08-231-0/+4
* auxiliary: share the source listsChia-I Wu2011-08-234-591/+207
* glsl: Make ir_validate actually visit ir_if nodes.Kenneth Graunke2011-08-221-2/+3
* intel: Abort when DRI2 separate stencil handshake failsChad Versace2011-08-221-0/+7
* glsl_to_tgsi: Fix a few more struct vs. class warnings.Kenneth Graunke2011-08-211-5/+5
* glsl_to_tgsi: emit a MAD(b, -a, b) for !a && bBryan Cain2011-08-201-0/+52
* glsl_to_tgsi: fix typoBryan Cain2011-08-201-1/+1
* glsl_to_tgsi: implement ir_binop_all_equal using DP4 w/SGEBryan Cain2011-08-201-1/+19
* glsl_to_tgsi: implement ir_binop_any_nequal using DP4 w/saturate or DP4 w/SLTBryan Cain2011-08-201-2/+23
* glsl_to_tgsi: implement ir_unop_any using DP4 w/saturate or DP4 w/SLTBryan Cain2011-08-201-4/+28
* glsl_to_tgsi: make glsl_to_tgsi_visitor::emit_dp return the instructionBryan Cain2011-08-201-7/+7
* glsl_to_tgsi: implement ir_binop_logic_or using an add w/saturate or add w/SLTBryan Cain2011-08-201-4/+27