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

Side by Side Diff: mojo/gles2/gles2_context.cc

Issue 1346113003: Mandoline: WebGL: Pass context creation attributes to GPU. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 years, 3 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 | « mojo/gles2/gles2_context.h ('k') | mojo/gles2/gles2_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "mojo/gles2/gles2_context.h" 5 #include "mojo/gles2/gles2_context.h"
6 6
7 #include "gpu/command_buffer/client/gles2_cmd_helper.h" 7 #include "gpu/command_buffer/client/gles2_cmd_helper.h"
8 #include "gpu/command_buffer/client/gles2_implementation.h" 8 #include "gpu/command_buffer/client/gles2_implementation.h"
9 #include "gpu/command_buffer/client/transfer_buffer.h" 9 #include "gpu/command_buffer/client/transfer_buffer.h"
10 #include "mojo/public/c/gles2/gles2.h" 10 #include "mojo/public/c/gles2/gles2.h"
11 #include "mojo/public/cpp/system/core.h" 11 #include "mojo/public/cpp/system/core.h"
12 12
13 namespace gles2 { 13 namespace gles2 {
14 14
15 namespace { 15 namespace {
16 const size_t kDefaultCommandBufferSize = 1024 * 1024; 16 const size_t kDefaultCommandBufferSize = 1024 * 1024;
17 const size_t kDefaultStartTransferBufferSize = 1 * 1024 * 1024; 17 const size_t kDefaultStartTransferBufferSize = 1 * 1024 * 1024;
18 const size_t kDefaultMinTransferBufferSize = 1 * 256 * 1024; 18 const size_t kDefaultMinTransferBufferSize = 1 * 256 * 1024;
19 const size_t kDefaultMaxTransferBufferSize = 16 * 1024 * 1024; 19 const size_t kDefaultMaxTransferBufferSize = 16 * 1024 * 1024;
20 } 20 }
21 21
22 GLES2Context::GLES2Context(const MojoAsyncWaiter* async_waiter, 22 GLES2Context::GLES2Context(const std::vector<int32_t>& attribs,
23 const MojoAsyncWaiter* async_waiter,
23 mojo::ScopedMessagePipeHandle command_buffer_handle, 24 mojo::ScopedMessagePipeHandle command_buffer_handle,
24 MojoGLES2ContextLost lost_callback, 25 MojoGLES2ContextLost lost_callback,
25 void* closure) 26 void* closure)
26 : command_buffer_(this, async_waiter, command_buffer_handle.Pass()), 27 : command_buffer_(this, attribs, async_waiter,
28 command_buffer_handle.Pass()),
27 lost_callback_(lost_callback), 29 lost_callback_(lost_callback),
28 closure_(closure) { 30 closure_(closure) {
29 } 31 }
30 32
31 GLES2Context::~GLES2Context() {} 33 GLES2Context::~GLES2Context() {}
32 34
33 bool GLES2Context::Initialize() { 35 bool GLES2Context::Initialize() {
34 if (!command_buffer_.Initialize()) 36 if (!command_buffer_.Initialize())
35 return false; 37 return false;
36 gles2_helper_.reset(new gpu::gles2::GLES2CmdHelper(&command_buffer_)); 38 gles2_helper_.reset(new gpu::gles2::GLES2CmdHelper(&command_buffer_));
(...skipping 18 matching lines...) Expand all
55 &command_buffer_)); 57 &command_buffer_));
56 return implementation_->Initialize(kDefaultStartTransferBufferSize, 58 return implementation_->Initialize(kDefaultStartTransferBufferSize,
57 kDefaultMinTransferBufferSize, 59 kDefaultMinTransferBufferSize,
58 kDefaultMaxTransferBufferSize, 60 kDefaultMaxTransferBufferSize,
59 gpu::gles2::GLES2Implementation::kNoLimit); 61 gpu::gles2::GLES2Implementation::kNoLimit);
60 } 62 }
61 63
62 void GLES2Context::ContextLost() { lost_callback_(closure_); } 64 void GLES2Context::ContextLost() { lost_callback_(closure_); }
63 65
64 } // namespace gles2 66 } // namespace gles2
OLDNEW
« no previous file with comments | « mojo/gles2/gles2_context.h ('k') | mojo/gles2/gles2_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698