#include "gpu/command_buffer/service/buffer_manager.h"
#include "gpu/command_buffer/service/gpu_service_test.h"
#include "gpu/command_buffer/service/indexed_buffer_binding_host.h"
#include "ui/gl/gl_mock.h"
namespace gpu {
namespace gles2 {
namespace {
const uint32_t kMaxBindings = …;
const GLuint kBufferClientId = …;
const GLuint kBufferServiceId = …;
}
class IndexedBufferBindingHostTest : public GpuServiceTest { … };
TEST_F(IndexedBufferBindingHostTest, DoBindBufferRangeUninitializedBuffer) { … }
TEST_F(IndexedBufferBindingHostTest, DoBindBufferRangeBufferWithoutEnoughSize) { … }
TEST_F(IndexedBufferBindingHostTest, RestoreBindings) { … }
}
}