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

Side by Side Diff: webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h

Issue 9192014: Replace WGC3D visibility extension with resource_usage extension. [Part 2 of 3] (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Clarifying a comment Created 8 years, 11 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #ifndef WEBKIT_GPU_WEBGRAPHICSCONTEXT3D_IN_PROCESS_COMMAND_BUFFER_IMPL_H_ 5 #ifndef WEBKIT_GPU_WEBGRAPHICSCONTEXT3D_IN_PROCESS_COMMAND_BUFFER_IMPL_H_
6 #define WEBKIT_GPU_WEBGRAPHICSCONTEXT3D_IN_PROCESS_COMMAND_BUFFER_IMPL_H_ 6 #define WEBKIT_GPU_WEBGRAPHICSCONTEXT3D_IN_PROCESS_COMMAND_BUFFER_IMPL_H_
7 #pragma once 7 #pragma once
8 8
9 #if defined(ENABLE_GPU) 9 #if defined(ENABLE_GPU)
10 10
(...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after
418 WGC3Dint level, 418 WGC3Dint level,
419 WGC3Dint xoffset, 419 WGC3Dint xoffset,
420 WGC3Dint yoffset, 420 WGC3Dint yoffset,
421 WGC3Dsizei width, 421 WGC3Dsizei width,
422 WGC3Dsizei height, 422 WGC3Dsizei height,
423 WGC3Denum format, 423 WGC3Denum format,
424 WGC3Denum type, 424 WGC3Denum type,
425 WGC3Denum access); 425 WGC3Denum access);
426 virtual void unmapTexSubImage2DCHROMIUM(const void*); 426 virtual void unmapTexSubImage2DCHROMIUM(const void*);
427 427
428 virtual void setVisibilityCHROMIUM(bool visible); 428 virtual void setResourceUsageCHROMIUM(ResourceUsage resourceUsage);
429 429
430 virtual void copyTextureToParentTextureCHROMIUM( 430 virtual void copyTextureToParentTextureCHROMIUM(
431 WebGLId texture, WebGLId parentTexture); 431 WebGLId texture, WebGLId parentTexture);
432 432
433 virtual void rateLimitOffscreenContextCHROMIUM(); 433 virtual void rateLimitOffscreenContextCHROMIUM();
434 434
435 virtual WebKit::WebString getRequestableExtensionsCHROMIUM(); 435 virtual WebKit::WebString getRequestableExtensionsCHROMIUM();
436 virtual void requestExtensionCHROMIUM(const char*); 436 virtual void requestExtensionCHROMIUM(const char*);
437 437
438 virtual void blitFramebufferCHROMIUM( 438 virtual void blitFramebufferCHROMIUM(
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
505 unsigned int width, 505 unsigned int width,
506 unsigned int height); 506 unsigned int height);
507 #endif 507 #endif
508 }; 508 };
509 509
510 } // namespace gpu 510 } // namespace gpu
511 } // namespace webkit 511 } // namespace webkit
512 512
513 #endif // defined(ENABLE_GPU) 513 #endif // defined(ENABLE_GPU)
514 #endif // WEBKIT_GPU_WEBGRAPHICSCONTEXT3D_IN_PROCESS_COMMAND_BUFFER_IMPL_H_ 514 #endif // WEBKIT_GPU_WEBGRAPHICSCONTEXT3D_IN_PROCESS_COMMAND_BUFFER_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698