robertphillips@google.com | 6177e69 | 2013-02-28 20:16:25 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2013 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
| 8 | |
| 9 | #ifndef GrGLContext_DEFINED |
| 10 | #define GrGLContext_DEFINED |
| 11 | |
| 12 | #include "gl/GrGLExtensions.h" |
| 13 | #include "gl/GrGLInterface.h" |
| 14 | #include "GrGLCaps.h" |
| 15 | #include "GrGLSL.h" |
| 16 | #include "GrGLUtil.h" |
| 17 | |
| 18 | #include "SkString.h" |
| 19 | |
| 20 | /** |
skia.committer@gmail.com | 631cdcb | 2013-03-01 12:12:55 +0000 | [diff] [blame] | 21 | * Encapsulates information about an OpenGL context including the OpenGL |
commit-bot@chromium.org | 9e90aed | 2014-01-16 16:35:09 +0000 | [diff] [blame] | 22 | * version, the GrGLStandard type of the context, and GLSL version. |
robertphillips@google.com | 6177e69 | 2013-02-28 20:16:25 +0000 | [diff] [blame] | 23 | */ |
| 24 | class GrGLContextInfo { |
| 25 | public: |
| 26 | /** |
| 27 | * Default constructor |
| 28 | */ |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 29 | GrGLContextInfo() { |
| 30 | fGLCaps.reset(SkNEW(GrGLCaps)); |
| 31 | this->reset(); |
| 32 | } |
robertphillips@google.com | 6177e69 | 2013-02-28 20:16:25 +0000 | [diff] [blame] | 33 | |
commit-bot@chromium.org | b1854a8 | 2014-01-16 18:39:04 +0000 | [diff] [blame] | 34 | GrGLContextInfo(const GrGLContextInfo& that) { |
| 35 | fGLCaps.reset(SkNEW(GrGLCaps)); |
| 36 | *this = that; |
| 37 | } |
| 38 | |
| 39 | GrGLContextInfo& operator= (const GrGLContextInfo&); |
skia.committer@gmail.com | 631cdcb | 2013-03-01 12:12:55 +0000 | [diff] [blame] | 40 | |
robertphillips@google.com | 6177e69 | 2013-02-28 20:16:25 +0000 | [diff] [blame] | 41 | /** |
| 42 | * Initializes a GrGLContextInfo from a GrGLInterface and the currently |
| 43 | * bound OpenGL context accessible by the GrGLInterface. |
| 44 | */ |
| 45 | bool initialize(const GrGLInterface* interface); |
| 46 | bool isInitialized() const; |
| 47 | |
commit-bot@chromium.org | b1854a8 | 2014-01-16 18:39:04 +0000 | [diff] [blame] | 48 | GrGLStandard standard() const { return fInterface->fStandard; } |
robertphillips@google.com | 6177e69 | 2013-02-28 20:16:25 +0000 | [diff] [blame] | 49 | GrGLVersion version() const { return fGLVersion; } |
| 50 | GrGLSLGeneration glslGeneration() const { return fGLSLGeneration; } |
| 51 | GrGLVendor vendor() const { return fVendor; } |
commit-bot@chromium.org | 0694ea7 | 2013-09-18 13:00:28 +0000 | [diff] [blame] | 52 | GrGLRenderer renderer() const { return fRenderer; } |
commit-bot@chromium.org | 459104c | 2013-06-14 14:42:56 +0000 | [diff] [blame] | 53 | /** Is this a mesa-based driver. Does not mean it is the osmesa software rasterizer. */ |
| 54 | bool isMesa() const { return fIsMesa; } |
commit-bot@chromium.org | c9424b8 | 2013-10-30 20:03:16 +0000 | [diff] [blame] | 55 | /** Are we running inside Chromium (using the command buffer)? We make some different tradeoffs |
| 56 | about what errors to check for because queries are synchronous. We should probably expose |
| 57 | this as an option for clients other than Chromium. */ |
| 58 | bool isChromium() const { return fIsChromium; } |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 59 | const GrGLCaps* caps() const { return fGLCaps.get(); } |
| 60 | GrGLCaps* caps() { return fGLCaps; } |
robertphillips@google.com | 6177e69 | 2013-02-28 20:16:25 +0000 | [diff] [blame] | 61 | bool hasExtension(const char* ext) const { |
| 62 | if (!this->isInitialized()) { |
| 63 | return false; |
| 64 | } |
commit-bot@chromium.org | 90313cc | 2014-01-17 15:05:38 +0000 | [diff] [blame] | 65 | return fInterface->hasExtension(ext); |
robertphillips@google.com | 6177e69 | 2013-02-28 20:16:25 +0000 | [diff] [blame] | 66 | } |
| 67 | |
bsalomon | e904c09 | 2014-07-17 10:50:59 -0700 | [diff] [blame] | 68 | const GrGLExtensions& extensions() const { return fInterface->fExtensions; } |
| 69 | |
robertphillips@google.com | 6177e69 | 2013-02-28 20:16:25 +0000 | [diff] [blame] | 70 | /** |
| 71 | * Reset the information |
| 72 | */ |
| 73 | void reset(); |
| 74 | |
commit-bot@chromium.org | b1854a8 | 2014-01-16 18:39:04 +0000 | [diff] [blame] | 75 | protected: |
| 76 | SkAutoTUnref<const GrGLInterface> fInterface; |
| 77 | GrGLVersion fGLVersion; |
| 78 | GrGLSLGeneration fGLSLGeneration; |
| 79 | GrGLVendor fVendor; |
| 80 | GrGLRenderer fRenderer; |
commit-bot@chromium.org | b1854a8 | 2014-01-16 18:39:04 +0000 | [diff] [blame] | 81 | bool fIsMesa; |
| 82 | bool fIsChromium; |
| 83 | SkAutoTUnref<GrGLCaps> fGLCaps; |
robertphillips@google.com | 6177e69 | 2013-02-28 20:16:25 +0000 | [diff] [blame] | 84 | }; |
| 85 | |
| 86 | /** |
commit-bot@chromium.org | b1854a8 | 2014-01-16 18:39:04 +0000 | [diff] [blame] | 87 | * Extension of GrGLContextInfo that also provides access to GrGLInterface. |
robertphillips@google.com | 6177e69 | 2013-02-28 20:16:25 +0000 | [diff] [blame] | 88 | */ |
commit-bot@chromium.org | b1854a8 | 2014-01-16 18:39:04 +0000 | [diff] [blame] | 89 | class GrGLContext : public GrGLContextInfo { |
robertphillips@google.com | 6177e69 | 2013-02-28 20:16:25 +0000 | [diff] [blame] | 90 | public: |
| 91 | /** |
robertphillips@google.com | 6177e69 | 2013-02-28 20:16:25 +0000 | [diff] [blame] | 92 | * Creates a GrGLContext from a GrGLInterface and the currently |
| 93 | * bound OpenGL context accessible by the GrGLInterface. |
| 94 | */ |
commit-bot@chromium.org | b1854a8 | 2014-01-16 18:39:04 +0000 | [diff] [blame] | 95 | explicit GrGLContext(const GrGLInterface* interface) { |
| 96 | this->initialize(interface); |
| 97 | } |
robertphillips@google.com | 6177e69 | 2013-02-28 20:16:25 +0000 | [diff] [blame] | 98 | |
commit-bot@chromium.org | b1854a8 | 2014-01-16 18:39:04 +0000 | [diff] [blame] | 99 | GrGLContext(const GrGLContext& that) : INHERITED(that) {} |
robertphillips@google.com | 6177e69 | 2013-02-28 20:16:25 +0000 | [diff] [blame] | 100 | |
commit-bot@chromium.org | b1854a8 | 2014-01-16 18:39:04 +0000 | [diff] [blame] | 101 | GrGLContext& operator= (const GrGLContext& that) { |
| 102 | this->INHERITED::operator=(that); |
| 103 | return *this; |
| 104 | } |
robertphillips@google.com | 6177e69 | 2013-02-28 20:16:25 +0000 | [diff] [blame] | 105 | |
commit-bot@chromium.org | b1854a8 | 2014-01-16 18:39:04 +0000 | [diff] [blame] | 106 | const GrGLInterface* interface() const { return fInterface.get(); } |
robertphillips@google.com | 6177e69 | 2013-02-28 20:16:25 +0000 | [diff] [blame] | 107 | |
| 108 | private: |
commit-bot@chromium.org | b1854a8 | 2014-01-16 18:39:04 +0000 | [diff] [blame] | 109 | typedef GrGLContextInfo INHERITED; |
robertphillips@google.com | 6177e69 | 2013-02-28 20:16:25 +0000 | [diff] [blame] | 110 | }; |
| 111 | |
| 112 | #endif |