(gl)
| 5405 | |
| 5406 | |
| 5407 | function getModifiedParameters(gl) { |
| 5408 | var values = getParameters(GL_PARAMETER_DEFAULTS); |
| 5409 | var modified = {}; |
| 5410 | |
| 5411 | for (var key in GL_PARAMETER_DEFAULTS) { |
| 5412 | if (!deepArrayEqual(values[key], GL_PARAMETER_DEFAULTS[key])) { |
| 5413 | modified[key] = values[key]; |
| 5414 | } |
| 5415 | } |
| 5416 | |
| 5417 | return modified; |
| 5418 | } |
| 5419 | },{"@babel/runtime/helpers/esm/toConsumableArray":"Qv3s","@babel/runtime/helpers/esm/defineProperty":"gpd2","../webgl-utils":"CTd0","../utils/assert":"iVaU"}],"V1Wo":[function(require,module,exports) { |
| 5420 | var global = arguments[3]; |
| 5421 | "use strict"; |
nothing calls this directly
no test coverage detected