{{newin|[[0.9.0]]|090|type=function}}
Gets information about the system's video card and drivers.
{{notice|Almost everything returned by this function is highly dependent on the system running the code and should probably not be used to make run-time decisions.}}
== Function ==
=== Synopsis ===
<source lang="lua">
name, version, vendor, device = love.graphics.getRendererInfo( )
</source>
=== Arguments ===
None.
=== Returns ===
{{param|string|name|The name of the renderer, e.g. "OpenGL" or "OpenGL ES".}}
{{param|string|version|The version of the renderer with some extra driver-dependent version info, e.g. "2.1 INTEL-8.10.44".}}
{{param|string|vendor|The name of the graphics card vendor, e.g. "Intel Inc". }}
{{param|string|device|The name of the graphics card, e.g. "Intel HD Graphics 3000 OpenGL Engine".}}

== See Also ==
* [[parent::love.graphics]]
[[Category:Functions]]
[[Sub-Category::SystemInfo| ]]
{{#set:Description=Gets information about the system's video card and drivers.}}
== Other Languages ==
{{i18n|love.graphics.getRendererInfo}}