Rename _ol_webgl_Vertex_ to WebGLVertex
This commit is contained in:
@@ -6,12 +6,12 @@
|
||||
|
||||
import {DEBUG_WEBGL} from '../../../index.js';
|
||||
import WebGLFragment from '../../../webgl/Fragment.js';
|
||||
import _ol_webgl_Vertex_ from '../../../webgl/Vertex.js';
|
||||
import WebGLVertex from '../../../webgl/Vertex.js';
|
||||
|
||||
export const fragment = new WebGLFragment(DEBUG_WEBGL ?
|
||||
'precision mediump float;\n{{{originalFragmentSource}}}' :
|
||||
'precision mediump float;{{{fragmentSource}}}');
|
||||
|
||||
export const vertex = new _ol_webgl_Vertex_(DEBUG_WEBGL ?
|
||||
export const vertex = new WebGLVertex(DEBUG_WEBGL ?
|
||||
'{{{originalVertexSource}}}' :
|
||||
'{{{vertexSource}}}');
|
||||
|
||||
Reference in New Issue
Block a user