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

Side by Side Diff: public/platform/WebGraphicsContext3D.h

Issue 310623004: Making use of bindless variants mailbox produce/consume. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years, 6 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 | « Source/platform/graphics/gpu/DrawingBuffer.cpp ('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 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 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 404 matching lines...) Expand 10 before | Expand all | Expand 10 after
415 virtual void copyTextureCHROMIUM(WGC3Denum target, WGC3Duint sourceId, 415 virtual void copyTextureCHROMIUM(WGC3Denum target, WGC3Duint sourceId,
416 WGC3Duint destId, WGC3Dint level, WGC3Denum internalFormat, WGC3Denum de stType) { } 416 WGC3Duint destId, WGC3Dint level, WGC3Denum internalFormat, WGC3Denum de stType) { }
417 417
418 // GL_CHROMIUM_shallow_flush 418 // GL_CHROMIUM_shallow_flush
419 virtual void shallowFlushCHROMIUM() { } 419 virtual void shallowFlushCHROMIUM() { }
420 virtual void shallowFinishCHROMIUM() { } 420 virtual void shallowFinishCHROMIUM() { }
421 421
422 // GL_CHROMIUM_texture_mailbox 422 // GL_CHROMIUM_texture_mailbox
423 virtual void genMailboxCHROMIUM(WGC3Dbyte* mailbox) { } 423 virtual void genMailboxCHROMIUM(WGC3Dbyte* mailbox) { }
424 virtual void produceTextureCHROMIUM(WGC3Denum target, const WGC3Dbyte* mailb ox) { } 424 virtual void produceTextureCHROMIUM(WGC3Denum target, const WGC3Dbyte* mailb ox) { }
425 virtual void produceTextureDirectCHROMIUM(WebGLId texture, WGC3Denum target, const WGC3Dbyte* mailbox) { }
426
425 virtual void consumeTextureCHROMIUM(WGC3Denum target, const WGC3Dbyte* mailb ox) { } 427 virtual void consumeTextureCHROMIUM(WGC3Denum target, const WGC3Dbyte* mailb ox) { }
428 virtual WebGLId createAndConsumeTextureCHROMIUM(WGC3Denum target, const WGC3 Dbyte* mailbox) { return 0; }
426 429
427 // GL_EXT_debug_marker 430 // GL_EXT_debug_marker
428 virtual void insertEventMarkerEXT(const WGC3Dchar* marker) { } 431 virtual void insertEventMarkerEXT(const WGC3Dchar* marker) { }
429 virtual void pushGroupMarkerEXT(const WGC3Dchar* marker) { } 432 virtual void pushGroupMarkerEXT(const WGC3Dchar* marker) { }
430 virtual void popGroupMarkerEXT(void) { } 433 virtual void popGroupMarkerEXT(void) { }
431 434
432 // GL_OES_vertex_array_object 435 // GL_OES_vertex_array_object
433 virtual WebGLId createVertexArrayOES() { return 0; } 436 virtual WebGLId createVertexArrayOES() { return 0; }
434 virtual void deleteVertexArrayOES(WebGLId array) { } 437 virtual void deleteVertexArrayOES(WebGLId array) { }
435 virtual WGC3Dboolean isVertexArrayOES(WebGLId array) { return false; } 438 virtual WGC3Dboolean isVertexArrayOES(WebGLId array) { return false; }
(...skipping 30 matching lines...) Expand all
466 virtual void vertexAttribDivisorANGLE(WGC3Duint index, WGC3Duint divisor) { } 469 virtual void vertexAttribDivisorANGLE(WGC3Duint index, WGC3Duint divisor) { }
467 470
468 // GL_EXT_multisampled_render_to_texture 471 // GL_EXT_multisampled_render_to_texture
469 virtual void framebufferTexture2DMultisampleEXT(WGC3Denum target, WGC3Denum attachment, WGC3Denum textarget, WebGLId texture, WGC3Dint level, WGC3Dsizei sam ples) { } 472 virtual void framebufferTexture2DMultisampleEXT(WGC3Denum target, WGC3Denum attachment, WGC3Denum textarget, WebGLId texture, WGC3Dint level, WGC3Dsizei sam ples) { }
470 virtual void renderbufferStorageMultisampleEXT(WGC3Denum target, WGC3Dsizei samples, WGC3Denum internalformat, WGC3Dsizei width, WGC3Dsizei height) { }; 473 virtual void renderbufferStorageMultisampleEXT(WGC3Denum target, WGC3Dsizei samples, WGC3Denum internalformat, WGC3Dsizei width, WGC3Dsizei height) { };
471 }; 474 };
472 475
473 } // namespace blink 476 } // namespace blink
474 477
475 #endif 478 #endif
OLDNEW
« no previous file with comments | « Source/platform/graphics/gpu/DrawingBuffer.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698