/** * Copyright (c) 2019-2025 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose */ import { WebGLContext } from '../../webgl/context.js'; import { Texture } from '../../../mol-gl/webgl/texture.js'; import { Vec2, Vec3 } from '../../../mol-math/linear-algebra.js'; export interface HistogramPyramid { pyramidTex: Texture; count: number; height: number; levels: number; scale: Vec2; } export declare function createHistogramPyramid(ctx: WebGLContext, inputTexture: Texture, scale: Vec2, gridTexDim: Vec3): HistogramPyramid;