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

Side by Side Diff: src/gpu/gl/GrGLCaps.cpp

Issue 174123003: Add hooks for GL_EXT_debug_marker in gpu (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 10 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 | « src/gpu/GrInOrderDrawBuffer.cpp ('k') | src/gpu/gl/GrGLCreateNullInterface.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2012 Google Inc. 2 * Copyright 2012 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 8
9 #include "GrGLCaps.h" 9 #include "GrGLCaps.h"
10 #include "GrGLContext.h" 10 #include "GrGLContext.h"
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 305
306 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_SIZE, &fMaxTextureSize); 306 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_SIZE, &fMaxTextureSize);
307 GR_GL_GetIntegerv(gli, GR_GL_MAX_RENDERBUFFER_SIZE, &fMaxRenderTargetSize); 307 GR_GL_GetIntegerv(gli, GR_GL_MAX_RENDERBUFFER_SIZE, &fMaxRenderTargetSize);
308 // Our render targets are always created with textures as the color 308 // Our render targets are always created with textures as the color
309 // attachment, hence this min: 309 // attachment, hence this min:
310 fMaxRenderTargetSize = GrMin(fMaxTextureSize, fMaxRenderTargetSize); 310 fMaxRenderTargetSize = GrMin(fMaxTextureSize, fMaxRenderTargetSize);
311 311
312 fPathRenderingSupport = ctxInfo.hasExtension("GL_NV_path_rendering"); 312 fPathRenderingSupport = ctxInfo.hasExtension("GL_NV_path_rendering");
313 SkASSERT(!fPathRenderingSupport || fFixedFunctionSupport); 313 SkASSERT(!fPathRenderingSupport || fFixedFunctionSupport);
314 314
315 fGpuTracingSupport = ctxInfo.hasExtension("GL_EXT_debug_marker");
316
315 fDstReadInShaderSupport = kNone_FBFetchType != fFBFetchType; 317 fDstReadInShaderSupport = kNone_FBFetchType != fFBFetchType;
316 318
317 // Disable scratch texture reuse on Mali and Adreno devices 319 // Disable scratch texture reuse on Mali and Adreno devices
318 fReuseScratchTextures = kARM_GrGLVendor != ctxInfo.vendor() && 320 fReuseScratchTextures = kARM_GrGLVendor != ctxInfo.vendor() &&
319 kQualcomm_GrGLVendor != ctxInfo.vendor(); 321 kQualcomm_GrGLVendor != ctxInfo.vendor();
320 322
321 // Enable supported shader-related caps 323 // Enable supported shader-related caps
322 if (kGL_GrGLStandard == standard) { 324 if (kGL_GrGLStandard == standard) {
323 fDualSourceBlendingSupport = ctxInfo.version() >= GR_GL_VER(3,3) || 325 fDualSourceBlendingSupport = ctxInfo.version() >= GR_GL_VER(3,3) ||
324 ctxInfo.hasExtension("GL_ARB_blend_func_ext ended"); 326 ctxInfo.hasExtension("GL_ARB_blend_func_ext ended");
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
654 r.appendf("Two Format Limit: %s\n", (fTwoFormatLimit ? "YES": "NO")); 656 r.appendf("Two Format Limit: %s\n", (fTwoFormatLimit ? "YES": "NO"));
655 r.appendf("Fragment coord conventions support: %s\n", 657 r.appendf("Fragment coord conventions support: %s\n",
656 (fFragCoordsConventionSupport ? "YES": "NO")); 658 (fFragCoordsConventionSupport ? "YES": "NO"));
657 r.appendf("Vertex array object support: %s\n", (fVertexArrayObjectSupport ? "YES": "NO")); 659 r.appendf("Vertex array object support: %s\n", (fVertexArrayObjectSupport ? "YES": "NO"));
658 r.appendf("Use non-VBO for dynamic data: %s\n", 660 r.appendf("Use non-VBO for dynamic data: %s\n",
659 (fUseNonVBOVertexAndIndexDynamicData ? "YES" : "NO")); 661 (fUseNonVBOVertexAndIndexDynamicData ? "YES" : "NO"));
660 r.appendf("Discard FrameBuffer support: %s\n", (fDiscardFBSupport ? "YES" : "NO")); 662 r.appendf("Discard FrameBuffer support: %s\n", (fDiscardFBSupport ? "YES" : "NO"));
661 r.appendf("Full screen clear is free: %s\n", (fFullClearIsFree ? "YES" : "NO ")); 663 r.appendf("Full screen clear is free: %s\n", (fFullClearIsFree ? "YES" : "NO "));
662 return r; 664 return r;
663 } 665 }
OLDNEW
« no previous file with comments | « src/gpu/GrInOrderDrawBuffer.cpp ('k') | src/gpu/gl/GrGLCreateNullInterface.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698