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

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

Issue 10543125: gpu: Add support for GLX_EXT_texture_from_pixmap extension. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove .gitmodules change. Created 8 years, 5 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
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 #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 7
8 #if defined(ENABLE_GPU) 8 #if defined(ENABLE_GPU)
9 9
10 #include <vector> 10 #include <vector>
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 WebGLId parent_texture); 453 WebGLId parent_texture);
454 454
455 virtual void setContextLostCallback( 455 virtual void setContextLostCallback(
456 WebGraphicsContext3D::WebGraphicsContextLostCallback* callback); 456 WebGraphicsContext3D::WebGraphicsContextLostCallback* callback);
457 virtual WGC3Denum getGraphicsResetStatusARB(); 457 virtual WGC3Denum getGraphicsResetStatusARB();
458 458
459 virtual void texImageIOSurface2DCHROMIUM( 459 virtual void texImageIOSurface2DCHROMIUM(
460 WGC3Denum target, WGC3Dint width, WGC3Dint height, 460 WGC3Denum target, WGC3Dint width, WGC3Dint height,
461 WGC3Duint ioSurfaceId, WGC3Duint plane); 461 WGC3Duint ioSurfaceId, WGC3Duint plane);
462 462
463 virtual void texImagePixmap2DCHROMIUM(WGC3Denum target, WGC3Duint pixmapId);
464
463 virtual void texStorage2DEXT( 465 virtual void texStorage2DEXT(
464 WGC3Denum target, WGC3Dint levels, WGC3Duint internalformat, 466 WGC3Denum target, WGC3Dint levels, WGC3Duint internalformat,
465 WGC3Dint width, WGC3Dint height); 467 WGC3Dint width, WGC3Dint height);
466 468
467 virtual WebGLId createQueryEXT(); 469 virtual WebGLId createQueryEXT();
468 virtual void deleteQueryEXT(WebGLId query); 470 virtual void deleteQueryEXT(WebGLId query);
469 virtual WGC3Dboolean isQueryEXT(WebGLId query); 471 virtual WGC3Dboolean isQueryEXT(WebGLId query);
470 virtual void beginQueryEXT(WGC3Denum target, WebGLId query); 472 virtual void beginQueryEXT(WGC3Denum target, WebGLId query);
471 virtual void endQueryEXT(WGC3Denum target); 473 virtual void endQueryEXT(WGC3Denum target);
472 virtual void getQueryivEXT( 474 virtual void getQueryivEXT(
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
516 unsigned int width, 518 unsigned int width,
517 unsigned int height); 519 unsigned int height);
518 #endif 520 #endif
519 }; 521 };
520 522
521 } // namespace gpu 523 } // namespace gpu
522 } // namespace webkit 524 } // namespace webkit
523 525
524 #endif // defined(ENABLE_GPU) 526 #endif // defined(ENABLE_GPU)
525 #endif // WEBKIT_GPU_WEBGRAPHICSCONTEXT3D_IN_PROCESS_COMMAND_BUFFER_IMPL_H_ 527 #endif // WEBKIT_GPU_WEBGRAPHICSCONTEXT3D_IN_PROCESS_COMMAND_BUFFER_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698