love.graphics.getPixelDimensions

Available since LÖVE 11.0
This function is not supported in earlier versions.

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).

Function

Synopsis

pixelwidth, pixelheight = love.graphics.getPixelDimensions( )

Arguments

None.

Returns

number pixelwidth
The width of the window in pixels.
number pixelheight
The width of the window in pixels.

See Also


Other Languages