-
Notifications
You must be signed in to change notification settings - Fork 0
📝 Add docstrings to tick_draw
#28
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
Conversation
Docstrings generation was requested by @WSQS. * #27 (comment) The following files were modified: * `main.cpp`
|
Important Review skippedCodeRabbit bot authored PR detected. To trigger a single review, invoke the You can disable this status message by setting the Comment |
|
Here's the code health analysis summary for commits Analysis Summary
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clang-tidy made some suggestions
| * If the shader source is modified, the pipeline's vertex shader source is updated. | ||
| * | ||
| * @return SDL_AppResult SDL_APP_CONTINUE to indicate the application should continue running. | ||
| */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: method 'tick' can be made static [readability-convert-member-functions-to-static]
| */ | |
| static SDL_AppResult tick() |
| * If no swapchain texture is available the function still submits the command buffer and continues. | ||
| * | ||
| * @return SDL_AppResult `SDL_APP_CONTINUE` to continue the application main loop. | ||
| */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: method 'draw' can be made static [readability-convert-member-functions-to-static]
| */ | |
| static SDL_AppResult draw() |
|
clang-tidy review says "All clean, LGTM! 👍" |
* feat: split tick function and draw function * 📝 Add docstrings to `tick_draw` (#28) * 📝 Add docstrings to `tick_draw` Docstrings generation was requested by @WSQS. * #27 (comment) The following files were modified: * `main.cpp` * style: format code with ClangFormat This commit fixes the style issues introduced in 7f55a49 according to the output from ClangFormat. Details: #28 --------- Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com> --------- Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
Docstrings generation was requested by @WSQS.
The following files were modified:
main.cppℹ️ Note