I'm trying to understand the behaviour of getContext() if I specify antialias: true, but the device doesn't support antialiasing. For example:
const gl = canvas.getContext('webgl', {
antialias: true
})
Will a context still be returned in this case?