tint: More doxygen fixes
Change-Id: I46d73d760e3f78fb374cffe003668f29f4bcbe1e Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/86380 Reviewed-by: Antonio Maiorano <amaiorano@google.com> Commit-Queue: Ben Clayton <bclayton@google.com>
This commit is contained in:
parent
2bdabc748f
commit
262a4c4824
|
@ -68,7 +68,8 @@ enum class EdgeKind {
|
|||
kForward
|
||||
};
|
||||
|
||||
enum : uint32_t { kInvalidBlockPos = ~(0u) };
|
||||
/// The number used to represent an invalid block position
|
||||
static constexpr uint32_t kInvalidBlockPos = ~0u;
|
||||
|
||||
/// Bookkeeping info for a basic block.
|
||||
struct BlockInfo {
|
||||
|
|
|
@ -67,7 +67,6 @@ struct SanitizedResult {
|
|||
};
|
||||
|
||||
/// Sanitize a program in preparation for generating HLSL.
|
||||
/// @program The program to sanitize
|
||||
/// @param program the input program
|
||||
/// @param options The HLSL generator options.
|
||||
/// @returns the sanitized program and any supplementary information
|
||||
|
|
Loading…
Reference in New Issue