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

Side by Side Diff: Source/WebCore/platform/graphics/gpu/DrawingBuffer.h

Issue 12843018: Merge 145856 "Check to ensure MultisampleRenderbuffer creation s..." (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1410/
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
« no previous file with comments | « no previous file | Source/WebCore/platform/graphics/gpu/DrawingBuffer.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 (c) 2010, Google Inc. All rights reserved. 2 * Copyright (c) 2010, Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 #endif 133 #endif
134 134
135 GraphicsContext3D* graphicsContext3D() const { return m_context.get(); } 135 GraphicsContext3D* graphicsContext3D() const { return m_context.get(); }
136 136
137 private: 137 private:
138 DrawingBuffer(GraphicsContext3D*, const IntSize&, bool multisampleExtensionS upported, 138 DrawingBuffer(GraphicsContext3D*, const IntSize&, bool multisampleExtensionS upported,
139 bool packedDepthStencilExtensionSupported, PreserveDrawingBuff er, AlphaRequirement); 139 bool packedDepthStencilExtensionSupported, PreserveDrawingBuff er, AlphaRequirement);
140 140
141 void initialize(const IntSize&); 141 void initialize(const IntSize&);
142 142
143 bool checkBufferIntegrity();
144
143 PreserveDrawingBuffer m_preserveDrawingBuffer; 145 PreserveDrawingBuffer m_preserveDrawingBuffer;
144 AlphaRequirement m_alpha; 146 AlphaRequirement m_alpha;
145 bool m_scissorEnabled; 147 bool m_scissorEnabled;
146 Platform3DObject m_texture2DBinding; 148 Platform3DObject m_texture2DBinding;
147 Platform3DObject m_framebufferBinding; 149 Platform3DObject m_framebufferBinding;
148 GC3Denum m_activeTextureUnit; 150 GC3Denum m_activeTextureUnit;
149 151
150 RefPtr<GraphicsContext3D> m_context; 152 RefPtr<GraphicsContext3D> m_context;
151 IntSize m_size; 153 IntSize m_size;
152 bool m_multisampleExtensionSupported; 154 bool m_multisampleExtensionSupported;
(...skipping 22 matching lines...) Expand all
175 #endif 177 #endif
176 178
177 #if PLATFORM(MAC) 179 #if PLATFORM(MAC)
178 RetainPtr<WebGLLayer> m_platformLayer; 180 RetainPtr<WebGLLayer> m_platformLayer;
179 #endif 181 #endif
180 }; 182 };
181 183
182 } // namespace WebCore 184 } // namespace WebCore
183 185
184 #endif // DrawingBuffer_h 186 #endif // DrawingBuffer_h
OLDNEW
« no previous file with comments | « no previous file | Source/WebCore/platform/graphics/gpu/DrawingBuffer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698