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

Unified Diff: remoting/host/mac/scoped_pixel_buffer_object.cc

Issue 10868083: Move ScopedPixelBuffer out of VideoFrameCapturer implementation for Mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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 | « remoting/host/mac/scoped_pixel_buffer_object.h ('k') | remoting/host/video_frame_capturer_mac.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/mac/scoped_pixel_buffer_object.cc
diff --git a/remoting/host/mac/scoped_pixel_buffer_object.cc b/remoting/host/mac/scoped_pixel_buffer_object.cc
new file mode 100644
index 0000000000000000000000000000000000000000..7ca2c276c4014ec93d280a05559e70e970bea1a4
--- /dev/null
+++ b/remoting/host/mac/scoped_pixel_buffer_object.cc
@@ -0,0 +1,47 @@
+// Copyright (c) 2012 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 "remoting/host/mac/scoped_pixel_buffer_object.h"
+
+namespace remoting {
+
+ScopedPixelBufferObject::ScopedPixelBufferObject()
+ : cgl_context_(NULL),
+ pixel_buffer_object_(0) {
+}
+
+ScopedPixelBufferObject::~ScopedPixelBufferObject() {
+ Release();
+}
+
+bool ScopedPixelBufferObject::Init(CGLContextObj cgl_context,
+ int size_in_bytes) {
+ cgl_context_ = cgl_context;
+ CGLContextObj CGL_MACRO_CONTEXT = cgl_context_;
+ glGenBuffersARB(1, &pixel_buffer_object_);
+ if (glGetError() == GL_NO_ERROR) {
+ glBindBufferARB(GL_PIXEL_PACK_BUFFER_ARB, pixel_buffer_object_);
+ glBufferDataARB(GL_PIXEL_PACK_BUFFER_ARB, size_in_bytes, NULL,
+ GL_STREAM_READ_ARB);
+ glBindBufferARB(GL_PIXEL_PACK_BUFFER_ARB, 0);
+ if (glGetError() != GL_NO_ERROR) {
+ Release();
+ }
+ } else {
+ cgl_context_ = NULL;
+ pixel_buffer_object_ = 0;
+ }
+ return pixel_buffer_object_ != 0;
+}
+
+void ScopedPixelBufferObject::Release() {
+ if (pixel_buffer_object_) {
+ CGLContextObj CGL_MACRO_CONTEXT = cgl_context_;
+ glDeleteBuffersARB(1, &pixel_buffer_object_);
+ cgl_context_ = NULL;
+ pixel_buffer_object_ = 0;
+ }
+}
+
+} // namespace remoting
« no previous file with comments | « remoting/host/mac/scoped_pixel_buffer_object.h ('k') | remoting/host/video_frame_capturer_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698