summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* draw: Simplify frontend interface a little.Chia-I Wu2010-08-165-21/+11
| | | | | The run method is simplified to take the start vertex and the vertex count.
* draw: Add prim flags to middle ends.Chia-I Wu2010-08-167-26/+46
| | | | | Update the middle end interface to pass the primitive flags from the frontends to the pipeline. No frontend sets the flags yet.
* draw: Add flags to draw_prim_info.Chia-I Wu2010-08-169-11/+36
| | | | | | | | | A primitive may be splitted in frontends. The splitted primitives should convey certain flag bits so that the decomposer can correctly decide the stipple or edge flags. This commit adds flags to draw_prim_info and updates the decomposer to honor the flags. Frontends and middle ends will be updated later.
* st/mesa: test for FEATURE definesnobled2010-08-161-0/+2
| | | | | | | | | 'struct dd_function_table' only conditionally contains the function pointer NewFramebuffer and friends based on FEATURE_EXT_framebuffer_* defines. (See src/mesa/main/dd.h) Fixes the build when the features are disabled and the vfuncs don't exist.
* dri/nouveau: test for FEATURE definesnobled2010-08-162-0/+4
| | | | | | | | | 'struct dd_function_table' only conditionally contains the function pointer NewFramebuffer and friends based on FEATURE_EXT_framebuffer_* defines. (See src/mesa/main/dd.h) Fixes the build when the features are disabled and the vfuncs don't exist.
* dri/radeon: test for FEATURE definesnobled2010-08-161-0/+4
| | | | | | | | | 'struct dd_function_table' only conditionally contains the function pointer NewFramebuffer and friends based on FEATURE_EXT_framebuffer_* defines. (See src/mesa/main/dd.h) Fixes the build when the features are disabled and the vfuncs don't exist.
* x86: Remove unnecessary header from sse.h.Vinson Lee2010-08-161-2/+0
|
* x86: Include missing headers in mmx.h.Vinson Lee2010-08-151-0/+3
| | | | | Include compiler.h for _ASMAPI symbol. Include mtypes.h for GLcontext symbol.
* x86: Remove unnecessary header from 3dnow.h.Vinson Lee2010-08-151-2/+0
|
* glsl: Clean up header file inclusion in slang_typeinfo.h.Vinson Lee2010-08-151-3/+1
| | | | | Remove imports.h, mtypes.h, and slang_vartable.h. Include glheader.h for GL symbols.
* glsl: Include missing header in slang_codegen.h.Vinson Lee2010-08-151-0/+1
| | | | Include slang_vartable.h for slang_var_table symbol.
* glsl: Include missing header in slang_compile_operation.h.Vinson Lee2010-08-151-0/+1
| | | | Include compiler.h for INLINE symbol.
* glsl: Clean up header file inclusion in slang_storage.h.Vinson Lee2010-08-151-1/+6
| | | | | | | | | | Remove slang_compile.h. Include glheader.h for GL symbols. Include slang_compile_function.h for slang_function_scope symbol. Include slang_compile_struct.h for slang_struct_scope symbol. Include slang_compile_variable.h for slang_variable_scope symbol. Include slang_typeinfo.h for slang_type_specifier symbol. Include slang_utility.h for slang_atom_pool symbol.
* glsl: Clean up header file inclusion in slang_mem.h.Vinson Lee2010-08-152-1/+2
| | | | | | | | | slang_mem.h Remove imports.h. Include glheader.h for GL symbols. slang_label.c Include imports.h now that slang_mem.c does not include it.
* glsl: Clean up header file inclusion in slang_ir.h.Vinson Lee2010-08-151-3/+3
| | | | | | Remove imports.h and slang_compile.h. Include glheader.h for GL symbols. Include slang_compile_variable.h for slang_variable symbol.
* glsl: Include missing header in slang_link.c.Vinson Lee2010-08-151-0/+1
| | | | Include slang_compile.h for _slang_compile function.
* glsl: Include missing headers in slang_builtin.c.Vinson Lee2010-08-151-1/+3
| | | | | Include slang_typeinfo.h for slang_type_specifier symbol. Include slang_compiler_struct.h for slang_struct_ symbol.
* r300g: fix an invalid pointer in freeMarek Olšák2010-08-161-1/+1
|
* r300g: Let hyperz init failnobled2010-08-163-6/+20
| | | | Signed-off-by: Marek Olšák <[email protected]>
* r300g: Fix leaks in failed context creationnobled2010-08-161-34/+48
| | | | | | | | | | | This changes r300_destroy_context() so it can be called on a partially-initialized context, and uses it when r300_create_context() hits a fatal error. This makes sure r300_create_context() doesn't leak memory or neglect to call r300_update_num_contexts() when it fails. Signed-off-by: Marek Olšák <[email protected]>
* r300g: Fix macronobled2010-08-161-1/+3
| | | | | | | This fixes a potential bug if (has_hyperz) is false (it would still init the atom as if has_hyperz were true). Signed-off-by: Marek Olšák <[email protected]>
* r300/compiler: implement DP2 opcodeMarek Olšák2010-08-164-10/+48
|
* r300/compiler: implement SSG opcodeMarek Olšák2010-08-164-1/+85
|
* r300/compiler: fix allocation of temporaries in radeonTransformTEXMarek Olšák2010-08-161-2/+6
|
* llvmpipe: special case triangles which fall in a single 16x16 blockKeith Whitwell2010-08-153-0/+106
| | | | | Check for these and route them to a dedicated handler with one fewer levels of recursive rasterization.
* llvmpipe: consolidate several loops in lp_rast_triangleKeith Whitwell2010-08-151-18/+15
|
* llvmpipe: remove all traces of step arrays, pos_tablesKeith Whitwell2010-08-153-114/+0
| | | | | No need to calculate these values any longer, nor to store them in the bin data. Improves isosurf a bit more, 115->123 fps.
* llvmpipe: eliminate last usage of step array in rast_tmp.hKeith Whitwell2010-08-152-16/+57
| | | | | | | | | | | | For 16 and 64 pixel levels, calculate a mask which is linear in x and y (ie not in the swizzle layout). When iterating over full and partial masks, figure out position by manipulating the bit number set in the mask, rather than relying on postion arrays. Similarly, calculate the lower-level c values from dcdx, dcdy and the position rather than relying on the step array.
* llvmpipe: don't refer to plane->step when dcdx or dcdy would doKeith Whitwell2010-08-151-6/+6
|
* llvmpipe: also use build_mask at 16, 64 pixel levelsKeith Whitwell2010-08-151-28/+19
|
* llvmpipe: version of block4 which doesn't need the full step arrayKeith Whitwell2010-08-152-7/+27
| | | | No noticable slowdown with isosurf.
* llvmpipe: reorganize block4 loop, nice speedupKeith Whitwell2010-08-152-12/+19
| | | | | isosurf 95->115 fps just by exchanging the two inner loops in this function...
* gallium/docs: Cleanup debugging. Spelling, grammar, organization.Corbin Simpson2010-08-151-25/+30
|
* gallium/docs: Add formatting for envvar role; change debugging.Corbin Simpson2010-08-154-30/+44
| | | | | Per Jakob's request. Not super-pretty, but it's a good point for modding later.
* glsl: Fix self inclusion in slang_compile_function.h.Vinson Lee2010-08-151-1/+0
| | | | | Fix self inclusion introduced by commit 4fef77c7c5455b983daa93cacf90d2b3baa3967e.
* glsl: Include missing header in slang_ir.h.Vinson Lee2010-08-151-0/+1
| | | | Include prog_instruction.h for gl_inst_opcode symbol.
* glsl: Clean up header file inclusion in slang_link.h.Vinson Lee2010-08-151-1/+1
| | | | | Remove slang_compile.h. Include mtypes.h for GLcontext symbol.
* glsl: Clean up header file inclusion in slang_label.h.Vinson Lee2010-08-152-3/+4
| | | | | | Move mtypes.h and prog_instruction.h to slang_label.c. Remove imports.h. Include glheader.h from GL symbols.
* r300g: mark HiZ/ZMask_clear atoms as non-dirty after emission in clearMarek Olšák2010-08-151-1/+4
|
* glsl: Clean up header file inclusion in slang_emit.h.Vinson Lee2010-08-141-4/+2
| | | | | | | | Remove imports.h. Remove mtypes.h. Remove slang_compile.h. Include glheader.h for GL symbols. Include slang_vartable.h for slang_var_table symbol.
* glsl: Clean up header file inclusion in slang_compile.h.Vinson Lee2010-08-141-5/+6
| | | | | | | | Remove imports.h. Remove slang_typeinfo.h. Remove slang_compile_operation.h. Include glheader.h for GL symbols. Include slang_utility.h for slang_atom_pool symbol.
* glsl: Include missing headers in slang_compile_struct.h.Vinson Lee2010-08-141-0/+3
| | | | | Include glheader.h for GL symbols. Include slang_utility.h for slang_atom symbol.
* r300g: do not use HiZ if HiZ RAM is not properly initializedMarek Olšák2010-08-155-18/+23
|
* r300g: rename dirty_zmask -> zmask_in_useMarek Olšák2010-08-155-13/+13
|
* r300g: do not clear with blitter if we clear just the ZMask RAMMarek Olšák2010-08-151-9/+37
| | | | | This skips the blitter clear path entirely if the color is not cleared and the depth+stencil is cleared with the ZMask.
* r300g: do not use fastfill if ZMask RAM is not properly initializedMarek Olšák2010-08-154-18/+31
| | | | z_fastfill -> dirty_zmask[level].
* r300g: separate num_cs_end_dwords out from prepare_for_renderingMarek Olšák2010-08-153-24/+25
|
* glsl: Include missing headers in slang_print.h.Vinson Lee2010-08-141-0/+6
| | | | | | | | Include glheader.h for GL symbols. Include slang_compile_function.h for slang_function symbol. Include slang_compile_operation.h for slang_operation symbol. Include slang_compile_variable.h for slang_variable and slang_variable_scope symbols. Include slang_typeinfo.h for slang_type_qualifer and slang_fully_specified_type symbols.
* glsl: Include missing headers in slang_compile_function.hVinson Lee2010-08-141-0/+9
| | | | | | | | | | Include glheader.h for GL symbols. Include slang_compile_function.h for slang_function symbol. Include slang_compile_operation.h for slang_operation symbol. Include slang_compile_variable.h for slang_variable and slang_variable_scope symbols. Include slang_log.h for slang_info_log symbols. Include slang_utility.h for slang_atom and slang_atom_pool symbols.
* glsl: Include missing headers in slang_compiler_operation.h.Vinson Lee2010-08-141-0/+4
| | | | | | Include glheader.h for GL symbols. Include slang_compile_variable.h for slang_variable_scope symbol. Include slang_utility.h for slang_atom symbol.