From: Matt Turner Date: Sat, 27 Feb 2016 19:19:41 +0000 (-0800) Subject: docs: Remove descriptions of long dead Emit* fields. X-Git-Tag: upstream/17.1.0~12227 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7fe206da28f39ba94990873da1d4a5c85a218c07;p=platform%2Fupstream%2Fmesa.git docs: Remove descriptions of long dead Emit* fields. Dead since commit d8a366200 in 2010. Reviewed-by: Kenneth Graunke Reviewed-by: Ian Romanick Acked-by: Brian Paul --- diff --git a/docs/shading.html b/docs/shading.html index e9fe3dd..df23694 100644 --- a/docs/shading.html +++ b/docs/shading.html @@ -222,34 +222,17 @@ struct gl_shader_state { ... /** Driver-selectable options: */ - GLboolean EmitHighLevelInstructions; GLboolean EmitCondCodes; - GLboolean EmitComments; };
-
EmitHighLevelInstructions
-
-This option controls instruction selection for loops and conditionals. -If the option is set high-level IF/ELSE/ENDIF, LOOP/ENDLOOP, CONT/BRK -instructions will be emitted. -Otherwise, those constructs will be implemented with BRA instructions. -
-
EmitCondCodes
If set, condition codes (ala GL_NV_fragment_program) will be used for branching and looping. Otherwise, ordinary registers will be used (the IF instruction will examine the first operand's X component and do the if-part if non-zero). -This option is only relevant if EmitHighLevelInstructions is set. -
- -
EmitComments
-
-If set, instructions will be annotated with comments to help with debugging. -Extra NOP instructions will also be inserted.