plotly.js
Version:
The open source javascript graphing library that powers plotly
27 lines (23 loc) • 720 B
JavaScript
/**
* Copyright 2012-2020, Plotly, Inc.
* All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
;
/**
* Clear gl frame (if any). This is a common pattern as
* we usually set `preserveDrawingBuffer: true` during
* gl context creation (e.g. via `reglUtils.prepare`).
*
* @param {DOM node or object} gd : graph div object
*/
module.exports = function clearGlCanvases(gd) {
var fullLayout = gd._fullLayout;
if(fullLayout._glcanvas && fullLayout._glcanvas.size()) {
fullLayout._glcanvas.each(function(d) {
if(d.regl) d.regl.clear({color: true, depth: true});
});
}
};