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

Side by Side Diff: include/gpu/gl/GrGLExtensions.h

Issue 14864002: Fix GL extension printing on core profiles. (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | src/gpu/gl/GrGLContext.h » ('j') | src/gpu/gl/GrGLExtensions.cpp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2013 Google Inc. 2 * Copyright 2013 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef GrGLExtensions_DEFINED 8 #ifndef GrGLExtensions_DEFINED
9 #define GrGLExtensions_DEFINED 9 #define GrGLExtensions_DEFINED
10 10
(...skipping 21 matching lines...) Expand all
32 GrGLGetStringProc getString, 32 GrGLGetStringProc getString,
33 GrGLGetStringiProc getStringi, 33 GrGLGetStringiProc getStringi,
34 GrGLGetIntegervProc getIntegerv); 34 GrGLGetIntegervProc getIntegerv);
35 35
36 /** 36 /**
37 * Queries whether an extension is present. This will fail if init() has not been called. 37 * Queries whether an extension is present. This will fail if init() has not been called.
38 */ 38 */
39 bool has(const char*) const; 39 bool has(const char*) const;
40 40
41 void reset() { fStrings.reset(); } 41 void reset() { fStrings.reset(); }
42 42
robertphillips 2013/05/02 19:39:14 const char * -> char?
bsalomon 2013/05/02 19:41:59 You might want ", " or something.
43 void print(const char* sep = "\n") const;
44
43 private: 45 private:
44 SkTArray<SkString> fStrings; 46 SkTArray<SkString> fStrings;
45 }; 47 };
46 48
47 #endif 49 #endif
OLDNEW
« no previous file with comments | « no previous file | src/gpu/gl/GrGLContext.h » ('j') | src/gpu/gl/GrGLExtensions.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698