// Copyright 2015 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "gpu/command_buffer/service/framebuffer_completeness_cache.h" #include "base/containers/contains.h" namespace gpu::gles2 { FramebufferCompletenessCache::FramebufferCompletenessCache() = default; FramebufferCompletenessCache::~FramebufferCompletenessCache() = default; bool FramebufferCompletenessCache::IsComplete( const std::string& signature) const { … } void FramebufferCompletenessCache::SetComplete(const std::string& signature) { … } } // namespace gpu::gles2