@pixelshift.ai/gl-conformance
Version:
Khronos WebGL conformance test suite
18 lines (16 loc) • 393 B
JavaScript
var tape = require('tape')
var runTest = require('./run-test')
function filter(caseName) {
return true
}
runTest({
tape: tape,
createContext: function(width, height, options) {
var canvas = document.createElement('canvas')
canvas.width = width
canvas.height = height
var context = canvas.getContext('webgl', options)
return context
},
filter: filter
})