// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_VIZ_SERVICE_DISPLAY_BSP_TREE_H_ #define COMPONENTS_VIZ_SERVICE_DISPLAY_BSP_TREE_H_ #include <stddef.h> #include <algorithm> #include <memory> #include <vector> #include "base/containers/circular_deque.h" #include "components/viz/service/display/bsp_compare_result.h" #include "components/viz/service/display/draw_polygon.h" #include "components/viz/service/viz_service_export.h" namespace viz { struct BspNode { … }; class VIZ_SERVICE_EXPORT BspTree { … }; } // namespace viz #endif // COMPONENTS_VIZ_SERVICE_DISPLAY_BSP_TREE_H_