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

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

Issue 12875005: Add support for IMG's MSAA extension. (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 9 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 | « include/gpu/gl/GrGLInterface.h ('k') | src/gpu/gl/GrGLCaps.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 #ifndef GrGLCaps_DEFINED 9 #ifndef GrGLCaps_DEFINED
10 #define GrGLCaps_DEFINED 10 #define GrGLCaps_DEFINED
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 */ 55 */
56 kDesktopARB_MSFBOType, 56 kDesktopARB_MSFBOType,
57 /** 57 /**
58 * earlier GL_EXT_framebuffer* extensions 58 * earlier GL_EXT_framebuffer* extensions
59 */ 59 */
60 kDesktopEXT_MSFBOType, 60 kDesktopEXT_MSFBOType,
61 /** 61 /**
62 * GL_APPLE_framebuffer_multisample ES extension 62 * GL_APPLE_framebuffer_multisample ES extension
63 */ 63 */
64 kAppleES_MSFBOType, 64 kAppleES_MSFBOType,
65 /**
66 * GL_IMG_multisampled_render_to_texture
67 */
68 kImaginationES_MSFBOType,
65 }; 69 };
66 70
67 enum CoverageAAType { 71 enum CoverageAAType {
68 /** 72 /**
69 * No coverage sample support 73 * No coverage sample support
70 */ 74 */
71 kNone_CoverageAAType, 75 kNone_CoverageAAType,
72 76
73 /** 77 /**
74 * GL_NV_framebuffer_multisample_coverage 78 * GL_NV_framebuffer_multisample_coverage
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 bool fTextureRedSupport : 1; 304 bool fTextureRedSupport : 1;
301 bool fImagingSupport : 1; 305 bool fImagingSupport : 1;
302 bool fTwoFormatLimit : 1; 306 bool fTwoFormatLimit : 1;
303 bool fFragCoordsConventionSupport : 1; 307 bool fFragCoordsConventionSupport : 1;
304 bool fVertexArrayObjectSupport : 1; 308 bool fVertexArrayObjectSupport : 1;
305 bool fUseNonVBOVertexAndIndexDynamicData : 1; 309 bool fUseNonVBOVertexAndIndexDynamicData : 1;
306 bool fIsCoreProfile : 1; 310 bool fIsCoreProfile : 1;
307 }; 311 };
308 312
309 #endif 313 #endif
OLDNEW
« no previous file with comments | « include/gpu/gl/GrGLInterface.h ('k') | src/gpu/gl/GrGLCaps.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698