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 /** 21 * Encapsulates information about an OpenGL context including the OpenGL 22 * version, the GrGLBinding type of the context, and GLSL version. 23 */ 24 class GrGLContextInfo { 25 public: 26 /** 27 * Default constructor 28 */ GrGLContextInfo()29 GrGLContextInfo() { 30 fGLCaps.reset(SkNEW(GrGLCaps)); 31 this->reset(); 32 } 33 34 /** 35 * Copies a GrGLContextInfo 36 */ 37 GrGLContextInfo& operator= (const GrGLContextInfo& ctxInfo); 38 39 /** 40 * Initializes a GrGLContextInfo from a GrGLInterface and the currently 41 * bound OpenGL context accessible by the GrGLInterface. 42 */ 43 bool initialize(const GrGLInterface* interface); 44 bool isInitialized() const; 45 binding()46 GrGLBinding binding() const { return fBindingInUse; } version()47 GrGLVersion version() const { return fGLVersion; } glslGeneration()48 GrGLSLGeneration glslGeneration() const { return fGLSLGeneration; } vendor()49 GrGLVendor vendor() const { return fVendor; } renderer()50 GrGLRenderer renderer() const { return fRenderer; } 51 /** Is this a mesa-based driver. Does not mean it is the osmesa software rasterizer. */ isMesa()52 bool isMesa() const { return fIsMesa; } 53 /** Are we running inside Chromium (using the command buffer)? We make some different tradeoffs 54 about what errors to check for because queries are synchronous. We should probably expose 55 this as an option for clients other than Chromium. */ isChromium()56 bool isChromium() const { return fIsChromium; } caps()57 const GrGLCaps* caps() const { return fGLCaps.get(); } caps()58 GrGLCaps* caps() { return fGLCaps; } extensions()59 const GrGLExtensions& extensions() const { return fExtensions; } 60 61 /** 62 * Shortcut for extensions().has(ext); 63 */ hasExtension(const char * ext)64 bool hasExtension(const char* ext) const { 65 if (!this->isInitialized()) { 66 return false; 67 } 68 return fExtensions.has(ext); 69 } 70 71 /** 72 * Reset the information 73 */ 74 void reset(); 75 76 private: 77 78 GrGLBinding fBindingInUse; 79 GrGLVersion fGLVersion; 80 GrGLSLGeneration fGLSLGeneration; 81 GrGLVendor fVendor; 82 GrGLRenderer fRenderer; 83 GrGLExtensions fExtensions; 84 bool fIsMesa; 85 bool fIsChromium; 86 SkAutoTUnref<GrGLCaps> fGLCaps; 87 }; 88 89 /** 90 * Encapsulates the GrGLInterface used to make GL calls plus information 91 * about the context (via GrGLContextInfo). 92 */ 93 class GrGLContext { 94 public: 95 /** 96 * Default constructor 97 */ GrGLContext()98 GrGLContext() { this->reset(); } 99 100 /** 101 * Creates a GrGLContext from a GrGLInterface and the currently 102 * bound OpenGL context accessible by the GrGLInterface. 103 */ 104 explicit GrGLContext(const GrGLInterface* interface); 105 106 /** 107 * Copies a GrGLContext 108 */ 109 GrGLContext(const GrGLContext& ctx); 110 ~GrGLContext()111 ~GrGLContext() { SkSafeUnref(fInterface); } 112 113 /** 114 * Copies a GrGLContext 115 */ 116 GrGLContext& operator= (const GrGLContext& ctx); 117 118 /** 119 * Initializes a GrGLContext from a GrGLInterface and the currently 120 * bound OpenGL context accessible by the GrGLInterface. 121 */ 122 bool initialize(const GrGLInterface* interface); isInitialized()123 bool isInitialized() const { return fInfo.isInitialized(); } 124 interface()125 const GrGLInterface* interface() const { return fInterface; } info()126 const GrGLContextInfo& info() const { return fInfo; } info()127 GrGLContextInfo& info() { return fInfo; } 128 129 private: 130 void reset(); 131 132 const GrGLInterface* fInterface; 133 GrGLContextInfo fInfo; 134 }; 135 136 #endif 137