mirror of
https://github.com/visgl/luma.gl.git
synced 2026-01-25 14:08:58 +00:00
11 lines
324 B
TypeScript
11 lines
324 B
TypeScript
// luma.gl, MIT license
|
|
// Copyright (c) vis.gl contributors
|
|
|
|
// Avoid generating a lot of big context divs
|
|
import {createTestContext} from '@luma.gl/test-utils';
|
|
|
|
export const fixture = {
|
|
gl: createTestContext({webgl2: false, webgl1: true, throwOnError: true}),
|
|
gl2: createTestContext({webgl2: true, webgl1: false})
|
|
};
|