Is there a way to check chrome chrome: // flags / values โ€‹โ€‹using javascript?

I want to check if the [Disable 2D accelerated canvas] parameter had chrome://flags/ to "Disabled" or "Enabled" using a java script when loading the page. is there any way?

+6
source share
1 answer

Well, try to answer the question: is the user canvas speeding up?

With GPU canvas, there is virtually no time difference between drawImage () on a rotating and non-rotating context. Comparing the same operations with the canvas running on the CPU gives big differences.

+1
source

All Articles