IsBrowserGPUEnabled: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Client function}} This function checks if the client has the "Enable GPU rendering" setting enabled, which allows the usage of things like WebGL in browsers. ==Syntax== <syntaxhighlight lang="lua"> bool isBrowserGPUEnabled() </syntaxhighlight> {{OOP||Element/Browser|gpuEnabled}} ===Returns=== Returns ''true'' if the client has browser GPU rendering enabled, ''false'' otherwise. ==See Also== {{CEF_functions}}")
 
m (Add note)
Line 2: Line 2:
{{Client function}}
{{Client function}}
This function checks if the client has the "Enable GPU rendering" setting enabled, which allows the usage of things like WebGL in browsers.
This function checks if the client has the "Enable GPU rendering" setting enabled, which allows the usage of things like WebGL in browsers.
**Note**: this is a global setting, not specific to any browser instance and can only be changed by the user.


==Syntax==
==Syntax==

Revision as of 00:44, 22 October 2024

This function checks if the client has the "Enable GPU rendering" setting enabled, which allows the usage of things like WebGL in browsers.

    • Note**: this is a global setting, not specific to any browser instance and can only be changed by the user.

Syntax

bool isBrowserGPUEnabled()

OOP Syntax Help! I don't understand this!

Method: Element/Browser(...)
Variable: .gpuEnabled


Returns

Returns true if the client has browser GPU rendering enabled, false otherwise.

See Also