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

Side by Side Diff: include/gpu/GrTypes.h

Issue 22686002: Implement path cover with nv_path_rendering (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Omission with non-inverted path bounds fixed Created 7 years, 3 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/GrClipMaskManager.cpp » ('j') | src/gpu/GrDrawState.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 599 matching lines...) Expand 10 before | Expand all | Expand 10 after
610 // View state stands for scissor and viewport 610 // View state stands for scissor and viewport
611 kView_GrGLBackendState = 1 << 2, 611 kView_GrGLBackendState = 1 << 2,
612 kBlend_GrGLBackendState = 1 << 3, 612 kBlend_GrGLBackendState = 1 << 3,
613 kAA_GrGLBackendState = 1 << 4, 613 kAA_GrGLBackendState = 1 << 4,
614 kVertex_GrGLBackendState = 1 << 5, 614 kVertex_GrGLBackendState = 1 << 5,
615 kStencil_GrGLBackendState = 1 << 6, 615 kStencil_GrGLBackendState = 1 << 6,
616 kPixelStore_GrGLBackendState = 1 << 7, 616 kPixelStore_GrGLBackendState = 1 << 7,
617 kProgram_GrGLBackendState = 1 << 8, 617 kProgram_GrGLBackendState = 1 << 8,
618 kFixedFunction_GrGLBackendState = 1 << 9, 618 kFixedFunction_GrGLBackendState = 1 << 9,
619 kMisc_GrGLBackendState = 1 << 10, 619 kMisc_GrGLBackendState = 1 << 10,
620 kPathRendering_GrGLBackendState = 1 << 11,
620 kALL_GrGLBackendState = 0xffff 621 kALL_GrGLBackendState = 0xffff
621 }; 622 };
622 623
623 /** 624 /**
624 * This value translates to reseting all the context state for any backend. 625 * This value translates to reseting all the context state for any backend.
625 */ 626 */
626 static const uint32_t kAll_GrBackendState = 0xffffffff; 627 static const uint32_t kAll_GrBackendState = 0xffffffff;
627 628
628 /////////////////////////////////////////////////////////////////////////////// 629 ///////////////////////////////////////////////////////////////////////////////
629 630
630 #endif 631 #endif
OLDNEW
« no previous file with comments | « no previous file | src/gpu/GrClipMaskManager.cpp » ('j') | src/gpu/GrDrawState.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698