diff --git a/src/ol/webgl/Shader.js b/src/ol/webgl/Shader.js deleted file mode 100644 index ed9e0f0566..0000000000 --- a/src/ol/webgl/Shader.js +++ /dev/null @@ -1,48 +0,0 @@ -/** - * @module ol/webgl/Shader - */ -import {abstract} from '../util.js'; - -/** - * @abstract - */ -class WebGLShader { - - /** - * @param {string} source Source. - */ - constructor(source) { - - /** - * @private - * @type {string} - */ - this.source_ = source; - - } - - /** - * @return {boolean} Is animated? - */ - isAnimated() { - return false; - } - - /** - * @abstract - * @return {number} Type. - */ - getType() { - return abstract(); - } - - /** - * @return {string} Source. - */ - getSource() { - return this.source_; - } -} - - -export default WebGLShader;