From: Christoph Bill Date: Wed, 9 May 2007 18:25:12 +0000 (+0000) Subject: r300: Added a few more Doxygen comments. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3c9e5cb0bda24b73b4e02fc1dbe77ac9c6aed426;p=mesa.git r300: Added a few more Doxygen comments. --- diff --git a/src/mesa/drivers/dri/r300/r300_cmdbuf.h b/src/mesa/drivers/dri/r300/r300_cmdbuf.h index 9ef1cdbe622..3c336e1589b 100644 --- a/src/mesa/drivers/dri/r300/r300_cmdbuf.h +++ b/src/mesa/drivers/dri/r300/r300_cmdbuf.h @@ -27,9 +27,10 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. **************************************************************************/ -/* - * Authors: - * Nicolai Haehnle +/** + * \file + * + * \author Nicolai Haehnle */ #ifndef __R300_CMDBUF_H__ @@ -50,6 +51,8 @@ extern void r300EmitAOS(r300ContextPtr rmesa, GLuint nr, GLuint offset); /** * Make sure that enough space is available in the command buffer * by flushing if necessary. + * + * \param dwords The number of dwords we need to be free on the command buffer */ static __inline__ void r300EnsureCmdBufSpace(r300ContextPtr r300, int dwords, const char *caller) diff --git a/src/mesa/drivers/dri/r300/r300_fragprog.c b/src/mesa/drivers/dri/r300/r300_fragprog.c index 556e3041ed7..4bc4320f988 100644 --- a/src/mesa/drivers/dri/r300/r300_fragprog.c +++ b/src/mesa/drivers/dri/r300/r300_fragprog.c @@ -31,13 +31,13 @@ * Jerome Glisse */ -/*TODO'S +/** + * \todo Depth write, WPOS/FOGC inputs + * + * \todo FogOption * - * - Depth write, WPOS/FOGC inputs - * - FogOption - * - Verify results of opcodes for accuracy, I've only checked them - * in specific cases. - * - and more... + * \todo Verify results of opcodes for accuracy, I've only checked them in + * specific cases. */ #include "glheader.h"