lib: various documentation fixes

Signed-off-by: Thomas Wood <thomas.wood@intel.com>
This commit is contained in:
Thomas Wood 2014-10-08 17:06:58 +01:00
parent 303fe742fc
commit d4e3b6a0f5
3 changed files with 6 additions and 5 deletions

View File

@ -268,6 +268,7 @@ void igt_exit(void) __attribute__((noreturn));
* igt_assert_cmpint: * igt_assert_cmpint:
* @n1: first value * @n1: first value
* @cmp: compare operator * @cmp: compare operator
* @ncmp: negated version of @cmp
* @n2: second value * @n2: second value
* *
* Fails (sub-)test if the condition is not met * Fails (sub-)test if the condition is not met

View File

@ -146,7 +146,6 @@ int igt_open_forcewake_handle(void);
/** /**
* stop_ring_flags: * stop_ring_flags:
*
* @STOP_RING_NONE: Can be used to clear the pending stop (warning: hang might * @STOP_RING_NONE: Can be used to clear the pending stop (warning: hang might
* be declared already). Returned by igt_get_stop_rings() if there is * be declared already). Returned by igt_get_stop_rings() if there is
* no currently stopped rings. * no currently stopped rings.
@ -157,7 +156,8 @@ int igt_open_forcewake_handle(void);
* @STOP_RING_ALL: All rings * @STOP_RING_ALL: All rings
* @STOP_RING_ALLOW_ERRORS: Driver will not omit expected DRM_ERRORS * @STOP_RING_ALLOW_ERRORS: Driver will not omit expected DRM_ERRORS
* @STOP_RING_ALLOW_BAN: Driver will use context ban policy * @STOP_RING_ALLOW_BAN: Driver will use context ban policy
* @STOP_RING_DEFAULT: STOP_RING_ALL | STOP_RING_ALLOW_ERRORS * @STOP_RING_DEFAULTS: STOP_RING_ALL | STOP_RING_ALLOW_ERRORS
*
* Enumeration of all supported flags for igt_set_stop_rings(). * Enumeration of all supported flags for igt_set_stop_rings().
* *
*/ */

View File

@ -286,7 +286,7 @@ gen8_fill_ps(struct intel_batchbuffer *batch,
return offset; return offset;
} }
/** /*
* gen7_fill_vertex_buffer_data populate vertex buffer with data. * gen7_fill_vertex_buffer_data populate vertex buffer with data.
* *
* The vertex buffer consists of 3 vertices to construct a RECTLIST. The 4th * The vertex buffer consists of 3 vertices to construct a RECTLIST. The 4th
@ -327,7 +327,7 @@ gen7_fill_vertex_buffer_data(struct intel_batchbuffer *batch,
return offset; return offset;
} }
/** /*
* gen6_emit_vertex_elements - The vertex elements describe the contents of the * gen6_emit_vertex_elements - The vertex elements describe the contents of the
* vertex buffer. We pack the vertex buffer in a semi weird way, conforming to * vertex buffer. We pack the vertex buffer in a semi weird way, conforming to
* what gen6_rendercopy did. The most straightforward would be to store * what gen6_rendercopy did. The most straightforward would be to store
@ -384,7 +384,7 @@ gen6_emit_vertex_elements(struct intel_batchbuffer *batch) {
GEN6_VFCOMPONENT_STORE_1_FLT << VE1_VFCOMPONENT_3_SHIFT); GEN6_VFCOMPONENT_STORE_1_FLT << VE1_VFCOMPONENT_3_SHIFT);
} }
/** /*
* gen7_emit_vertex_buffer emit the vertex buffers command * gen7_emit_vertex_buffer emit the vertex buffers command
* *
* @batch * @batch