// Copyright 2018 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/common/shared_image_usage.h" #include <cstdint> #include <string> #include <utility> #include "base/check.h" namespace gpu { const char kExoTextureLabelPrefix[] = …; bool IsValidClientUsage(SharedImageUsageSet usage) { … } bool HasGLES2ReadOrWriteUsage(SharedImageUsageSet usage) { … } std::string CreateLabelForSharedImageUsage(SharedImageUsageSet usage) { … } } // namespace gpu