Skip to content
Merged

Doc fix #7987

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/framework/app-base.js
Original file line number Diff line number Diff line change
Expand Up @@ -1749,9 +1749,9 @@ class AppBase extends EventHandler {
* Draws a texture at [x, y] position on screen, with size [width, height]. The origin of the
* screen is top-left [0, 0]. Coordinates and sizes are in projected space (-1 .. 1).
*
* @param {number} x - The x coordinate on the screen of the top left corner of the texture.
* @param {number} x - The x coordinate on the screen of the center of the texture.
* Should be in the range [-1, 1].
* @param {number} y - The y coordinate on the screen of the top left corner of the texture.
* @param {number} y - The y coordinate on the screen of the center of the texture.
* Should be in the range [-1, 1].
* @param {number} width - The width of the rectangle of the rendered texture. Should be in the
* range [0, 2].
Expand Down Expand Up @@ -1792,9 +1792,9 @@ class AppBase extends EventHandler {
* Draws a depth texture at [x, y] position on screen, with size [width, height]. The origin of
* the screen is top-left [0, 0]. Coordinates and sizes are in projected space (-1 .. 1).
*
* @param {number} x - The x coordinate on the screen of the top left corner of the texture.
* @param {number} x - The x coordinate on the screen of the center of the texture.
* Should be in the range [-1, 1].
* @param {number} y - The y coordinate on the screen of the top left corner of the texture.
* @param {number} y - The y coordinate on the screen of the center of the texture.
* Should be in the range [-1, 1].
* @param {number} width - The width of the rectangle of the rendered texture. Should be in the
* range [0, 2].
Expand Down