summaryrefslogtreecommitdiff
path: root/meta/3rd/love2d/library/love.graphics.lua
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2021-07-20 16:40:27 +0800
committer最萌小汐 <sumneko@hotmail.com>2021-07-20 16:40:27 +0800
commit4bad35e608179e74c9ce186fa2038573055e574b (patch)
treeb820b8f34ab9e8a92cb6093defaab7f65ee13cbd /meta/3rd/love2d/library/love.graphics.lua
parentee83c8939fdb9547bba993132e71a0638949abe9 (diff)
downloadlua-language-server-4bad35e608179e74c9ce186fa2038573055e574b.zip
first step of love2d-api
Diffstat (limited to 'meta/3rd/love2d/library/love.graphics.lua')
-rw-r--r--meta/3rd/love2d/library/love.graphics.lua965
1 files changed, 965 insertions, 0 deletions
diff --git a/meta/3rd/love2d/library/love.graphics.lua b/meta/3rd/love2d/library/love.graphics.lua
new file mode 100644
index 00000000..b0bd6fc9
--- /dev/null
+++ b/meta/3rd/love2d/library/love.graphics.lua
@@ -0,0 +1,965 @@
+---@class love.graphics
+love.graphics = {}
+
+---
+---Applies the given Transform object to the current coordinate transformation.
+---
+---This effectively multiplies the existing coordinate transformation's matrix with the Transform object's internal matrix to produce the new coordinate transformation.
+---
+---@param transform Transform # The Transform object to apply to the current graphics coordinate transform.
+function love.graphics.applyTransform(transform) end
+
+---
+---Draws a filled or unfilled arc at position (x, y). The arc is drawn from angle1 to angle2 in radians. The segments parameter determines how many segments are used to draw the arc. The more segments, the smoother the edge.
+---
+---@param drawmode DrawMode # How to draw the arc.
+---@param x number # The position of the center along x-axis.
+---@param y number # The position of the center along y-axis.
+---@param radius number # Radius of the arc.
+---@param angle1 number # The angle at which the arc begins.
+---@param angle2 number # The angle at which the arc terminates.
+---@param segments number # The number of segments used for drawing the arc.
+function love.graphics.arc(drawmode, x, y, radius, angle1, angle2, segments) end
+
+---
+---Creates a screenshot once the current frame is done (after love.draw has finished).
+---
+---Since this function enqueues a screenshot capture rather than executing it immediately, it can be called from an input callback or love.update and it will still capture all of what's drawn to the screen in that frame.
+---
+---@param filename string # The filename to save the screenshot to. The encoded image type is determined based on the extension of the filename, and must be one of the ImageFormats.
+function love.graphics.captureScreenshot(filename) end
+
+---
+---Draws a circle.
+---
+---@param mode DrawMode # How to draw the circle.
+---@param x number # The position of the center along x-axis.
+---@param y number # The position of the center along y-axis.
+---@param radius number # The radius of the circle.
+function love.graphics.circle(mode, x, y, radius) end
+
+---
+---Clears the screen or active Canvas to the specified color.
+---
+---This function is called automatically before love.draw in the default love.run function. See the example in love.run for a typical use of this function.
+---
+---Note that the scissor area bounds the cleared region.
+---
+---In versions prior to 11.0, color component values were within the range of 0 to 255 instead of 0 to 1.
+---
+---In versions prior to background color instead.
+---
+function love.graphics.clear() end
+
+---
+---Discards (trashes) the contents of the screen or active Canvas. This is a performance optimization function with niche use cases.
+---
+---If the active Canvas has just been changed and the 'replace' BlendMode is about to be used to draw something which covers the entire screen, calling love.graphics.discard rather than calling love.graphics.clear or doing nothing may improve performance on mobile devices.
+---
+---On some desktop systems this function may do nothing.
+---
+---@param discardcolor boolean # Whether to discard the texture(s) of the active Canvas(es) (the contents of the screen if no Canvas is active.)
+---@param discardstencil boolean # Whether to discard the contents of the stencil buffer of the screen / active Canvas.
+function love.graphics.discard(discardcolor, discardstencil) end
+
+---
+---Draws a Drawable object (an Image, Canvas, SpriteBatch, ParticleSystem, Mesh, Text object, or Video) on the screen with optional rotation, scaling and shearing.
+---
+---Objects are drawn relative to their local coordinate system. The origin is by default located at the top left corner of Image and Canvas. All scaling, shearing, and rotation arguments transform the object relative to that point. Also, the position of the origin can be specified on the screen coordinate system.
+---
+---It's possible to rotate an object about its center by offsetting the origin to the center. Angles must be given in radians for rotation. One can also use a negative scaling factor to flip about its centerline.
+---
+---Note that the offsets are applied before rotation, scaling, or shearing; scaling and shearing are applied before rotation.
+---
+---The right and bottom edges of the object are shifted at an angle defined by the shearing factors.
+---
+---When using the default shader anything drawn with this function will be tinted according to the currently selected color. Set it to pure white to preserve the object's original colors.
+---
+---@param drawable Drawable # A drawable object.
+---@param x number # The position to draw the object (x-axis).
+---@param y number # The position to draw the object (y-axis).
+---@param r number # Orientation (radians).
+---@param sx number # Scale factor (x-axis).
+---@param sy number # Scale factor (y-axis).
+---@param ox number # Origin offset (x-axis).
+---@param oy number # Origin offset (y-axis).
+---@param kx number # Shearing factor (x-axis).
+---@param ky number # Shearing factor (y-axis).
+function love.graphics.draw(drawable, x, y, r, sx, sy, ox, oy, kx, ky) end
+
+---
+---Draws many instances of a Mesh with a single draw call, using hardware geometry instancing.
+---
+---Each instance can have unique properties (positions, colors, etc.) but will not by default unless a custom per-instance vertex attributes or the love_InstanceID GLSL 3 vertex shader variable is used, otherwise they will all render at the same position on top of each other.
+---
+---Instancing is not supported by some older GPUs that are only capable of using OpenGL ES 2 or OpenGL 2. Use love.graphics.getSupported to check.
+---
+---@param mesh Mesh # The mesh to render.
+---@param instancecount number # The number of instances to render.
+---@param x number # The position to draw the instances (x-axis).
+---@param y number # The position to draw the instances (y-axis).
+---@param r number # Orientation (radians).
+---@param sx number # Scale factor (x-axis).
+---@param sy number # Scale factor (y-axis).
+---@param ox number # Origin offset (x-axis).
+---@param oy number # Origin offset (y-axis).
+---@param kx number # Shearing factor (x-axis).
+---@param ky number # Shearing factor (y-axis).
+function love.graphics.drawInstanced(mesh, instancecount, x, y, r, sx, sy, ox, oy, kx, ky) end
+
+---
+---Draws a layer of an Array Texture.
+---
+---@param texture Texture # The Array Texture to draw.
+---@param layerindex number # The index of the layer to use when drawing.
+---@param x number # The position to draw the texture (x-axis).
+---@param y number # The position to draw the texture (y-axis).
+---@param r number # Orientation (radians).
+---@param sx number # Scale factor (x-axis).
+---@param sy number # Scale factor (y-axis).
+---@param ox number # Origin offset (x-axis).
+---@param oy number # Origin offset (y-axis).
+---@param kx number # Shearing factor (x-axis).
+---@param ky number # Shearing factor (y-axis).
+function love.graphics.drawLayer(texture, layerindex, x, y, r, sx, sy, ox, oy, kx, ky) end
+
+---
+---Draws an ellipse.
+---
+---@param mode DrawMode # How to draw the ellipse.
+---@param x number # The position of the center along x-axis.
+---@param y number # The position of the center along y-axis.
+---@param radiusx number # The radius of the ellipse along the x-axis (half the ellipse's width).
+---@param radiusy number # The radius of the ellipse along the y-axis (half the ellipse's height).
+function love.graphics.ellipse(mode, x, y, radiusx, radiusy) end
+
+---
+---Immediately renders any pending automatically batched draws.
+---
+---LÖVE will call this function internally as needed when most state is changed, so it is not necessary to manually call it.
+---
+---The current batch will be automatically flushed by color), as well as Shader:send and methods on Textures which change their state. Using a different Image in consecutive love.graphics.draw calls will also flush the current batch.
+---
+---SpriteBatches, ParticleSystems, Meshes, and Text objects do their own batching and do not affect automatic batching of other draws, aside from flushing the current batch when they're drawn.
+---
+function love.graphics.flushBatch() end
+
+---
+---Gets the current background color.
+---
+---In versions prior to 11.0, color component values were within the range of 0 to 255 instead of 0 to 1.
+---
+---@return number r # The red component (0-1).
+---@return number g # The green component (0-1).
+---@return number b # The blue component (0-1).
+---@return number a # The alpha component (0-1).
+function love.graphics.getBackgroundColor() end
+
+---
+---Gets the blending mode.
+---
+---@return BlendMode mode # The current blend mode.
+---@return BlendAlphaMode alphamode # The current blend alpha mode – it determines how the alpha of drawn objects affects blending.
+function love.graphics.getBlendMode() end
+
+---
+---Gets the current target Canvas.
+---
+---@return Canvas canvas # The Canvas set by setCanvas. Returns nil if drawing to the real screen.
+function love.graphics.getCanvas() end
+
+---
+---Gets the available Canvas formats, and whether each is supported.
+---
+---@return table formats # A table containing CanvasFormats as keys, and a boolean indicating whether the format is supported as values. Not all systems support all formats.
+function love.graphics.getCanvasFormats() end
+
+---
+---Gets the current color.
+---
+---In versions prior to 11.0, color component values were within the range of 0 to 255 instead of 0 to 1.
+---
+---@return number r # The red component (0-1).
+---@return number g # The green component (0-1).
+---@return number b # The blue component (0-1).
+---@return number a # The alpha component (0-1).
+function love.graphics.getColor() end
+
+---
+---Gets the active color components used when drawing. Normally all 4 components are active unless love.graphics.setColorMask has been used.
+---
+---The color mask determines whether individual components of the colors of drawn objects will affect the color of the screen. They affect love.graphics.clear and Canvas:clear as well.
+---
+---@return boolean r # Whether the red color component is active when rendering.
+---@return boolean g # Whether the green color component is active when rendering.
+---@return boolean b # Whether the blue color component is active when rendering.
+---@return boolean a # Whether the alpha color component is active when rendering.
+function love.graphics.getColorMask() end
+
+---
+---Gets the DPI scale factor of the window.
+---
+---The DPI scale factor represents relative pixel density. The pixel density inside the window might be greater (or smaller) than the 'size' of the window. For example on a retina screen in Mac OS X with the highdpi window flag enabled, the window may take up the same physical size as an 800x600 window, but the area inside the window uses 1600x1200 pixels. love.graphics.getDPIScale() would return 2 in that case.
+---
+---The love.window.fromPixels and love.window.toPixels functions can also be used to convert between units.
+---
+---The highdpi window flag must be enabled to use the full pixel density of a Retina screen on Mac OS X and iOS. The flag currently does nothing on Windows and Linux, and on Android it is effectively always enabled.
+---
+---@return number scale # The pixel scale factor associated with the window.
+function love.graphics.getDPIScale() end
+
+---
+---Returns the default scaling filters used with Images, Canvases, and Fonts.
+---
+---@return FilterMode min # Filter mode used when scaling the image down.
+---@return FilterMode mag # Filter mode used when scaling the image up.
+---@return number anisotropy # Maximum amount of Anisotropic Filtering used.
+function love.graphics.getDefaultFilter() end
+
+---
+---Gets the current depth test mode and whether writing to the depth buffer is enabled.
+---
+---This is low-level functionality designed for use with custom vertex shaders and Meshes with custom vertex attributes. No higher level APIs are provided to set the depth of 2D graphics such as shapes, lines, and Images.
+---
+---@return CompareMode comparemode # Depth comparison mode used for depth testing.
+---@return boolean write # Whether to write update / write values to the depth buffer when rendering.
+function love.graphics.getDepthMode() end
+
+---
+---Gets the width and height in pixels of the window.
+---
+---@return number width # The width of the window.
+---@return number height # The height of the window.
+function love.graphics.getDimensions() end
+
+---
+---Gets the current Font object.
+---
+---@return Font font # The current Font. Automatically creates and sets the default font, if none is set yet.
+function love.graphics.getFont() end
+
+---
+---Gets whether triangles with clockwise- or counterclockwise-ordered vertices are considered front-facing.
+---
+---This is designed for use in combination with Mesh face culling. Other love.graphics shapes, lines, and sprites are not guaranteed to have a specific winding order to their internal vertices.
+---
+---@return VertexWinding winding # The winding mode being used. The default winding is counterclockwise ('ccw').
+function love.graphics.getFrontFaceWinding() end
+
+---
+---Gets the height in pixels of the window.
+---
+---@return number height # The height of the window.
+function love.graphics.getHeight() end
+
+---
+---Gets the raw and compressed pixel formats usable for Images, and whether each is supported.
+---
+---@return table formats # A table containing PixelFormats as keys, and a boolean indicating whether the format is supported as values. Not all systems support all formats.
+function love.graphics.getImageFormats() end
+
+---
+---Gets the line join style.
+---
+---@return LineJoin join # The LineJoin style.
+function love.graphics.getLineJoin() end
+
+---
+---Gets the line style.
+---
+---@return LineStyle style # The current line style.
+function love.graphics.getLineStyle() end
+
+---
+---Gets the current line width.
+---
+---@return number width # The current line width.
+function love.graphics.getLineWidth() end
+
+---
+---Gets whether back-facing triangles in a Mesh are culled.
+---
+---Mesh face culling is designed for use with low level custom hardware-accelerated 3D rendering via custom vertex attributes on Meshes, custom vertex shaders, and depth testing with a depth buffer.
+---
+---@return CullMode mode # The Mesh face culling mode in use (whether to render everything, cull back-facing triangles, or cull front-facing triangles).
+function love.graphics.getMeshCullMode() end
+
+---
+---Gets the width and height in pixels of the window.
+---
+---love.graphics.getDimensions gets the dimensions of the window in units scaled by the screen's DPI scale factor, rather than pixels. Use getDimensions for calculations related to drawing to the screen and using the graphics coordinate system (calculating the center of the screen, for example), and getPixelDimensions only when dealing specifically with underlying pixels (pixel-related calculations in a pixel Shader, for example).
+---
+---@return number pixelwidth # The width of the window in pixels.
+---@return number pixelheight # The height of the window in pixels.
+function love.graphics.getPixelDimenions() end
+
+---
+---Gets the height in pixels of the window.
+---
+---The graphics coordinate system and DPI scale factor, rather than raw pixels. Use getHeight for calculations related to drawing to the screen and using the coordinate system (calculating the center of the screen, for example), and getPixelHeight only when dealing specifically with underlying pixels (pixel-related calculations in a pixel Shader, for example).
+---
+---@return number pixelheight # The height of the window in pixels.
+function love.graphics.getPixelHeight() end
+
+---
+---Gets the width in pixels of the window.
+---
+---The graphics coordinate system and DPI scale factor, rather than raw pixels. Use getWidth for calculations related to drawing to the screen and using the coordinate system (calculating the center of the screen, for example), and getPixelWidth only when dealing specifically with underlying pixels (pixel-related calculations in a pixel Shader, for example).
+---
+---@return number pixelwidth # The width of the window in pixels.
+function love.graphics.getPixelWidth() end
+
+---
+---Gets the point size.
+---
+---@return number size # The current point size.
+function love.graphics.getPointSize() end
+
+---
+---Gets information about the system's video card and drivers.
+---
+---@return string name # The name of the renderer, e.g. 'OpenGL' or 'OpenGL ES'.
+---@return string version # The version of the renderer with some extra driver-dependent version info, e.g. '2.1 INTEL-8.10.44'.
+---@return string vendor # The name of the graphics card vendor, e.g. 'Intel Inc'.
+---@return string device # The name of the graphics card, e.g. 'Intel HD Graphics 3000 OpenGL Engine'.
+function love.graphics.getRendererInfo() end
+
+---
+---Gets the current scissor box.
+---
+---@return number x # The x-component of the top-left point of the box.
+---@return number y # The y-component of the top-left point of the box.
+---@return number width # The width of the box.
+---@return number height # The height of the box.
+function love.graphics.getScissor() end
+
+---
+---Gets the current Shader. Returns nil if none is set.
+---
+---@return Shader shader # The currently active Shader, or nil if none is set.
+function love.graphics.getShader() end
+
+---
+---Gets the current depth of the transform / state stack (the number of pushes without corresponding pops).
+---
+---@return number depth # The current depth of the transform and state love.graphics stack.
+function love.graphics.getStackDepth() end
+
+---
+---Gets performance-related rendering statistics.
+---
+---@return table stats # A table with the following fields:
+function love.graphics.getStats() end
+
+---
+---Gets the current stencil test configuration.
+---
+---When stencil testing is enabled, the geometry of everything that is drawn afterward will be clipped / stencilled out based on a comparison between the arguments of this function and the stencil value of each pixel that the geometry touches. The stencil values of pixels are affected via love.graphics.stencil.
+---
+---Each Canvas has its own per-pixel stencil values.
+---
+---@return CompareMode comparemode # The type of comparison that is made for each pixel. Will be 'always' if stencil testing is disabled.
+---@return number comparevalue # The value used when comparing with the stencil value of each pixel.
+function love.graphics.getStencilTest() end
+
+---
+---Gets the optional graphics features and whether they're supported on the system.
+---
+---Some older or low-end systems don't always support all graphics features.
+---
+---@return table features # A table containing GraphicsFeature keys, and boolean values indicating whether each feature is supported.
+function love.graphics.getSupported() end
+
+---
+---Gets the system-dependent maximum values for love.graphics features.
+---
+---@return table limits # A table containing GraphicsLimit keys, and number values.
+function love.graphics.getSystemLimits() end
+
+---
+---Gets the available texture types, and whether each is supported.
+---
+---@return table texturetypes # A table containing TextureTypes as keys, and a boolean indicating whether the type is supported as values. Not all systems support all types.
+function love.graphics.getTextureTypes() end
+
+---
+---Gets the width in pixels of the window.
+---
+---@return number width # The width of the window.
+function love.graphics.getWidth() end
+
+---
+---Sets the scissor to the rectangle created by the intersection of the specified rectangle with the existing scissor. If no scissor is active yet, it behaves like love.graphics.setScissor.
+---
+---The scissor limits the drawing area to a specified rectangle. This affects all graphics calls, including love.graphics.clear.
+---
+---The dimensions of the scissor is unaffected by graphical transformations (translate, scale, ...).
+---
+---@param x number # The x-coordinate of the upper left corner of the rectangle to intersect with the existing scissor rectangle.
+---@param y number # The y-coordinate of the upper left corner of the rectangle to intersect with the existing scissor rectangle.
+---@param width number # The width of the rectangle to intersect with the existing scissor rectangle.
+---@param height number # The height of the rectangle to intersect with the existing scissor rectangle.
+function love.graphics.intersectScissor(x, y, width, height) end
+
+---
+---Converts the given 2D position from screen-space into global coordinates.
+---
+---This effectively applies the reverse of the current graphics transformations to the given position. A similar Transform:inverseTransformPoint method exists for Transform objects.
+---
+---@param screenX number # The x component of the screen-space position.
+---@param screenY number # The y component of the screen-space position.
+---@return number globalX # The x component of the position in global coordinates.
+---@return number globalY # The y component of the position in global coordinates.
+function love.graphics.inverseTransformPoint(screenX, screenY) end
+
+---
+---Gets whether the graphics module is able to be used. If it is not active, love.graphics function and method calls will not work correctly and may cause the program to crash.
+---The graphics module is inactive if a window is not open, or if the app is in the background on iOS. Typically the app's execution will be automatically paused by the system, in the latter case.
+---
+---@return boolean active # Whether the graphics module is active and able to be used.
+function love.graphics.isActive() end
+
+---
+---Gets whether gamma-correct rendering is supported and enabled. It can be enabled by setting t.gammacorrect = true in love.conf.
+---
+---Not all devices support gamma-correct rendering, in which case it will be automatically disabled and this function will return false. It is supported on desktop systems which have graphics cards that are capable of using OpenGL 3 / DirectX 10, and iOS devices that can use OpenGL ES 3.
+---
+---@return boolean gammacorrect # True if gamma-correct rendering is supported and was enabled in love.conf, false otherwise.
+function love.graphics.isGammaCorrect() end
+
+---
+---Gets whether wireframe mode is used when drawing.
+---
+---@return boolean wireframe # True if wireframe lines are used when drawing, false if it's not.
+function love.graphics.isWireframe() end
+
+---
+---Draws lines between points.
+---
+---@param x1 number # The position of first point on the x-axis.
+---@param y1 number # The position of first point on the y-axis.
+---@param x2 number # The position of second point on the x-axis.
+---@param y2 number # The position of second point on the y-axis.
+---@param ... number # You can continue passing point positions to draw a polyline.
+function love.graphics.line(x1, y1, x2, y2, ...) end
+
+---
+---Creates a new array Image.
+---
+---An array image / array texture is a single object which contains multiple 'layers' or 'slices' of 2D sub-images. It can be thought of similarly to a texture atlas or sprite sheet, but it doesn't suffer from the same tile / quad bleeding artifacts that texture atlases do – although every sub-image must have the same dimensions.
+---
+---A specific layer of an array image can be drawn with love.graphics.drawLayer / SpriteBatch:addLayer, or with the Quad variant of love.graphics.draw and Quad:setLayer, or via a custom Shader.
+---
+---To use an array image in a Shader, it must be declared as a ArrayImage or sampler2DArray type (instead of Image or sampler2D). The Texel(ArrayImage image, vec3 texturecoord) shader function must be used to get pixel colors from a slice of the array image. The vec3 argument contains the texture coordinate in the first two components, and the 0-based slice index in the third component.
+---
+---@param slices table # A table containing filepaths to images (or File, FileData, ImageData, or CompressedImageData objects), in an array. Each sub-image must have the same dimensions. A table of tables can also be given, where each sub-table contains all mipmap levels for the slice index of that sub-table.
+---@param settings table # Optional table of settings to configure the array image, containing the following fields:
+---@return Image image # An Array Image object.
+function love.graphics.newArrayImage(slices, settings) end
+
+---
+---Creates a new Canvas object for offscreen rendering.
+---
+---@return Canvas canvas # A new Canvas with dimensions equal to the window's size in pixels.
+function love.graphics.newCanvas() end
+
+---
+---Creates a new cubemap Image.
+---
+---Cubemap images have 6 faces (sides) which represent a cube. They can't be rendered directly, they can only be used in Shader code (and sent to the shader via Shader:send).
+---
+---To use a cubemap image in a Shader, it must be declared as a CubeImage or samplerCube type (instead of Image or sampler2D). The Texel(CubeImage image, vec3 direction) shader function must be used to get pixel colors from the cubemap. The vec3 argument is a normalized direction from the center of the cube, rather than explicit texture coordinates.
+---
+---Each face in a cubemap image must have square dimensions.
+---
+---For variants of this function which accept a single image containing multiple cubemap faces, they must be laid out in one of the following forms in the image:
+---
+--- +y
+---
+---+z +x -z
+---
+--- -y
+---
+--- -x
+---
+---or:
+---
+--- +y
+---
+----x +z +x -z
+---
+--- -y
+---
+---or:
+---
+---+x
+---
+----x
+---
+---+y
+---
+----y
+---
+---+z
+---
+----z
+---
+---or:
+---
+---+x -x +y -y +z -z
+---
+---@param filename string # The filepath to a cubemap image file (or a File, FileData, or ImageData).
+---@param settings table # Optional table of settings to configure the cubemap image, containing the following fields:
+---@return Image image # An cubemap Image object.
+function love.graphics.newCubeImage(filename, settings) end
+
+---
+---Creates a new Font from a TrueType Font or BMFont file. Created fonts are not cached, in that calling this function with the same arguments will always create a new Font object.
+---
+---All variants which accept a filename can also accept a Data object instead.
+---
+---@param filename string # The filepath to the BMFont or TrueType font file.
+---@return Font font # A Font object which can be used to draw text on screen.
+function love.graphics.newFont(filename) end
+
+---
+---Creates a new Image from a filepath, FileData, an ImageData, or a CompressedImageData, and optionally generates or specifies mipmaps for the image.
+---
+---@param filename string # The filepath to the image file.
+---@return Image image # An Image object which can be drawn on screen.
+function love.graphics.newImage(filename) end
+
+---
+---Creates a new specifically formatted image.
+---
+---In versions prior to 0.9.0, LÖVE expects ISO 8859-1 encoding for the glyphs string.
+---
+---@param filename string # The filepath to the image file.
+---@param glyphs string # A string of the characters in the image in order from left to right.
+---@return Font font # A Font object which can be used to draw text on screen.
+function love.graphics.newImageFont(filename, glyphs) end
+
+---
+---Creates a new Mesh.
+---
+---Use Mesh:setTexture if the Mesh should be textured with an Image or Canvas when it's drawn.
+---
+---In versions prior to 11.0, color and byte component values were within the range of 0 to 255 instead of 0 to 1.
+---
+---@param vertices table # The table filled with vertex information tables for each vertex as follows:
+---@param mode MeshDrawMode # How the vertices are used when drawing. The default mode 'fan' is sufficient for simple convex polygons.
+---@param usage SpriteBatchUsage # The expected usage of the Mesh. The specified usage mode affects the Mesh's memory usage and performance.
+---@return Mesh mesh # The new mesh.
+function love.graphics.newMesh(vertices, mode, usage) end
+
+---
+---Creates a new ParticleSystem.
+---
+---@param image Image # The image to use.
+---@param buffer number # The max number of particles at the same time.
+---@return ParticleSystem system # A new ParticleSystem.
+function love.graphics.newParticleSystem(image, buffer) end
+
+---
+---Creates a new Quad.
+---
+---The purpose of a Quad is to use a fraction of an image to draw objects, as opposed to drawing entire image. It is most useful for sprite sheets and atlases: in a sprite atlas, multiple sprites reside in same image, quad is used to draw a specific sprite from that image; in animated sprites with all frames residing in the same image, quad is used to draw specific frame from the animation.
+---
+---@param x number # The top-left position in the Image along the x-axis.
+---@param y number # The top-left position in the Image along the y-axis.
+---@param width number # The width of the Quad in the Image. (Must be greater than 0.)
+---@param height number # The height of the Quad in the Image. (Must be greater than 0.)
+---@param sw number # The reference width, the width of the Image. (Must be greater than 0.)
+---@param sh number # The reference height, the height of the Image. (Must be greater than 0.)
+---@return Quad quad # The new Quad.
+function love.graphics.newQuad(x, y, width, height, sw, sh) end
+
+---
+---Creates a new Shader object for hardware-accelerated vertex and pixel effects. A Shader contains either vertex shader code, pixel shader code, or both.
+---
+---Shaders are small programs which are run on the graphics card when drawing. Vertex shaders are run once for each vertex (for example, an image has 4 vertices - one at each corner. A Mesh might have many more.) Pixel shaders are run once for each pixel on the screen which the drawn object touches. Pixel shader code is executed after all the object's vertices have been processed by the vertex shader.
+---
+---@param code string # The pixel shader or vertex shader code, or a filename pointing to a file with the code.
+---@return Shader shader # A Shader object for use in drawing operations.
+function love.graphics.newShader(code) end
+
+---
+---Creates a new SpriteBatch object.
+---
+---@param image Image # The Image to use for the sprites.
+---@param maxsprites number # The maximum number of sprites that the SpriteBatch can contain at any given time. Since version 11.0, additional sprites added past this number will automatically grow the spritebatch.
+---@return SpriteBatch spriteBatch # The new SpriteBatch.
+function love.graphics.newSpriteBatch(image, maxsprites) end
+
+---
+---Creates a new drawable Text object.
+---
+---@param font Font # The font to use for the text.
+---@param textstring string # The initial string of text that the new Text object will contain. May be nil.
+---@return Text text # The new drawable Text object.
+function love.graphics.newText(font, textstring) end
+
+---
+---Creates a new drawable Video. Currently only Ogg Theora video files are supported.
+---
+---@param filename string # The file path to the Ogg Theora video file.
+---@return Video video # A new Video.
+function love.graphics.newVideo(filename) end
+
+---
+---Creates a new volume (3D) Image.
+---
+---Volume images are 3D textures with width, height, and depth. They can't be rendered directly, they can only be used in Shader code (and sent to the shader via Shader:send).
+---
+---To use a volume image in a Shader, it must be declared as a VolumeImage or sampler3D type (instead of Image or sampler2D). The Texel(VolumeImage image, vec3 texcoords) shader function must be used to get pixel colors from the volume image. The vec3 argument is a normalized texture coordinate with the z component representing the depth to sample at (ranging from 1).
+---
+---Volume images are typically used as lookup tables in shaders for color grading, for example, because sampling using a texture coordinate that is partway in between two pixels can interpolate across all 3 dimensions in the volume image, resulting in a smooth gradient even when a small-sized volume image is used as the lookup table.
+---
+---Array images are a much better choice than volume images for storing multiple different sprites in a single array image for directly drawing them.
+---
+---@param layers table # A table containing filepaths to images (or File, FileData, ImageData, or CompressedImageData objects), in an array. A table of tables can also be given, where each sub-table represents a single mipmap level and contains all layers for that mipmap.
+---@param settings table # Optional table of settings to configure the volume image, containing the following fields:
+---@return Image image # A volume Image object.
+function love.graphics.newVolumeImage(layers, settings) end
+
+---
+---Resets the current coordinate transformation.
+---
+---This function is always used to reverse any previous calls to love.graphics.rotate, love.graphics.scale, love.graphics.shear or love.graphics.translate. It returns the current transformation state to its defaults.
+---
+function love.graphics.origin() end
+
+---
+---Draws one or more points.
+---
+---@param x number # The position of the first point on the x-axis.
+---@param y number # The position of the first point on the y-axis.
+---@param ... number # The x and y coordinates of additional points.
+function love.graphics.points(x, y, ...) end
+
+---
+---Draw a polygon.
+---
+---Following the mode argument, this function can accept multiple numeric arguments or a single table of numeric arguments. In either case the arguments are interpreted as alternating x and y coordinates of the polygon's vertices.
+---
+---@param mode DrawMode # How to draw the polygon.
+---@param ... number # The vertices of the polygon.
+function love.graphics.polygon(mode, ...) end
+
+---
+---Pops the current coordinate transformation from the transformation stack.
+---
+---This function is always used to reverse a previous push operation. It returns the current transformation state to what it was before the last preceding push.
+---
+function love.graphics.pop() end
+
+---
+---Displays the results of drawing operations on the screen.
+---
+---This function is used when writing your own love.run function. It presents all the results of your drawing operations on the screen. See the example in love.run for a typical use of this function.
+---
+function love.graphics.present() end
+
+---
+---Draws text on screen. If no Font is set, one will be created and set (once) if needed.
+---
+---As of LOVE 0.7.1, when using translation and scaling functions while drawing text, this function assumes the scale occurs first. If you don't script with this in mind, the text won't be in the right position, or possibly even on screen.
+---
+---love.graphics.print and love.graphics.printf both support UTF-8 encoding. You'll also need a proper Font for special characters.
+---
+---In versions prior to 11.0, color and byte component values were within the range of 0 to 255 instead of 0 to 1.
+---
+---@param text string # The text to draw.
+---@param x number # The position to draw the object (x-axis).
+---@param y number # The position to draw the object (y-axis).
+---@param r number # Orientation (radians).
+---@param sx number # Scale factor (x-axis).
+---@param sy number # Scale factor (y-axis).
+---@param ox number # Origin offset (x-axis).
+---@param oy number # Origin offset (y-axis).
+---@param kx number # Shearing factor (x-axis).
+---@param ky number # Shearing factor (y-axis).
+function love.graphics.print(text, x, y, r, sx, sy, ox, oy, kx, ky) end
+
+---
+---Draws formatted text, with word wrap and alignment.
+---
+---See additional notes in love.graphics.print.
+---
+---The word wrap limit is applied before any scaling, rotation, and other coordinate transformations. Therefore the amount of text per line stays constant given the same wrap limit, even if the scale arguments change.
+---
+---In version 0.9.2 and earlier, wrapping was implemented by breaking up words by spaces and putting them back together to make sure things fit nicely within the limit provided. However, due to the way this is done, extra spaces between words would end up missing when printed on the screen, and some lines could overflow past the provided wrap limit. In version 0.10.0 and newer this is no longer the case.
+---
+---In versions prior to 11.0, color and byte component values were within the range of 0 to 255 instead of 0 to 1.
+---
+---@param text string # A text string.
+---@param x number # The position on the x-axis.
+---@param y number # The position on the y-axis.
+---@param limit number # Wrap the line after this many horizontal pixels.
+---@param align AlignMode # The alignment.
+---@param r number # Orientation (radians).
+---@param sx number # Scale factor (x-axis).
+---@param sy number # Scale factor (y-axis).
+---@param ox number # Origin offset (x-axis).
+---@param oy number # Origin offset (y-axis).
+---@param kx number # Shearing factor (x-axis).
+---@param ky number # Shearing factor (y-axis).
+function love.graphics.printf(text, x, y, limit, align, r, sx, sy, ox, oy, kx, ky) end
+
+---
+---Copies and pushes the current coordinate transformation to the transformation stack.
+---
+---This function is always used to prepare for a corresponding pop operation later. It stores the current coordinate transformation state into the transformation stack and keeps it active. Later changes to the transformation can be undone by using the pop operation, which returns the coordinate transform to the state it was in before calling push.
+---
+function love.graphics.push() end
+
+---
+---Draws a rectangle.
+---
+---@param mode DrawMode # How to draw the rectangle.
+---@param x number # The position of top-left corner along the x-axis.
+---@param y number # The position of top-left corner along the y-axis.
+---@param width number # Width of the rectangle.
+---@param height number # Height of the rectangle.
+function love.graphics.rectangle(mode, x, y, width, height) end
+
+---
+---Replaces the current coordinate transformation with the given Transform object.
+---
+---@param transform Transform # The Transform object to replace the current graphics coordinate transform with.
+function love.graphics.replaceTransform(transform) end
+
+---
+---Resets the current graphics settings.
+---
+---Calling reset makes the current drawing color white, the current background color black, disables any active color component masks, disables wireframe mode and resets the current graphics transformation to the origin. It also sets both the point and line drawing modes to smooth and their sizes to 1.0.
+---
+function love.graphics.reset() end
+
+---
+---Rotates the coordinate system in two dimensions.
+---
+---Calling this function affects all future drawing operations by rotating the coordinate system around the origin by the given amount of radians. This change lasts until love.draw() exits.
+---
+---@param angle number # The amount to rotate the coordinate system in radians.
+function love.graphics.rotate(angle) end
+
+---
+---Scales the coordinate system in two dimensions.
+---
+---By default the coordinate system in LÖVE corresponds to the display pixels in horizontal and vertical directions one-to-one, and the x-axis increases towards the right while the y-axis increases downwards. Scaling the coordinate system changes this relation.
+---
+---After scaling by sx and sy, all coordinates are treated as if they were multiplied by sx and sy. Every result of a drawing operation is also correspondingly scaled, so scaling by (2, 2) for example would mean making everything twice as large in both x- and y-directions. Scaling by a negative value flips the coordinate system in the corresponding direction, which also means everything will be drawn flipped or upside down, or both. Scaling by zero is not a useful operation.
+---
+---Scale and translate are not commutative operations, therefore, calling them in different orders will change the outcome.
+---
+---Scaling lasts until love.draw() exits.
+---
+---@param sx number # The scaling in the direction of the x-axis.
+---@param sy number # The scaling in the direction of the y-axis. If omitted, it defaults to same as parameter sx.
+function love.graphics.scale(sx, sy) end
+
+---
+---Sets the background color.
+---
+---@param red number # The red component (0-1).
+---@param green number # The green component (0-1).
+---@param blue number # The blue component (0-1).
+---@param alpha number # The alpha component (0-1).
+function love.graphics.setBackgroundColor(red, green, blue, alpha) end
+
+---
+---Sets the blending mode.
+---
+---@param mode BlendMode # The blend mode to use.
+function love.graphics.setBlendMode(mode) end
+
+---
+---Captures drawing operations to a Canvas.
+---
+---@param canvas Canvas # The new target.
+---@param mipmap number # The mipmap level to render to, for Canvases with mipmaps.
+function love.graphics.setCanvas(canvas, mipmap) end
+
+---
+---Sets the color used for drawing.
+---
+---In versions prior to 11.0, color component values were within the range of 0 to 255 instead of 0 to 1.
+---
+---@param red number # The amount of red.
+---@param green number # The amount of green.
+---@param blue number # The amount of blue.
+---@param alpha number # The amount of alpha. The alpha value will be applied to all subsequent draw operations, even the drawing of an image.
+function love.graphics.setColor(red, green, blue, alpha) end
+
+---
+---Sets the color mask. Enables or disables specific color components when rendering and clearing the screen. For example, if '''red''' is set to '''false''', no further changes will be made to the red component of any pixels.
+---
+---@param red boolean # Render red component.
+---@param green boolean # Render green component.
+---@param blue boolean # Render blue component.
+---@param alpha boolean # Render alpha component.
+function love.graphics.setColorMask(red, green, blue, alpha) end
+
+---
+---Sets the default scaling filters used with Images, Canvases, and Fonts.
+---
+---@param min FilterMode # Filter mode used when scaling the image down.
+---@param mag FilterMode # Filter mode used when scaling the image up.
+---@param anisotropy number # Maximum amount of Anisotropic Filtering used.
+function love.graphics.setDefaultFilter(min, mag, anisotropy) end
+
+---
+---Configures depth testing and writing to the depth buffer.
+---
+---This is low-level functionality designed for use with custom vertex shaders and Meshes with custom vertex attributes. No higher level APIs are provided to set the depth of 2D graphics such as shapes, lines, and Images.
+---
+---@param comparemode CompareMode # Depth comparison mode used for depth testing.
+---@param write boolean # Whether to write update / write values to the depth buffer when rendering.
+function love.graphics.setDepthMode(comparemode, write) end
+
+---
+---Set an already-loaded Font as the current font or create and load a new one from the file and size.
+---
+---It's recommended that Font objects are created with love.graphics.newFont in the loading stage and then passed to this function in the drawing stage.
+---
+---@param font Font # The Font object to use.
+function love.graphics.setFont(font) end
+
+---
+---Sets whether triangles with clockwise- or counterclockwise-ordered vertices are considered front-facing.
+---
+---This is designed for use in combination with Mesh face culling. Other love.graphics shapes, lines, and sprites are not guaranteed to have a specific winding order to their internal vertices.
+---
+---@param winding VertexWinding # The winding mode to use. The default winding is counterclockwise ('ccw').
+function love.graphics.setFrontFaceWinding(winding) end
+
+---
+---Sets the line join style. See LineJoin for the possible options.
+---
+---@param join LineJoin # The LineJoin to use.
+function love.graphics.setLineJoin(join) end
+
+---
+---Sets the line style.
+---
+---@param style LineStyle # The LineStyle to use. Line styles include smooth and rough.
+function love.graphics.setLineStyle(style) end
+
+---
+---Sets the line width.
+---
+---@param width number # The width of the line.
+function love.graphics.setLineWidth(width) end
+
+---
+---Sets whether back-facing triangles in a Mesh are culled.
+---
+---This is designed for use with low level custom hardware-accelerated 3D rendering via custom vertex attributes on Meshes, custom vertex shaders, and depth testing with a depth buffer.
+---
+---By default, both front- and back-facing triangles in Meshes are rendered.
+---
+---@param mode CullMode # The Mesh face culling mode to use (whether to render everything, cull back-facing triangles, or cull front-facing triangles).
+function love.graphics.setMeshCullMode(mode) end
+
+---
+---Creates and sets a new Font.
+---
+---@param size number # The size of the font.
+---@return Font font # The new font.
+function love.graphics.setNewFont(size) end
+
+---
+---Sets the point size.
+---
+---@param size number # The new point size.
+function love.graphics.setPointSize(size) end
+
+---
+---Sets or disables scissor.
+---
+---The scissor limits the drawing area to a specified rectangle. This affects all graphics calls, including love.graphics.clear.
+---
+---The dimensions of the scissor is unaffected by graphical transformations (translate, scale, ...).
+---
+---@param x number # x coordinate of upper left corner.
+---@param y number # y coordinate of upper left corner.
+---@param width number # width of clipping rectangle.
+---@param height number # height of clipping rectangle.
+function love.graphics.setScissor(x, y, width, height) end
+
+---
+---Sets or resets a Shader as the current pixel effect or vertex shaders. All drawing operations until the next ''love.graphics.setShader'' will be drawn using the Shader object specified.
+---
+---@param shader Shader # The new shader.
+function love.graphics.setShader(shader) end
+
+---
+---Configures or disables stencil testing.
+---
+---When stencil testing is enabled, the geometry of everything that is drawn afterward will be clipped / stencilled out based on a comparison between the arguments of this function and the stencil value of each pixel that the geometry touches. The stencil values of pixels are affected via love.graphics.stencil.
+---
+---@param comparemode CompareMode # The type of comparison to make for each pixel.
+---@param comparevalue number # The value to use when comparing with the stencil value of each pixel. Must be between 0 and 255.
+function love.graphics.setStencilTest(comparemode, comparevalue) end
+
+---
+---Sets whether wireframe lines will be used when drawing.
+---
+---@param enable boolean # True to enable wireframe mode when drawing, false to disable it.
+function love.graphics.setWireframe(enable) end
+
+---
+---Shears the coordinate system.
+---
+---@param kx number # The shear factor on the x-axis.
+---@param ky number # The shear factor on the y-axis.
+function love.graphics.shear(kx, ky) end
+
+---
+---Draws geometry as a stencil.
+---
+---The geometry drawn by the supplied function sets invisible stencil values of pixels, instead of setting pixel colors. The stencil buffer (which contains those stencil values) can act like a mask / stencil - love.graphics.setStencilTest can be used afterward to determine how further rendering is affected by the stencil values in each pixel.
+---
+---Stencil values are integers within the range of 255.
+---
+---@param stencilfunction function # Function which draws geometry. The stencil values of pixels, rather than the color of each pixel, will be affected by the geometry.
+---@param action StencilAction # How to modify any stencil values of pixels that are touched by what's drawn in the stencil function.
+---@param value number # The new stencil value to use for pixels if the 'replace' stencil action is used. Has no effect with other stencil actions. Must be between 0 and 255.
+---@param keepvalues boolean # True to preserve old stencil values of pixels, false to re-set every pixel's stencil value to 0 before executing the stencil function. love.graphics.clear will also re-set all stencil values.
+function love.graphics.stencil(stencilfunction, action, value, keepvalues) end
+
+---
+---Converts the given 2D position from global coordinates into screen-space.
+---
+---This effectively applies the current graphics transformations to the given position. A similar Transform:transformPoint method exists for Transform objects.
+---
+---@param globalX number # The x component of the position in global coordinates.
+---@param globalY number # The y component of the position in global coordinates.
+---@return number screenX # The x component of the position with graphics transformations applied.
+---@return number screenY # The y component of the position with graphics transformations applied.
+function love.graphics.transformPoint(globalX, globalY) end
+
+---
+---Translates the coordinate system in two dimensions.
+---
+---When this function is called with two numbers, dx, and dy, all the following drawing operations take effect as if their x and y coordinates were x+dx and y+dy.
+---
+---Scale and translate are not commutative operations, therefore, calling them in different orders will change the outcome.
+---
+---This change lasts until love.draw() exits or else a love.graphics.pop reverts to a previous love.graphics.push.
+---
+---Translating using whole numbers will prevent tearing/blurring of images and fonts draw after translating.
+---
+---@param dx number # The translation relative to the x-axis.
+---@param dy number # The translation relative to the y-axis.
+function love.graphics.translate(dx, dy) end
+
+---
+---Validates shader code. Check if specified shader code does not contain any errors.
+---
+---@param gles boolean # Validate code as GLSL ES shader.
+---@param code string # The pixel shader or vertex shader code, or a filename pointing to a file with the code.
+---@return boolean status # true if specified shader code doesn't contain any errors. false otherwise.
+---@return string message # Reason why shader code validation failed (or nil if validation succeded).
+function love.graphics.validateShader(gles, code) end