@awayjs/renderer
Version:
Renderer for AwayJS
16 lines (15 loc) • 408 B
JavaScript
/**
* @class away.sort.NullSort
*/
var RenderableNullSort = /** @class */ (function () {
function RenderableNullSort() {
}
RenderableNullSort.prototype.sortBlendedRenderables = function (head) {
return head;
};
RenderableNullSort.prototype.sortOpaqueRenderables = function (head) {
return head;
};
return RenderableNullSort;
}());
export { RenderableNullSort };