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

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

Issue 23513006: Add glTexGen funcs to interface (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: mesa 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 | include/gpu/gl/GrGLFunctions.h » ('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 /* 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 597 matching lines...) Expand 10 before | Expand all | Expand 10 after
608 kRenderTarget_GrGLBackendState = 1 << 0, 608 kRenderTarget_GrGLBackendState = 1 << 0,
609 kTextureBinding_GrGLBackendState = 1 << 1, 609 kTextureBinding_GrGLBackendState = 1 << 1,
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 kPathStencil_GrGLBackendState = 1 << 9, 618 kFixedFunction_GrGLBackendState = 1 << 9,
619 kMisc_GrGLBackendState = 1 << 10, 619 kMisc_GrGLBackendState = 1 << 10,
620 kALL_GrGLBackendState = 0xffff 620 kALL_GrGLBackendState = 0xffff
621 }; 621 };
622 622
623 /** 623 /**
624 * This value translates to reseting all the context state for any backend. 624 * This value translates to reseting all the context state for any backend.
625 */ 625 */
626 static const uint32_t kAll_GrBackendState = 0xffffffff; 626 static const uint32_t kAll_GrBackendState = 0xffffffff;
627 627
628 /////////////////////////////////////////////////////////////////////////////// 628 ///////////////////////////////////////////////////////////////////////////////
629 629
630 #endif 630 #endif
OLDNEW
« no previous file with comments | « no previous file | include/gpu/gl/GrGLFunctions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698