test: don't use wiki urls for documentation comments

Also make consistent use of \ as documentation escape character.
This commit is contained in:
Anonymous Maarten
2023-02-02 00:21:53 +01:00
parent bff449eb24
commit 08bcee8570
31 changed files with 434 additions and 510 deletions

View File

@@ -113,7 +113,7 @@ quit(int rc)
} \
}
/*
/**
* Simulates desktop's glRotatef. The matrix is returned in column-major
* order.
*/
@@ -154,7 +154,7 @@ rotate_matrix(float angle, float x, float y, float z, float *r)
}
}
/*
/**
* Simulates gluPerspectiveMatrix
*/
static void
@@ -177,7 +177,7 @@ perspective_matrix(float fovy, float aspect, float znear, float zfar, float *r)
r[15] = 0.0f;
}
/*
/**
* Multiplies lhs by rhs and writes out to r. All matrices are 4x4 and column
* major. In-place multiplication is supported.
*/
@@ -202,7 +202,7 @@ multiply_matrix(const float *lhs, const float *rhs, float *r)
}
}
/*
/**
* Create shader, load in source, compile, dump debug as necessary.
*
* shader: Pointer to return created shader ID.