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

Side by Side Diff: ui/gfx/compositor/test_web_graphics_context_3d.cc

Issue 9719030: UI compositor support for EXT_occlusion_query. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | « ui/gfx/compositor/test_web_graphics_context_3d.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ui/gfx/compositor/test_web_graphics_context_3d.h" 5 #include "ui/gfx/compositor/test_web_graphics_context_3d.h"
6 6
7 #include "ui/gfx/gl/gl_context_stub.h" 7 #include "ui/gfx/gl/gl_context_stub.h"
8 #include "ui/gfx/gl/gl_surface_stub.h" 8 #include "ui/gfx/gl/gl_surface_stub.h"
9 9
10 namespace ui { 10 namespace ui {
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 212
213 WebKit::WebGLId TestWebGraphicsContext3D::createShader( 213 WebKit::WebGLId TestWebGraphicsContext3D::createShader(
214 WebKit::WGC3Denum value) { 214 WebKit::WGC3Denum value) {
215 return 1; 215 return 1;
216 } 216 }
217 217
218 WebKit::WebGLId TestWebGraphicsContext3D::createTexture() { 218 WebKit::WebGLId TestWebGraphicsContext3D::createTexture() {
219 return 1; 219 return 1;
220 } 220 }
221 221
222 WebKit::WebGLId TestWebGraphicsContext3D::createQueryEXT()
223 {
224 return 1;
225 }
226
227 WebKit::WGC3Dboolean TestWebGraphicsContext3D::isQueryEXT(WebKit::WebGLId)
228 {
229 return true;
230 }
231
222 } // namespace ui 232 } // namespace ui
OLDNEW
« no previous file with comments | « ui/gfx/compositor/test_web_graphics_context_3d.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698