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

Unified Diff: cc/resources/scoped_gpu_raster.cc

Issue 1144693002: cc: Move files out of cc/resources/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: resources: android Created 5 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/resources/scoped_gpu_raster.h ('k') | cc/resources/scoped_gpu_raster_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/resources/scoped_gpu_raster.cc
diff --git a/cc/resources/scoped_gpu_raster.cc b/cc/resources/scoped_gpu_raster.cc
deleted file mode 100644
index 2f5c5c9c3426a42eca7532cb8919611884a983d1..0000000000000000000000000000000000000000
--- a/cc/resources/scoped_gpu_raster.cc
+++ /dev/null
@@ -1,51 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "cc/resources/scoped_gpu_raster.h"
-#include "gpu/command_buffer/client/gles2_interface.h"
-#include "third_party/khronos/GLES2/gl2.h"
-#include "third_party/khronos/GLES2/gl2ext.h"
-#include "third_party/skia/include/gpu/GrContext.h"
-
-using gpu::gles2::GLES2Interface;
-
-namespace cc {
-
-ScopedGpuRaster::ScopedGpuRaster(ContextProvider* context_provider)
- : context_provider_(context_provider) {
- BeginGpuRaster();
-}
-
-ScopedGpuRaster::~ScopedGpuRaster() {
- EndGpuRaster();
-}
-
-void ScopedGpuRaster::BeginGpuRaster() {
- GLES2Interface* gl = context_provider_->ContextGL();
-
- // TODO(alokp): Use a trace macro to push/pop markers.
- // Using push/pop functions directly incurs cost to evaluate function
- // arguments even when tracing is disabled.
- gl->PushGroupMarkerEXT(0, "GpuRasterization");
-
- class GrContext* gr_context = context_provider_->GrContext();
- gr_context->resetContext();
-}
-
-void ScopedGpuRaster::EndGpuRaster() {
- class GrContext* gr_context = context_provider_->GrContext();
- gr_context->flush();
-
- GLES2Interface* gl = context_provider_->ContextGL();
-
- // Restore default GL unpack alignment. TextureUploader expects this.
- gl->PixelStorei(GL_UNPACK_ALIGNMENT, 4);
-
- // TODO(alokp): Use a trace macro to push/pop markers.
- // Using push/pop functions directly incurs cost to evaluate function
- // arguments even when tracing is disabled.
- gl->PopGroupMarkerEXT();
-}
-
-} // namespace cc
« no previous file with comments | « cc/resources/scoped_gpu_raster.h ('k') | cc/resources/scoped_gpu_raster_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698