Fixup some doc and compile issues.
Change-Id: I75547e3fb4e1e4be08bde08f0bcfcf7e979791e7 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/25640 Reviewed-by: dan sinclair <dsinclair@chromium.org>
This commit is contained in:
parent
591fe919c2
commit
095523020a
2
Doxyfile
2
Doxyfile
|
@ -986,7 +986,7 @@ FILTER_SOURCE_PATTERNS =
|
||||||
# (index.html). This can be useful if you have a project on for instance GitHub
|
# (index.html). This can be useful if you have a project on for instance GitHub
|
||||||
# and want to reuse the introduction page also for the doxygen output.
|
# and want to reuse the introduction page also for the doxygen output.
|
||||||
|
|
||||||
USE_MDFILE_AS_MAINPAGE = README.md
|
USE_MDFILE_AS_MAINPAGE = ./README.md
|
||||||
|
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
# Configuration options related to source browsing
|
# Configuration options related to source browsing
|
||||||
|
|
|
@ -209,7 +209,7 @@ struct DefInfo {
|
||||||
/// The SPIR-V instruction that defines the ID.
|
/// The SPIR-V instruction that defines the ID.
|
||||||
const spvtools::opt::Instruction& inst;
|
const spvtools::opt::Instruction& inst;
|
||||||
/// The position of the block that defines this ID, in the function block
|
/// The position of the block that defines this ID, in the function block
|
||||||
/// order. See method |FunctionEmitter::ComputeBlockOrderAndPositions|
|
/// order. See method `FunctionEmitter::ComputeBlockOrderAndPositions`
|
||||||
const uint32_t block_pos = 0;
|
const uint32_t block_pos = 0;
|
||||||
|
|
||||||
/// An index for uniquely and deterministically ordering all DefInfo records
|
/// An index for uniquely and deterministically ordering all DefInfo records
|
||||||
|
|
|
@ -59,7 +59,6 @@ class TypeDeterminerHelper {
|
||||||
: td_(std::make_unique<TypeDeterminer>(&ctx_, &mod_)) {}
|
: td_(std::make_unique<TypeDeterminer>(&ctx_, &mod_)) {}
|
||||||
|
|
||||||
TypeDeterminer* td() const { return td_.get(); }
|
TypeDeterminer* td() const { return td_.get(); }
|
||||||
ast::Module* mod() { return &mod_; }
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Context ctx_;
|
Context ctx_;
|
||||||
|
|
Loading…
Reference in New Issue