summaryrefslogtreecommitdiffstats
path: root/src/mesa
Commit message (Collapse)AuthorAgeFilesLines
* osmesa: Add osmesa.def to distribution.Matt Turner2014-12-121-1/+1
|
* x86-64: Remove calling_convention.txt.Matt Turner2014-12-121-50/+0
| | | | It just details the x86-64 calling convention. No need for this in Mesa.
* drivers/x11: Add headers to distribution.Matt Turner2014-12-121-0/+2
|
* drivers/windows: Add to distribution.Matt Turner2014-12-121-0/+1
|
* mesa: Add notes/readme files to distribution.Matt Turner2014-12-121-0/+3
|
* mesa: Add scons files to distribution.Matt Turner2014-12-125-2/+8
|
* haiku: Add files to distribution.Matt Turner2014-12-121-0/+1
|
* mesa: Add clean-local rule to remove .lib links.Matt Turner2014-12-121-0/+6
|
* xmlpool: Add $(MOS) and options.h to CLEANFILES.Matt Turner2014-12-121-0/+1
|
* dri: Add uninstall hooks to handle megadriver hardlinks.Matt Turner2014-12-121-0/+5
|
* swrast: Add headers to distribution.Matt Turner2014-12-121-1/+2
|
* r200: Add headers to distribution.Matt Turner2014-12-122-2/+31
|
* r200: Alphabetize source list.Matt Turner2014-12-121-10/+10
|
* radeon: Add headers to distribution.Matt Turner2014-12-122-2/+31
|
* radeon: Alphabetize source list.Matt Turner2014-12-121-9/+9
|
* nouveau: Add headers to distribution.Matt Turner2014-12-122-1/+30
|
* nouveau: Alphabetize source list.Matt Turner2014-12-121-10/+10
|
* i965: Add headers to distribution.Matt Turner2014-12-121-0/+47
|
* i965: Alphabetize source list.Matt Turner2014-12-121-35/+35
|
* i915: Add headers to distribution.Matt Turner2014-12-121-1/+25
|
* i915: Alphabetize source list.Matt Turner2014-12-121-23/+23
|
* program: Add lex and yacc sources to distribution.Matt Turner2014-12-121-0/+2
| | | | | Since we have manual build rules and list the .c/.cpp files in SOURCES, we need to explicitly list these for distribution.
* drivers/common: Add headers to distribution.Matt Turner2014-12-121-1/+3
|
* vbo: Add headers to distribution.Matt Turner2014-12-121-0/+8
|
* vbo: Alphabetize VBO_FILES.Matt Turner2014-12-121-6/+6
|
* tnl: Add headers to distribution.Matt Turner2014-12-121-1/+9
|
* tnl: Alphabetize TNL_FILES.Matt Turner2014-12-121-7/+7
|
* tnl_dd: Add headers to distribution.Matt Turner2014-12-121-1/+2
|
* tnl_dd: Remove dead t_dd_vb.c.Matt Turner2014-12-121-347/+0
| | | | Dead since e4344161 ("dri: Remove all DRI1 drivers").
* swrast: Add headers to distribution.Matt Turner2014-12-121-3/+37
|
* state_trackers: Add headers to distribution.Matt Turner2014-12-121-6/+45
|
* x86: Add headers to distribution.Matt Turner2014-12-121-1/+12
|
* x86-64: Add headers to distribution.Matt Turner2014-12-121-0/+1
|
* sparc: Add headers to distribution.Matt Turner2014-12-121-0/+2
|
* math: Add headers to distribution.Matt Turner2014-12-121-2/+15
|
* program: Add headers to distribution.Matt Turner2014-12-121-1/+19
|
* program: Alphabetize PROGRAM_FILES.Matt Turner2014-12-121-8/+8
|
* mesa: Remove moved texcompress_rgtc_tmp.h from source list.Matt Turner2014-12-121-1/+0
| | | | Missed in commit ebcb2ee9.
* mesa: Add headers to distribution.Matt Turner2014-12-122-4/+131
|
* mesa: Alphabetize MAIN_FILES.Matt Turner2014-12-121-9/+9
|
* include: Add remaining headers to distribution.Matt Turner2014-12-121-1/+2
|
* mesa: Add python scripts to distribution.Matt Turner2014-12-121-0/+7
|
* dri/common: Add files to distribution.Matt Turner2014-12-123-1/+7
|
* dri/common: Drop unused mmio.h.Matt Turner2014-12-121-62/+0
| | | | Unused since commit 7550a24f.
* r200: Avoid out of bounds array access.Matt Turner2014-12-121-1/+1
| | | | Reviewed-by: Ian Romanick <[email protected]>
* i965/gen8+: Remove false perf debug message about MOCSBen Widawsky2014-12-111-3/+0
| | | | | | | | | | We support MOCS on both gen8 and gen9, so the message seems meaningless. Remove it to avoid confusion. Trivial. Signed-off-by: Ben Widawsky <[email protected]> Reviewed-by: Kenneth Graunke <[email protected]>
* i965/gen8: Check correct number of blitter dwordsBen Widawsky2014-12-111-6/+6
| | | | | | | The odds of having this patch make a difference on Gen8+ are probably very low. Signed-off-by: Ben Widawsky <[email protected]> Reviewed-but-not-tested-by: Jason Ekstrand <[email protected]>
* mesa/drivers: Add missing mesautil lib to Haiku swrastAlexander von Gluck IV2014-12-111-0/+1
| | | | * Resolves missing util_format_linear_to_srgb_8unorm_table symbol.
* cso: put cso_release_all into cso_destroy_contextMarek Olšák2014-12-101-6/+2
| | | | Reviewed-by: Brian Paul <[email protected]>
* i965: Generate vs code using scalar backend for BDW+Kristian Høgsberg2014-12-106-15/+77
| | | | | | | | | | | | | | | | With everything in place, we can now use the scalar backend compiler for vertex shaders on BDW+. We make scalar vertex shaders the default on BDW+ but add a new vec4vs debug option to force the vec4 backend. No piglit regressions. Performance impact is minimal, I see a ~1.5 improvement on the T-Rex GLBenchmark case, but in general it's in the noise. Some of our internal synthetic, vs bounded benchmarks show great improvement, 20%-40% in some cases, but real-world cases are mostly unaffected. Signed-off-by: Kristian Høgsberg <[email protected]> Reviewed-by: Kenneth Graunke <[email protected]>