// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef GPU_COMMAND_BUFFER_SERVICE_ID_MANAGER_H_ #define GPU_COMMAND_BUFFER_SERVICE_ID_MANAGER_H_ #include <unordered_map> #include "gpu/command_buffer/service/gl_utils.h" #include "gpu/gpu_gles2_export.h" namespace gpu { namespace gles2 { // This class maps one set of ids to another. // // NOTE: To support shared resources an instance of this class will // need to be shared by multiple GLES2Decoders. class GPU_GLES2_EXPORT IdManager { … }; } // namespace gles2 } // namespace gpu #endif // GPU_COMMAND_BUFFER_SERVICE_ID_MANAGER_H_