// 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_CLIENT_BUFFER_TRACKER_H_ #define GPU_COMMAND_BUFFER_CLIENT_BUFFER_TRACKER_H_ #include <stdint.h> #include "base/memory/raw_ptr.h" #include "gles2_impl_export.h" #include "gpu/command_buffer/common/gles2_cmd_format.h" namespace gpu { class MappedMemoryManager; namespace gles2 { // Tracks buffer objects for client side of command buffer. class GLES2_IMPL_EXPORT BufferTracker { … }; } // namespace gles2 } // namespace gpu #endif // GPU_COMMAND_BUFFER_CLIENT_BUFFER_TRACKER_H_