Fixed ordering of custom pages in doxygen's sidebar

Apparently it's alphabetical and based on the order in which the files are specified in INPUT
This commit is contained in:
Graham Pentheny
2024-01-06 16:57:22 -05:00
parent cc131d8261
commit f974101ec6
4 changed files with 5 additions and 6 deletions

View File

@@ -74,7 +74,7 @@ vcpkg install recast
Recast and Detour strive to avoid heap allocations whenever possible. In the cases where they are needed, all allocations are routed through allocation functions that by default just wrap `malloc` and `free`. Additionally, the `rcAllocHint` enum gives some coarse-grained information about the intended lifetime of the allocation.
You can specify your own `rcAlloocFunc` and `rcFreeFunc` in `RecastAlloc.cpp` (and similarly in `DetourAlloc.cpp`) to tune heap usage to your specific needs.
You can specify your own `rcAllocFunc` and `rcFreeFunc` in `RecastAlloc.cpp` (and similarly in `DetourAlloc.cpp`) to tune heap usage to your specific needs.
## A Note on DLL exports and C API

View File

@@ -8,7 +8,7 @@ If you're excited about contributing to Recast or want to understand what its fu
### Documentation & Web Presence (WIP)
- ✅ **Project website** (GitHub pages). A home for docs, info, tutorials, etc. that's easy to find and navigate. There's stuff like the wiki system in GitHub that can serve this purpose, but it's not the greatest.
- ✅**Hosted API Reference**: We have extensive doxygen docs that we should also host on github pages. Ideally this would be implemented as a job for the CI process.
- ✅ **Hosted API Reference**: We have extensive doxygen docs that we should also host on github pages. Ideally this would be implemented as a job for the CI process.
- **High-level design/overview**. Basically taking a lot of the "how does Recast work?" docs we have (and stuff on Mikko's blog) and surfacing them in a place that's easier to find. e.g. [this information](http://digestingduck.blogspot.com/2010/02/slides-from-past.html) should be integrated to the documentation.
- **FAQ** to include answers to common questions like "can I use Recast on a spherical world?" etc. The small group of questions that come up often.
- **Expand on configuration parameter docstrings**. Expand on the docstrings for the fields in `rcConfig`.

View File

@@ -949,10 +949,9 @@ WARN_LOGFILE =
# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
# Note: If this tag is empty the current directory is searched.
INPUT = . \
README.md \
CONTRIBUTING.md \
CODE_OF_CONDUCT.md \
INPUT = README.md \
Docs \
. \
DetourCrowd \
DetourTileCache \
Recast \