-
Notifications
You must be signed in to change notification settings - Fork 271
Add missing names to lua return values. Additional return description and overload cleanup. #3170
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
Open
sparr
wants to merge
1
commit into
beyond-all-reason:master
Choose a base branch
from
sparr:lua_comment_fixes
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.
Open
Changes from all commits
Commits
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
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
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
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 |
|---|---|---|
|
|
@@ -5685,22 +5685,22 @@ int LuaOpenGL::PushPopMatrix(lua_State* L) | |
| * @function gl.GetMatrixData | ||
| * @param type GL Matrix type (`GL.PROJECTION`, `GL.MODELVIEW`, `GL.TEXTURE`). | ||
| * @param index integer Matrix index in range `[1, 16]`. | ||
| * @return number The value. | ||
| * @return number value The value at the given index. | ||
| */ | ||
| /*** | ||
| * @function gl.GetMatrixData | ||
| * @param type GL Matrix type (`GL.PROJECTION`, `GL.MODELVIEW`, `GL.TEXTURE`). | ||
| * @return Matrix4x4 The matrix. | ||
| * @return Matrix4x4 matrix The matrix. | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These got a bit too redundant |
||
| */ | ||
| /*** | ||
| * @function gl.GetMatrixData | ||
| * @param index integer Matrix index in range `[1, 16]`. | ||
| * @return number The value. | ||
| * @return number value The value at the given index. | ||
| */ | ||
| /*** | ||
| * @function gl.GetMatrixData | ||
| * @param name MatrixName The matrix name. | ||
| * @return Matrix4x4 The matrix. | ||
| * @return Matrix4x4 matrix The matrix. | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These got a bit too redundant |
||
| */ | ||
| int LuaOpenGL::GetMatrixData(lua_State* L) | ||
| { | ||
|
|
@@ -6295,7 +6295,7 @@ static void PushPixelData(lua_State* L, int fSize, const float*& data) | |
| * @param w 1 | ||
| * @param h 1 | ||
| * @param format GL? (Default: `GL.RGBA`) | ||
| * @return number ... Color values (color size based on format). | ||
| * @return number[] color Color values (color size based on format). | ||
| */ | ||
| /*** | ||
| * Get column of pixels. | ||
|
|
@@ -6305,7 +6305,7 @@ static void PushPixelData(lua_State* L, int fSize, const float*& data) | |
| * @param w 1 | ||
| * @param h integer | ||
| * @param format GL? (Default: `GL.RGBA`) | ||
| * @return number[][] Column of color values (color size based on format). | ||
| * @return number[][] colors Column of color values (color size based on format). | ||
| */ | ||
| /*** | ||
| * Get row of pixels. | ||
|
|
@@ -6315,17 +6315,17 @@ static void PushPixelData(lua_State* L, int fSize, const float*& data) | |
| * @param w integer | ||
| * @param h 1 | ||
| * @param format GL? (Default: `GL.RGBA`) | ||
| * @return number[][] Row of color values (color size based on format). | ||
| * @return number[][] colors Row of color values (color size based on format). | ||
| */ | ||
| /*** | ||
| * Get row of pixels. | ||
| * Get columns of pixels. | ||
| * @function gl.ReadPixels | ||
| * @param x integer | ||
| * @param y integer | ||
| * @param w integer | ||
| * @param h integer | ||
| * @param format GL? (Default: `GL.RGBA`) | ||
| * @return number[][][] Array of columns of color values (color size based on format). | ||
| * @return number[][][] colors Array of columns of color values (color size based on format). | ||
| */ | ||
| int LuaOpenGL::ReadPixels(lua_State* L) | ||
| { | ||
|
|
@@ -6610,7 +6610,7 @@ int LuaOpenGL::GetQuery(lua_State* L) | |
|
|
||
| /*** | ||
| * @function gl.GetGlobalTexNames | ||
| * @return string[] List of texture names. | ||
| * @return string[] texNames List of texture names. | ||
| */ | ||
| int LuaOpenGL::GetGlobalTexNames(lua_State* L) | ||
| { | ||
|
|
||
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
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.
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.
Probably: