mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-06-06 22:53:35 +00:00
Documentation fixes
Change-Id: I8359c402819ed475663385b3bd850f0ae209cdf4 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/18421 Reviewed-by: David Neto <dneto@google.com>
This commit is contained in:
parent
0534957e78
commit
a085c7bbe2
@ -61,6 +61,7 @@ class Literal {
|
|||||||
|
|
||||||
protected:
|
protected:
|
||||||
/// Constructor
|
/// Constructor
|
||||||
|
/// @param type the type of the literal
|
||||||
explicit Literal(ast::type::Type* type);
|
explicit Literal(ast::type::Type* type);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
@ -30,6 +30,7 @@ class Context {
|
|||||||
/// Resets the state of this context.
|
/// Resets the state of this context.
|
||||||
void Reset();
|
void Reset();
|
||||||
|
|
||||||
|
/// @returns the Type Manager
|
||||||
TypeManager& type_mgr() { return type_mgr_; }
|
TypeManager& type_mgr() { return type_mgr_; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
@ -50,7 +50,9 @@ class Operand {
|
|||||||
~Operand();
|
~Operand();
|
||||||
|
|
||||||
/// Copy assignment
|
/// Copy assignment
|
||||||
Operand& operator=(const Operand&) = default;
|
/// @param b the operand to copy
|
||||||
|
/// @returns a copy of this operand
|
||||||
|
Operand& operator=(const Operand& b) = default;
|
||||||
|
|
||||||
/// Sets the float value
|
/// Sets the float value
|
||||||
/// @param val the value to set
|
/// @param val the value to set
|
||||||
|
Loading…
x
Reference in New Issue
Block a user