// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_GFX_FRAME_DATA_H_ #define UI_GFX_FRAME_DATA_H_ #include <cstdint> #include "build/build_config.h" #include "ui/gfx/ca_layer_result.h" namespace gfx { // Contains per frame data, and is passed along with SwapBuffer, PostSubbuffer, // CommitOverlayPlanes type methods. struct FrameData { … }; } // namespace gfx #endif // UI_GFX_FRAME_DATA_H_