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

Side by Side Diff: src/gpu/GrDrawTarget.cpp

Issue 19636002: Plumb in flag for reusing scratch textures (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 5 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
OLDNEW
1 1
2 /* 2 /*
3 * Copyright 2010 Google Inc. 3 * Copyright 2010 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 9
10 10
(...skipping 970 matching lines...) Expand 10 before | Expand all | Expand 10 after
981 GrPrintf("NPOT Texture Tile Support : %s\n", gNY[fNPOTTextureTileSupport]) ; 981 GrPrintf("NPOT Texture Tile Support : %s\n", gNY[fNPOTTextureTileSupport]) ;
982 GrPrintf("Two Sided Stencil Support : %s\n", gNY[fTwoSidedStencilSupport]) ; 982 GrPrintf("Two Sided Stencil Support : %s\n", gNY[fTwoSidedStencilSupport]) ;
983 GrPrintf("Stencil Wrap Ops Support : %s\n", gNY[fStencilWrapOpsSupport]); 983 GrPrintf("Stencil Wrap Ops Support : %s\n", gNY[fStencilWrapOpsSupport]);
984 GrPrintf("HW AA Lines Support : %s\n", gNY[fHWAALineSupport]); 984 GrPrintf("HW AA Lines Support : %s\n", gNY[fHWAALineSupport]);
985 GrPrintf("Shader Derivative Support : %s\n", gNY[fShaderDerivativeSupport] ); 985 GrPrintf("Shader Derivative Support : %s\n", gNY[fShaderDerivativeSupport] );
986 GrPrintf("Geometry Shader Support : %s\n", gNY[fGeometryShaderSupport]); 986 GrPrintf("Geometry Shader Support : %s\n", gNY[fGeometryShaderSupport]);
987 GrPrintf("Dual Source Blending Support: %s\n", gNY[fDualSourceBlendingSuppor t]); 987 GrPrintf("Dual Source Blending Support: %s\n", gNY[fDualSourceBlendingSuppor t]);
988 GrPrintf("Buffer Lock Support : %s\n", gNY[fBufferLockSupport]); 988 GrPrintf("Buffer Lock Support : %s\n", gNY[fBufferLockSupport]);
989 GrPrintf("Path Stenciling Support : %s\n", gNY[fPathStencilingSupport]); 989 GrPrintf("Path Stenciling Support : %s\n", gNY[fPathStencilingSupport]);
990 GrPrintf("Dst Read In Shader Support : %s\n", gNY[fDstReadInShaderSupport]) ; 990 GrPrintf("Dst Read In Shader Support : %s\n", gNY[fDstReadInShaderSupport]) ;
991 GrPrintf("Reuse Scratch Textures : %s\n", gNY[fReuseScratchTextures]);
991 GrPrintf("Max Texture Size : %d\n", fMaxTextureSize); 992 GrPrintf("Max Texture Size : %d\n", fMaxTextureSize);
992 GrPrintf("Max Render Target Size : %d\n", fMaxRenderTargetSize); 993 GrPrintf("Max Render Target Size : %d\n", fMaxRenderTargetSize);
993 GrPrintf("Max Sample Count : %d\n", fMaxSampleCount); 994 GrPrintf("Max Sample Count : %d\n", fMaxSampleCount);
994 } 995 }
OLDNEW
« include/gpu/GrContext.h ('K') | « src/gpu/GrContext.cpp ('k') | src/gpu/GrDrawTargetCaps.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698