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

Side by Side Diff: third_party/WebKit/Source/modules/webgl/WebGLContextAttributeHelpers.cpp

Issue 1844363003: Move WebGraphicsContext3D::Attributes to Platform::ContextAttributes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@rm-alphadepthetc
Patch Set: move-attributes: rebase Created 4 years, 8 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
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 "modules/webgl/WebGLContextAttributeHelpers.h" 5 #include "modules/webgl/WebGLContextAttributeHelpers.h"
6 6
7 #include "core/frame/Settings.h" 7 #include "core/frame/Settings.h"
8 8
9 namespace blink { 9 namespace blink {
10 10
11 WebGLContextAttributes toWebGLContextAttributes(const CanvasContextCreationAttri butes& attrs) 11 WebGLContextAttributes toWebGLContextAttributes(const CanvasContextCreationAttri butes& attrs)
12 { 12 {
13 WebGLContextAttributes result; 13 WebGLContextAttributes result;
14 result.setAlpha(attrs.alpha()); 14 result.setAlpha(attrs.alpha());
15 result.setDepth(attrs.depth()); 15 result.setDepth(attrs.depth());
16 result.setStencil(attrs.stencil()); 16 result.setStencil(attrs.stencil());
17 result.setAntialias(attrs.antialias()); 17 result.setAntialias(attrs.antialias());
18 result.setPremultipliedAlpha(attrs.premultipliedAlpha()); 18 result.setPremultipliedAlpha(attrs.premultipliedAlpha());
19 result.setPreserveDrawingBuffer(attrs.preserveDrawingBuffer()); 19 result.setPreserveDrawingBuffer(attrs.preserveDrawingBuffer());
20 result.setFailIfMajorPerformanceCaveat(attrs.failIfMajorPerformanceCaveat()) ; 20 result.setFailIfMajorPerformanceCaveat(attrs.failIfMajorPerformanceCaveat()) ;
21 return result; 21 return result;
22 } 22 }
23 23
24 WebGraphicsContext3D::Attributes toWebGraphicsContext3DAttributes(const WebGLCon textAttributes& attrs, const WebString& topDocumentURL, unsigned webGLVersion) 24 Platform::ContextAttributes toPlatformContextAttributes(const WebGLContextAttrib utes& attrs, unsigned webGLVersion)
25 { 25 {
26 WebGraphicsContext3D::Attributes result; 26 Platform::ContextAttributes result;
27 result.failIfMajorPerformanceCaveat = attrs.failIfMajorPerformanceCaveat(); 27 result.failIfMajorPerformanceCaveat = attrs.failIfMajorPerformanceCaveat();
28 result.shareResources = false; 28 result.shareResources = false;
29 result.preferDiscreteGPU = true; 29 result.preferDiscreteGPU = true;
30 result.topDocumentURL = topDocumentURL;
31 result.webGLVersion = webGLVersion; 30 result.webGLVersion = webGLVersion;
32 return result; 31 return result;
33 } 32 }
34 33
35 } // namespace blink 34 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698