OLD | NEW |
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 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
456 unsigned processCrashCount = 0; | 456 unsigned processCrashCount = 0; |
457 unsigned resetNotificationStrategy = 0; | 457 unsigned resetNotificationStrategy = 0; |
458 bool sandboxed = false; | 458 bool sandboxed = false; |
459 bool amdSwitchable = false; | 459 bool amdSwitchable = false; |
460 bool optimus = false; | 460 bool optimus = false; |
461 WebString vendorInfo; | 461 WebString vendorInfo; |
462 WebString rendererInfo; | 462 WebString rendererInfo; |
463 WebString driverVersion; | 463 WebString driverVersion; |
464 WebString errorMessage; | 464 WebString errorMessage; |
465 }; | 465 }; |
| 466 enum WillBindToCurrentThread { |
| 467 BindToCurrentThread, |
| 468 DoNotBindToCurrentThread |
| 469 }; |
466 // Returns a newly allocated and initialized offscreen context provider, | 470 // Returns a newly allocated and initialized offscreen context provider, |
467 // backed by an independent context. Returns null if the context cannot be | 471 // backed by an independent context. Returns null if the context cannot be |
468 // created or initialized. | 472 // created or initialized. |
469 // Passing an existing provider to shareContext will create the new context | 473 // Passing an existing provider to shareContext will create the new context |
470 // in the same share group as the one passed. | 474 // in the same share group as the one passed. |
471 virtual WebGraphicsContext3DProvider* createOffscreenGraphicsContext3DProvid
er( | 475 virtual WebGraphicsContext3DProvider* createOffscreenGraphicsContext3DProvid
er( |
472 const ContextAttributes&, | 476 const ContextAttributes&, |
473 const WebURL& topDocumentURL, | 477 const WebURL& topDocumentURL, |
474 WebGraphicsContext3DProvider* shareContext, | 478 WebGraphicsContext3DProvider* shareContext, |
475 GraphicsInfo*) { return nullptr; } | 479 GraphicsInfo*, |
| 480 WillBindToCurrentThread) { return nullptr; } |
476 | 481 |
477 // Returns a newly allocated and initialized offscreen context provider, | 482 // Returns a newly allocated and initialized offscreen context provider, |
478 // backed by the process-wide shared main thread context. Returns null if | 483 // backed by the process-wide shared main thread context. Returns null if |
479 // the context cannot be created or initialized. | 484 // the context cannot be created or initialized. |
480 virtual WebGraphicsContext3DProvider* createSharedOffscreenGraphicsContext3D
Provider() { return nullptr; } | 485 virtual WebGraphicsContext3DProvider* createSharedOffscreenGraphicsContext3D
Provider() { return nullptr; } |
481 | 486 |
482 // Returns true if the platform is capable of producing an offscreen context
suitable for accelerating 2d canvas. | 487 // Returns true if the platform is capable of producing an offscreen context
suitable for accelerating 2d canvas. |
483 // This will return false if the platform cannot promise that contexts will
be preserved across operations like | 488 // This will return false if the platform cannot promise that contexts will
be preserved across operations like |
484 // locking the screen or if the platform cannot provide a context with suita
ble performance characteristics. | 489 // locking the screen or if the platform cannot provide a context with suita
ble performance characteristics. |
485 // | 490 // |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
621 protected: | 626 protected: |
622 Platform(); | 627 Platform(); |
623 virtual ~Platform() { } | 628 virtual ~Platform() { } |
624 | 629 |
625 WebThread* m_mainThread; | 630 WebThread* m_mainThread; |
626 }; | 631 }; |
627 | 632 |
628 } // namespace blink | 633 } // namespace blink |
629 | 634 |
630 #endif | 635 #endif |
OLD | NEW |