| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2009 Apple 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 755 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 766 | 766 |
| 767 void setBackDrawBuffer(GC3Denum); | 767 void setBackDrawBuffer(GC3Denum); |
| 768 | 768 |
| 769 void restoreCurrentFramebuffer(); | 769 void restoreCurrentFramebuffer(); |
| 770 void restoreCurrentTexture2D(); | 770 void restoreCurrentTexture2D(); |
| 771 | 771 |
| 772 // Check if EXT_draw_buffers extension is supported and if it satisfies the
WebGL requirements. | 772 // Check if EXT_draw_buffers extension is supported and if it satisfies the
WebGL requirements. |
| 773 bool supportsDrawBuffers(); | 773 bool supportsDrawBuffers(); |
| 774 | 774 |
| 775 friend class WebGLStateRestorer; | 775 friend class WebGLStateRestorer; |
| 776 friend class WebGLRenderingContextEvictionManager; |
| 777 |
| 778 static Vector<WebGLRenderingContext*>& activeContexts(); |
| 779 static Vector<WebGLRenderingContext*>& forciblyEvictedContexts(); |
| 780 |
| 781 static void activateContext(WebGLRenderingContext*); |
| 782 static void deactivateContext(WebGLRenderingContext*, bool addToInactiveList
); |
| 783 static void willDestroyContext(WebGLRenderingContext*); |
| 784 static void forciblyLoseOldestContext(const String& reason); |
| 785 static IntSize oldestContextSize(); |
| 776 }; | 786 }; |
| 777 | 787 |
| 778 } // namespace WebCore | 788 } // namespace WebCore |
| 779 | 789 |
| 780 #endif | 790 #endif |
| OLD | NEW |