Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(383)

Side by Side Diff: cc/resources/scoped_gpu_raster.cc

Issue 375303002: cc: Refactor ResourceProvider. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixing typing error in build.gn Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « cc/resources/scoped_gpu_raster.h ('k') | cc/test/pixel_test.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "cc/resources/scoped_gpu_raster.h"
6 #include "gpu/command_buffer/client/gles2_interface.h"
7 #include "third_party/khronos/GLES2/gl2.h"
8 #include "third_party/khronos/GLES2/gl2ext.h"
9 #include "third_party/skia/include/gpu/GrContext.h"
10
11 using gpu::gles2::GLES2Interface;
12
13 namespace cc {
14
15 ScopedGpuRaster::ScopedGpuRaster(ContextProvider* context_provider)
16 : context_provider_(context_provider) {
17 BeginGpuRaster();
18 }
19
20 ScopedGpuRaster::~ScopedGpuRaster() {
21 EndGpuRaster();
22 }
23
24 void ScopedGpuRaster::BeginGpuRaster() {
25 GLES2Interface* gl = context_provider_->ContextGL();
26
27 // TODO(alokp): Use a trace macro to push/pop markers.
28 // Using push/pop functions directly incurs cost to evaluate function
29 // arguments even when tracing is disabled.
30 gl->PushGroupMarkerEXT(0, "GpuRasterization");
31
32 class GrContext* gr_context = context_provider_->GrContext();
33 if (gr_context)
34 gr_context->resetContext();
35 }
36
37 void ScopedGpuRaster::EndGpuRaster() {
38 GLES2Interface* gl = context_provider_->ContextGL();
39
40 class GrContext* gr_context = context_provider_->GrContext();
41 if (gr_context)
42 gr_context->flush();
43
44 // TODO(alokp): Use a trace macro to push/pop markers.
45 // Using push/pop functions directly incurs cost to evaluate function
46 // arguments even when tracing is disabled.
47 gl->PopGroupMarkerEXT();
48 }
49
50 } // namespace cc
OLDNEW
« no previous file with comments | « cc/resources/scoped_gpu_raster.h ('k') | cc/test/pixel_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698