-
-
Notifications
You must be signed in to change notification settings - Fork 37
[RFC] citro3d documentation #54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
oreo639
wants to merge
16
commits into
devkitPro:master
Choose a base branch
from
oreo639:c3d-docs
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
33e7995
docs: update doxyfile
oreo639 d0c51f6
docs: inital base documentation
oreo639 64eaddb
docs: add documentation for citro3d centeral header
oreo639 9760c32
docs: inital attribs documentation
oreo639 f99602f
docs: inital buffers documentation
oreo639 cfe9bd4
docs: add doc header to maths
oreo639 4ed5105
docs: updates types documentation
oreo639 6e1ea6c
docs: inital framebuffer documentation
oreo639 ce94033
docs: inital renderqueue documentation
oreo639 5a9f95d
docs: inital uniforms documentation
oreo639 55ece4d
docs: inital texture documentation
oreo639 6917401
docs: inital texenv documentation
oreo639 f479c82
docs: inital effect documentation
oreo639 d7079dd
docs: initial light documentation
oreo639 f24c24a
docs: initial lightlut documentation
oreo639 7ceed00
docs: use github actions for generating documentation
oreo639 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| name: Deploy site | ||
|
|
||
| on: | ||
| push: | ||
| branches: [ c3d-docs ] | ||
|
|
||
| jobs: | ||
| doc-deploy: | ||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| with: | ||
| persist-credentials: false | ||
|
|
||
| - name: Set up Doxygen | ||
| run: sudo apt install doxygen | ||
|
|
||
| - name: Display Doxygen version | ||
| run: echo "Doxygen version $(doxygen -v)" | ||
|
|
||
| - name: Generate libctru tags | ||
| run: | | ||
| git clone --branch=master --single-branch --depth 1 https://github.com/devkitPro/libctru | ||
| cd libctru/libctru | ||
| doxygen | ||
|
|
||
| - name: Build documentation | ||
| run: CTRU_DOCPATH="https://libctru.devkitpro.org/" doxygen | ||
|
|
||
| - name: Deploy 🚀 | ||
| uses: JamesIves/github-pages-deploy-action@3.7.1 | ||
| with: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| BRANCH: gh-pages # The branch the action should deploy to. | ||
| FOLDER: docs/html # The folder the action should deploy. | ||
| CLEAN: true # Automatically remove deleted files from the deploy branch | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,15 +1,18 @@ | ||
| .*/ | ||
| !.github/ | ||
| *~ | ||
| *.3dsx | ||
| *.elf | ||
| *.exe | ||
| *.smdh | ||
| *.tar.bz2 | ||
| *.tag | ||
| Thumbs.db | ||
| build/ | ||
| deps/ | ||
| release/ | ||
| debug/ | ||
| lib/ | ||
| bin/ | ||
| doc/ | ||
| docs/ | ||
| libctru/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,64 @@ | ||
| # Changelog | ||
|
|
||
| ## Version 1.7.0 | ||
|
|
||
| - Implement VRAM bank awareness for rendertarget allocations | ||
| - Further improvements to overall system stability and other minor adjustments have been made to enhance the user experience. | ||
|
|
||
| ## Version 1.6.2 | ||
|
|
||
| - Added C3D_RenderTargetDetachOutput (called automatically on render target destroy) | ||
|
|
||
| ## Version 1.6.1 | ||
|
|
||
| - Pause the VBlank counters while the application is suspended | ||
| - Use gfxScreenSwapBuffers; implement left->right eye duplication with it | ||
| - Further improvements to overall system stability and other minor adjustments have been made to enhance the user experience. | ||
|
|
||
| ## Version 1.6.0 | ||
|
|
||
| - Simplified internal render queue framebuffer transfer system | ||
| - Removed long-since obsolete flush functions | ||
| - Further improvements to overall system stability and other minor adjustments have been made to enhance the user experience. | ||
|
|
||
| ## Version 1.5.0 | ||
|
|
||
| - Removed deprecated functionality (C3D_RenderTargetSetClear, C3D_SafeDisplayTransfer, C3D_SafeTextureCopy, C3D_SafeMemoryFill, TexEnv_Init, C3D_TexEnvOp). | ||
| - Added experimental gas support. | ||
| - Added logic to make sure that the framebuffer is flushed/reinitialized before changing program. | ||
|
|
||
| ## Version 1.4.0 | ||
|
|
||
| - Added an interface for loading .t3x files generated by tex3ds | ||
| - TexEnv code was revamped and cleaner as to provide better error checking through stronger typing | ||
| - C3D_TexEnvOp separated into C3D_TexEnvOpRgb and C3D_TexEnvOpAlpha | ||
| - C3D_SafeXyz functions have been deprecated and replaced by C3D_SyncXyz functions | ||
| - Miscellaneous bugfixes and optimizations | ||
|
|
||
| ## Version 1.3.1 | ||
|
|
||
| - Removed deprecated C3D_RenderBuffer functionality | ||
| - Recompiled with libctru 1.4.0 | ||
|
|
||
| ## Version 1.3.0 | ||
|
|
||
| Major changes: | ||
|
|
||
| - Overhauled texture API | ||
| - Frame rate control & monitoring | ||
| - CPU/GPU time profiling | ||
| - Support for framebuffers (lightweight renderbuffers) - old renderbuffers are now deprecated | ||
| - Rendertarget system now uses libctru GX queue | ||
| - Corrected LUT code | ||
| - Debug build for use with GDB | ||
| - New GPU features: | ||
| - Mipmaps | ||
| - Cubemaps | ||
| - Shadow textures | ||
| - Procedural textures | ||
| - Fog | ||
| - Miscellaneous bugfixes and optimizations | ||
|
|
||
| ## Version 0-1.2.0 | ||
|
|
||
| No changelog avaliable |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.