{{oldin|[[0.10.0]]|100|type=function|text=Use [[love.graphics.getSystemLimits]] instead}}
Gets the max supported [[love.graphics.point|point]] size.
== Function ==
=== Synopsis ===
<source lang="lua">
size = love.graphics.getMaxPointSize( )
</source>
=== Arguments ===
None.
=== Returns ===
{{param|number|size|The max supported point size.}}
== Examples ==
Draws a [[love.graphics.point|point]] at the maximum supported size.
<source lang="lua">
function love.draw()
    local max = love.graphics.getMaxPointSize();
    love.graphics.setPointSize(max);
    love.graphics.point(100, 100);
end
</source>
== See Also ==
* [[parent::love.graphics]]
* [[love.graphics.point]]
* [[love.graphics.getPointSize]]
* [[love.graphics.setPointSize]]

[[Category:Functions]]
{{#set:Description=Gets the max supported [[love.graphics.point|point]] size.}}
{{#set:Since=000}}
{{#set:Sub-Category=SystemInfo}}
== Other Languages ==
{{i18n|love.graphics.getMaxPointSize}}