blob: 9d89456fbcf46db948bb0bb22cd6c45cf3149dfd [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef GPU_COMMAND_BUFFER_COMMON_PRESENTATION_FEEDBACK_UTILS_H_
#define GPU_COMMAND_BUFFER_COMMON_PRESENTATION_FEEDBACK_UTILS_H_
#include <cstdint>
#include "gpu/gpu_export.h"
namespace gfx {
struct PresentationFeedback;
}
namespace gpu {
// Returns true if command buffer should send buffer presented message to
// client.
GPU_EXPORT bool ShouldSendBufferPresented(uint32_t swap_buffer_flags,
uint32_t presentation_feedback_flags);
// Returns true if command buffer should update vsync timing paramters based on
// presentation feedback.
GPU_EXPORT bool ShouldUpdateVsyncParams(
const gfx::PresentationFeedback& feedback);
} // namespace gpu
#endif // GPU_COMMAND_BUFFER_COMMON_PRESENTATION_FEEDBACK_UTILS_H_