Difference between revisions of "RendererInfoType"

(Created page)
 
m (Moved notice down a bit)
Line 1: Line 1:
{{notice|With the exception of the "name" renderer info type, everything returned by [[love.graphics.getRendererInfo]] is highly dependent on the OS, driver, and GPU vendor and should not be relied upon in code.}}
 
 
{{newin|[[0.9.0]]|090|type=enum}}
 
{{newin|[[0.9.0]]|090|type=enum}}
 
Types of information obtained with [[love.graphics.getRendererInfo]].
 
Types of information obtained with [[love.graphics.getRendererInfo]].
 +
{{notice|With the exception of the "name" renderer info type, everything returned by [[love.graphics.getRendererInfo]] is highly dependent on the OS, driver, and GPU vendor and should not be relied upon in code.}}
 
== Constants ==
 
== Constants ==
 
;name: The name of the renderer, e.g. "OpenGL".
 
;name: The name of the renderer, e.g. "OpenGL".

Revision as of 04:41, 13 August 2013

Available since LÖVE 0.9.0
This enum is not supported in earlier versions.

Types of information obtained with love.graphics.getRendererInfo.

O.png With the exception of the "name" renderer info type, everything returned by love.graphics.getRendererInfo is highly dependent on the OS, driver, and GPU vendor and should not be relied upon in code.  


Constants

name
The name of the renderer, e.g. "OpenGL".
version
The version of the renderer with some extra driver-dependent version info, e.g. "2.1 INTEL-8.10.44".
vendor
The name of the vendor, e.g. "Intel Inc.".
device
The name of the rendering device (GPU), e.g. "Intel HD Graphics 3000 OpenGL Engine".

See Also

Other Languages