Home
last modified time | relevance | path

Searched refs:gl_ (Results 1 – 25 of 77) sorted by relevance

1234

/external/chromium_org/cc/output/
Dgeometry_binding.cc15 : gl_(gl), quad_vertices_vbo_(0), quad_elements_vbo_(0) { in GeometryBinding()
55 gl_->GenBuffers(1, &quad_vertices_vbo_); in GeometryBinding()
56 gl_->GenBuffers(1, &quad_elements_vbo_); in GeometryBinding()
57 GLC(gl_, gl_->BindBuffer(GL_ARRAY_BUFFER, quad_vertices_vbo_)); in GeometryBinding()
58 GLC(gl_, in GeometryBinding()
59 gl_->BufferData( in GeometryBinding()
61 GLC(gl_, gl_->BindBuffer(GL_ELEMENT_ARRAY_BUFFER, quad_elements_vbo_)); in GeometryBinding()
62 GLC(gl_, in GeometryBinding()
63 gl_->BufferData(GL_ELEMENT_ARRAY_BUFFER, in GeometryBinding()
70 gl_->DeleteBuffers(1, &quad_vertices_vbo_); in ~GeometryBinding()
[all …]
Dgl_renderer.cc56 : gl_(gl), has_passed_(true) {} in FallbackFence()
73 gl_->Finish(); in Synchronize()
76 gpu::gles2::GLES2Interface* gl_; member in cc::__anona8d5bc540111::FallbackFence
191 : gl_(gl), query_id_(0u), is_pending_(false), weak_ptr_factory_(this) { in SyncQuery()
192 gl_->GenQueriesEXT(1, &query_id_); in SyncQuery()
194 virtual ~SyncQuery() { gl_->DeleteQueriesEXT(1, &query_id_); } in ~SyncQuery()
216 gl_->BeginQueryEXT(GL_COMMANDS_COMPLETED_CHROMIUM, query_id_); in Set()
224 gl_->EndQueryEXT(GL_COMMANDS_COMPLETED_CHROMIUM); in End()
232 gl_->GetQueryObjectuivEXT( in IsPending()
243 gl_->GetQueryObjectuivEXT(query_id_, GL_QUERY_RESULT_EXT, &result); in Wait()
[all …]
/external/chromium_org/gpu/command_buffer/client/
Dgles2_trace_implementation_impl_autogen.h17 gl_->ActiveTexture(texture); in ActiveTexture()
22 gl_->AttachShader(program, shader); in AttachShader()
29 gl_->BindAttribLocation(program, index, name); in BindAttribLocation()
34 gl_->BindBuffer(target, buffer); in BindBuffer()
40 gl_->BindFramebuffer(target, framebuffer); in BindFramebuffer()
46 gl_->BindRenderbuffer(target, renderbuffer); in BindRenderbuffer()
51 gl_->BindTexture(target, texture); in BindTexture()
59 gl_->BlendColor(red, green, blue, alpha); in BlendColor()
64 gl_->BlendEquation(mode); in BlendEquation()
70 gl_->BlendEquationSeparate(modeRGB, modeAlpha); in BlendEquationSeparate()
[all …]
Dgles2_implementation_unittest_autogen.h23 gl_->AttachShader(1, 2); in TEST_F()
35 gl_->BindBuffer(GL_ARRAY_BUFFER, 2); in TEST_F()
38 gl_->BindBuffer(GL_ARRAY_BUFFER, 2); in TEST_F()
49 gl_->BindFramebuffer(GL_FRAMEBUFFER, 2); in TEST_F()
52 gl_->BindFramebuffer(GL_FRAMEBUFFER, 2); in TEST_F()
63 gl_->BindRenderbuffer(GL_RENDERBUFFER, 2); in TEST_F()
66 gl_->BindRenderbuffer(GL_RENDERBUFFER, 2); in TEST_F()
77 gl_->BlendColor(1, 2, 3, 4); in TEST_F()
88 gl_->BlendEquation(GL_FUNC_SUBTRACT); in TEST_F()
99 gl_->BlendEquationSeparate(GL_FUNC_SUBTRACT, GL_FUNC_ADD); in TEST_F()
[all …]
Dgles2_implementation_unittest.cc450 gl_.reset(new GLES2Implementation(helper_.get(), in Initialize()
457 if (!gl_->Initialize(kTransferBufferSize, in Initialize()
466 ::testing::Mock::VerifyAndClearExpectations(gl_.get()); in Initialize()
479 Mock::VerifyAndClear(gl_.get()); in TearDown()
484 gl_.reset(); in TearDown()
502 scoped_ptr<GLES2Implementation> gl_; member in gpu::gles2::GLES2ImplementationTest::TestContext
525 return gl_->query_tracker_->GetQuery(id); in GetQuery()
556 gl_ = test_contexts_[0].gl_.get(); in Initialize()
591 gl_->share_group()->set_program_info_manager(manager); in SetProgramInfoManager()
600 return gl_->GetError(); in CheckError()
[all …]
/external/chromium_org/gpu/command_buffer/service/
Dgles2_cmd_decoder_unittest_0_autogen.h28 EXPECT_CALL(*gl_, BlendColor(0.0f, 0.0f, 0.0f, 0.0f)) in SetupInitStateExpectations()
31 EXPECT_CALL(*gl_, BlendEquationSeparate(GL_FUNC_ADD, GL_FUNC_ADD)) in SetupInitStateExpectations()
34 EXPECT_CALL(*gl_, BlendFuncSeparate(GL_ONE, GL_ZERO, GL_ONE, GL_ZERO)) in SetupInitStateExpectations()
37 EXPECT_CALL(*gl_, ClearColor(0.0f, 0.0f, 0.0f, 0.0f)) in SetupInitStateExpectations()
40 EXPECT_CALL(*gl_, ClearDepth(1.0f)).Times(1).RetiresOnSaturation(); in SetupInitStateExpectations()
41 EXPECT_CALL(*gl_, ClearStencil(0)).Times(1).RetiresOnSaturation(); in SetupInitStateExpectations()
42 EXPECT_CALL(*gl_, ColorMask(true, true, true, true)) in SetupInitStateExpectations()
45 EXPECT_CALL(*gl_, CullFace(GL_BACK)).Times(1).RetiresOnSaturation(); in SetupInitStateExpectations()
46 EXPECT_CALL(*gl_, DepthFunc(GL_LESS)).Times(1).RetiresOnSaturation(); in SetupInitStateExpectations()
47 EXPECT_CALL(*gl_, DepthMask(true)).Times(1).RetiresOnSaturation(); in SetupInitStateExpectations()
[all …]
Dgles2_cmd_decoder_unittest_base.cc127 EXPECT_CALL(*gl_, VertexAttrib4f(ii, 0.0f, 0.0f, 0.0f, 1.0f)) in AddExpectationsForVertexAttribManager()
159 gl_.reset(new StrictMock<MockGLInterface>()); in InitDecoderWithCommandLine()
160 ::gfx::MockGLInterface::SetGLInterface(gl_.get()); in InitDecoderWithCommandLine()
194 gl_.get(), in InitDecoderWithCommandLine()
214 EXPECT_CALL(*gl_, GenVertexArraysOES(1, _)) in InitDecoderWithCommandLine()
217 EXPECT_CALL(*gl_, BindVertexArrayOES(_)).Times(1).RetiresOnSaturation(); in InitDecoderWithCommandLine()
225 EXPECT_CALL(*gl_, EnableVertexAttribArray(0)) in InitDecoderWithCommandLine()
234 EXPECT_CALL(*gl_, GenBuffersARB(arraysize(attrib_0_id), _)) in InitDecoderWithCommandLine()
238 EXPECT_CALL(*gl_, BindBuffer(GL_ARRAY_BUFFER, kServiceAttrib0BufferId)) in InitDecoderWithCommandLine()
241 EXPECT_CALL(*gl_, VertexAttribPointer(0, 1, GL_FLOAT, GL_FALSE, 0, NULL)) in InitDecoderWithCommandLine()
[all …]
Dgles2_cmd_decoder_unittest_1.cc51 EXPECT_CALL(*gl_, GetError()) in SpecializedSetup()
93 EXPECT_CALL(*gl_, GetError()) in SpecializedSetup()
114 EXPECT_CALL(*gl_, in SpecializedSetup()
130 EXPECT_CALL(*gl_, GetError()) in SpecializedSetup()
143 EXPECT_CALL(*gl_, GetError()) in SpecializedSetup()
177 EXPECT_CALL(*gl_, GetError()) in SpecializedSetup()
180 EXPECT_CALL(*gl_, GetError()) in SpecializedSetup()
200 gl_.get(), GetShader(kClientVertexShaderId), true); in SpecializedSetup()
202 gl_.get(), GetShader(kClientFragmentShaderId), true); in SpecializedSetup()
205 EXPECT_CALL(*gl_, in SpecializedSetup()
[all …]
Dgles2_cmd_decoder_unittest_drawing.cc117 EXPECT_CALL(*gl_, DrawArrays(GL_TRIANGLES, 0, kNumVertices)) in DirtyStateMaskTest()
146 EXPECT_CALL(*gl_, DrawArrays(GL_TRIANGLES, 0, kNumVertices)) in TEST_P()
154 EXPECT_CALL(*gl_, GetError()) in TEST_P()
160 EXPECT_CALL(*gl_, GetIntegerv(GL_COLOR_WRITEMASK, result->GetData())) in TEST_P()
179 EXPECT_CALL(*gl_, DepthMask(true)).Times(0).RetiresOnSaturation(); in TEST_P()
197 EXPECT_CALL(*gl_, DrawArrays(GL_TRIANGLES, 0, kNumVertices)) in TEST_P()
205 EXPECT_CALL(*gl_, GetError()) in TEST_P()
211 EXPECT_CALL(*gl_, GetIntegerv(GL_DEPTH_WRITEMASK, result->GetData())) in TEST_P()
228 EXPECT_CALL(*gl_, StencilMask(kMask)).Times(0).RetiresOnSaturation(); in TEST_P()
246 EXPECT_CALL(*gl_, DrawArrays(GL_TRIANGLES, 0, kNumVertices)) in TEST_P()
[all …]
Dgles2_cmd_decoder_unittest_2_autogen.h16 EXPECT_CALL(*gl_, Scissor(1, 2, 3, 4)); in TEST_P()
25 EXPECT_CALL(*gl_, Scissor(_, _, _, _)).Times(0); in TEST_P()
34 EXPECT_CALL(*gl_, Scissor(_, _, _, _)).Times(0); in TEST_P()
46 EXPECT_CALL(*gl_, StencilFunc(GL_NEVER, 2, 3)); in TEST_P()
55 EXPECT_CALL(*gl_, StencilFuncSeparate(GL_FRONT, GL_NEVER, 3, 4)); in TEST_P()
80 EXPECT_CALL(*gl_, StencilOp(GL_KEEP, GL_INCR, GL_KEEP)); in TEST_P()
89 EXPECT_CALL(*gl_, StencilOpSeparate(GL_FRONT, GL_INCR, GL_KEEP, GL_KEEP)); in TEST_P()
99 EXPECT_CALL(*gl_, in TEST_P()
109 EXPECT_CALL(*gl_, TexParameterf(_, _, _)).Times(0); in TEST_P()
118 EXPECT_CALL(*gl_, TexParameterf(_, _, _)).Times(0); in TEST_P()
[all …]
Dgles2_cmd_decoder_unittest_framebuffers.cc75 EXPECT_CALL(*gl_, CheckFramebufferStatusEXT(_)).Times(0); in TEST_P()
99 EXPECT_CALL(*gl_, DrawArrays(GL_TRIANGLES, 0, kNumVertices)) in TEST_P()
109 EXPECT_CALL(*gl_, FramebufferRenderbufferEXT(_, _, _, _)).Times(0); in TEST_P()
120 EXPECT_CALL(*gl_, FramebufferTexture2DEXT(_, _, _, _, _)).Times(0); in TEST_P()
131 EXPECT_CALL(*gl_, GetError()) in TEST_P()
135 EXPECT_CALL(*gl_, GetFramebufferAttachmentParameterivEXT(_, _, _, _)) in TEST_P()
150 EXPECT_CALL(*gl_, GetError()) in TEST_P()
153 EXPECT_CALL(*gl_, in TEST_P()
160 EXPECT_CALL(*gl_, GetError()) in TEST_P()
163 EXPECT_CALL(*gl_, GetError()) in TEST_P()
[all …]
Dgles2_cmd_decoder_unittest_1_autogen.h18 EXPECT_CALL(*gl_, AttachShader(kServiceProgramId, kServiceShaderId)); in TEST_P()
28 EXPECT_CALL(*gl_, BindBuffer(GL_ARRAY_BUFFER, kServiceBufferId)); in TEST_P()
37 EXPECT_CALL(*gl_, BindBuffer(GL_ARRAY_BUFFER, kNewServiceId)); in TEST_P()
38 EXPECT_CALL(*gl_, GenBuffersARB(1, _)) in TEST_P()
49 EXPECT_CALL(*gl_, BindBuffer(_, _)).Times(0); in TEST_P()
58 EXPECT_CALL(*gl_, BindFramebufferEXT(GL_FRAMEBUFFER, kServiceFramebufferId)); in TEST_P()
67 EXPECT_CALL(*gl_, BindFramebufferEXT(GL_FRAMEBUFFER, kNewServiceId)); in TEST_P()
68 EXPECT_CALL(*gl_, GenFramebuffersEXT(1, _)) in TEST_P()
79 EXPECT_CALL(*gl_, BindFramebufferEXT(_, _)).Times(0); in TEST_P()
88 EXPECT_CALL(*gl_, BindFramebufferEXT(_, _)).Times(0); in TEST_P()
[all …]
Dquery_manager_unittest.cc47 gl_.get(), in SetUp()
65 EXPECT_CALL(*gl_, GenQueriesARB(1, _)) in CreateQuery()
74 EXPECT_CALL(*gl_, BeginQueryARB(query->target(), service_id)) in QueueQuery()
77 EXPECT_CALL(*gl_, EndQueryARB(query->target())) in QueueQuery()
185 EXPECT_CALL(*gl_, DeleteQueriesARB(1, ::testing::Pointee(kService1Id))) in TEST_F()
243 EXPECT_CALL(*gl_, in TEST_F()
254 EXPECT_CALL(*gl_, in TEST_F()
258 EXPECT_CALL(*gl_, in TEST_F()
330 EXPECT_CALL(*gl_, in TEST_F()
334 EXPECT_CALL(*gl_, in TEST_F()
[all …]
Dgles2_cmd_decoder_unittest_2.cc40 EXPECT_CALL(*gl_, Uniform1i(1, _)).Times(AnyNumber()); in TestAcceptedUniform()
41 EXPECT_CALL(*gl_, Uniform1iv(1, _, _)).Times(AnyNumber()); in TestAcceptedUniform()
42 EXPECT_CALL(*gl_, Uniform2iv(1, _, _)).Times(AnyNumber()); in TestAcceptedUniform()
43 EXPECT_CALL(*gl_, Uniform3iv(1, _, _)).Times(AnyNumber()); in TestAcceptedUniform()
44 EXPECT_CALL(*gl_, Uniform4iv(1, _, _)).Times(AnyNumber()); in TestAcceptedUniform()
45 EXPECT_CALL(*gl_, Uniform1f(1, _)).Times(AnyNumber()); in TestAcceptedUniform()
46 EXPECT_CALL(*gl_, Uniform1fv(1, _, _)).Times(AnyNumber()); in TestAcceptedUniform()
47 EXPECT_CALL(*gl_, Uniform2fv(1, _, _)).Times(AnyNumber()); in TestAcceptedUniform()
48 EXPECT_CALL(*gl_, Uniform3fv(1, _, _)).Times(AnyNumber()); in TestAcceptedUniform()
49 EXPECT_CALL(*gl_, Uniform4fv(1, _, _)).Times(AnyNumber()); in TestAcceptedUniform()
[all …]
Dgles2_cmd_decoder_unittest_textures.cc59 EXPECT_CALL(*gl_, GenerateMipmapEXT(_)).Times(0); in TEST_P()
88 EXPECT_CALL(*gl_, GenerateMipmapEXT(GL_TEXTURE_2D)).Times(1); in TEST_P()
89 EXPECT_CALL(*gl_, GetError()) in TEST_P()
101 EXPECT_CALL(*gl_, GenerateMipmapEXT(_)).Times(0); in TEST_P()
115 EXPECT_CALL(*gl_, GenerateMipmapEXT(GL_TEXTURE_2D)); in TEST_P()
116 EXPECT_CALL(*gl_, GetError()) in TEST_P()
138 EXPECT_CALL(*gl_, GenerateMipmapEXT(_)).Times(0); in TEST_P()
153 *gl_, in TEST_P()
158 EXPECT_CALL(*gl_, GenerateMipmapEXT(GL_TEXTURE_2D)); in TEST_P()
160 *gl_, in TEST_P()
[all …]
Dgles2_cmd_decoder_unittest_programs.cc94 EXPECT_CALL(*gl_, GetUniformiv(kServiceProgramId, kUniform2RealLocation, _)) in TEST_P()
110 EXPECT_CALL(*gl_, in TEST_P()
128 EXPECT_CALL(*gl_, GetUniformiv(_, _, _)).Times(0); in TEST_P()
145 EXPECT_CALL(*gl_, CreateProgram()) in TEST_P()
172 EXPECT_CALL(*gl_, GetUniformiv(_, _, _)).Times(0); in TEST_P()
184 EXPECT_CALL(*gl_, GetUniformiv(_, _, _)).Times(0); in TEST_P()
202 EXPECT_CALL(*gl_, GetUniformfv(kServiceProgramId, kUniform2RealLocation, _)) in TEST_P()
218 EXPECT_CALL(*gl_, in TEST_P()
236 EXPECT_CALL(*gl_, GetUniformfv(_, _, _)).Times(0); in TEST_P()
253 EXPECT_CALL(*gl_, CreateProgram()) in TEST_P()
[all …]
Dprogram_manager_unittest.cc79 EXPECT_CALL(*gl_, DeleteProgram(kService1Id)) in TEST_F()
105 EXPECT_CALL(*gl_, DeleteProgram(kService2Id)) in TEST_F()
230 TestHelper::SetShaderStates(gl_.get(), vertex_shader, true); in SetUp()
231 TestHelper::SetShaderStates(gl_.get(), fragment_shader, true); in SetUp()
247 gl_.get(), attribs, num_attribs, uniforms, num_uniforms, service_id); in SetupShader()
258 gl_.get(), uniforms, num_uniforms); in SetupExpectationsForClearingUniforms()
347 gl_.get(), vshader, true, NULL, NULL, in SetupShaderVariableTest()
350 gl_.get(), fshader, true, NULL, NULL, in SetupShaderVariableTest()
543 TestHelper::SetShaderStates(gl_.get(), vshader, true); in TEST_F()
547 TestHelper::SetShaderStates(gl_.get(), fshader, true); in TEST_F()
[all …]
/external/chromium_org/content/common/gpu/client/
Dgl_helper_scaling.cc28 : gl_(gl), helper_(helper), vertex_attributes_buffer_(gl_) { in GLHelperScaling()
41 : gl_(gl), in ShaderProgram()
43 program_(gl_->CreateProgram()), in ShaderProgram()
70 ~ShaderProgram() { gl_->DeleteProgram(program_); } in ~ShaderProgram()
72 GLES2Interface* gl_; member in content::ShaderProgram
121 : gl_(gl), in ScalerImpl()
143 gl_->GenTextures(1, &intermediate_texture_); in ScalerImpl()
144 ScopedTextureBinder<GL_TEXTURE_2D> texture_binder(gl_, in ScalerImpl()
146 gl_->TexImage2D(GL_TEXTURE_2D, in ScalerImpl()
160 gl_->DeleteTextures(1, &intermediate_texture_); in ~ScalerImpl()
[all …]
Dgl_helper.cc36 explicit ScopedFlush(gpu::gles2::GLES2Interface* gl) : gl_(gl) {} in ScopedFlush()
38 ~ScopedFlush() { gl_->Flush(); } in ~ScopedFlush()
41 gpu::gles2::GLES2Interface* gl_; member in __anonfa1ba7130111::ScopedFlush
118 : gl_(gl), in CopyTextureToImpl()
123 const GLubyte* extensions = gl_->GetString(GL_EXTENSIONS); in CopyTextureToImpl()
129 gl_->GetIntegerv(GL_MAX_DRAW_BUFFERS_EXT, &max_draw_buffers_); in CopyTextureToImpl()
261 GLES2Interface* gl_; member in content::GLHelper::CopyTextureToImpl::ReadbackYUVImpl
299 GLES2Interface* gl_; member in content::GLHelper::CopyTextureToImpl::ReadbackYUV_MRT
357 GLES2Interface* gl_; member in content::GLHelper::CopyTextureToImpl
394 gl_->GenTextures(1, &dst_texture); in ScaleTexture()
[all …]
Dgl_helper_readback_support.cc13 : gl_(gl) { in GLHelperReadbackSupport()
78 content::ScopedTexture dst_texture(gl_); in GetAdditionalFormat()
79 ScopedTextureBinder<GL_TEXTURE_2D> texture_binder(gl_, dst_texture); in GetAdditionalFormat()
80 gl_->TexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); in GetAdditionalFormat()
81 gl_->TexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); in GetAdditionalFormat()
82 gl_->TexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); in GetAdditionalFormat()
83 gl_->TexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); in GetAdditionalFormat()
84 gl_->TexImage2D( in GetAdditionalFormat()
86 ScopedFramebuffer dst_framebuffer(gl_); in GetAdditionalFormat()
87 ScopedFramebufferBinder<GL_FRAMEBUFFER> framebuffer_binder(gl_, in GetAdditionalFormat()
[all …]
/external/chromium_org/webkit/common/gpu/
Dwebgraphicscontext3d_impl.cc62 gl_->glname(); \
67 return gl_->glname(); \
72 gl_->glname(a1); \
77 return gl_->glname(a1); \
82 return gl_->glname(a1) ? true : false; \
87 gl_->glname(a1, a2); \
92 return gl_->glname(a1, a2); \
97 gl_->glname(a1, a2, a3); \
102 return gl_->glname(a1, a2, a3); \
107 gl_->glname(a1, a2, a3, a4); \
[all …]
/external/chromium_org/cc/resources/
Dtexture_uploader.cc44 : gl_(gl), in Query()
49 gl_->GenQueriesEXT(1, &query_id_); in Query()
52 TextureUploader::Query::~Query() { gl_->DeleteQueriesEXT(1, &query_id_); } in ~Query()
57 gl_->BeginQueryEXT(GL_COMMANDS_ISSUED_CHROMIUM, query_id_); in Begin()
61 gl_->EndQueryEXT(GL_COMMANDS_ISSUED_CHROMIUM); in End()
66 gl_->GetQueryObjectuivEXT( in IsPending()
73 gl_->GetQueryObjectuivEXT(query_id_, GL_QUERY_RESULT_EXT, &value_); in Value()
80 : gl_(gl), in TextureUploader()
126 available_queries_.push_back(Query::Create(gl_)); in BeginQuery()
171 gl_->ShallowFlushCHROMIUM(); in Flush()
[all …]
/external/chromium_org/gpu/config/
Dgpu_info_collector_unittest.cc23 gl_.reset(new ::testing::StrictMock< ::gfx::MockGLInterface>()); in SetUp()
24 ::gfx::MockGLInterface::SetGLInterface(gl_.get()); in SetUp()
77 EXPECT_CALL(*gl_, GetString(GL_EXTENSIONS)) in SetUp()
80 EXPECT_CALL(*gl_, GetString(GL_SHADING_LANGUAGE_VERSION)) in SetUp()
83 EXPECT_CALL(*gl_, GetString(GL_VERSION)) in SetUp()
86 EXPECT_CALL(*gl_, GetString(GL_VENDOR)) in SetUp()
89 EXPECT_CALL(*gl_, GetString(GL_RENDERER)) in SetUp()
96 gl_.reset(); in TearDown()
101 scoped_ptr< ::testing::StrictMock< ::gfx::MockGLInterface> > gl_; member in gpu::GPUInfoCollectorTest
/external/chromium_org/gpu/command_buffer/tests/
Dgl_unittests_android.cc26 gl_.Initialize(GLManager::Options()); in SetUp()
30 gl_.Destroy(); in TearDown()
33 GLManager gl_; member in gpu::GLSurfaceTextureTest
50 gl_.SetSurface(gl_surface.get()); in TEST_F()
Dgl_gpu_memory_buffer_unittest.cc40 gl_.Initialize(GLManager::Options()); in SetUp()
41 gl_.MakeCurrent(); in SetUp()
64 gl_.Destroy(); in TearDown()
67 GLManager gl_; member in gpu::gles2::GpuMemoryBufferTest
80 EXPECT_TRUE(gl_.decoder()->GetImageManager()->LookupImage(image_id) != NULL); in TEST_F()

1234