| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 { | 44 { |
| 45 if (force) | 45 if (force) |
| 46 WebGLExtension::lose(true); | 46 WebGLExtension::lose(true); |
| 47 } | 47 } |
| 48 | 48 |
| 49 WebGLExtensionName WebGLLoseContext::name() const | 49 WebGLExtensionName WebGLLoseContext::name() const |
| 50 { | 50 { |
| 51 return WebGLLoseContextName; | 51 return WebGLLoseContextName; |
| 52 } | 52 } |
| 53 | 53 |
| 54 PassRefPtrWillBeRawPtr<WebGLLoseContext> WebGLLoseContext::create(WebGLRendering
ContextBase* context) | 54 WebGLLoseContext* WebGLLoseContext::create(WebGLRenderingContextBase* context) |
| 55 { | 55 { |
| 56 return adoptRefWillBeNoop(new WebGLLoseContext(context)); | 56 return new WebGLLoseContext(context); |
| 57 } | 57 } |
| 58 | 58 |
| 59 void WebGLLoseContext::loseContext() | 59 void WebGLLoseContext::loseContext() |
| 60 { | 60 { |
| 61 WebGLExtensionScopedContext scoped(this); | 61 WebGLExtensionScopedContext scoped(this); |
| 62 if (!scoped.isLost()) | 62 if (!scoped.isLost()) |
| 63 scoped.context()->forceLostContext(WebGLRenderingContextBase::WebGLLoseC
ontextLostContext, WebGLRenderingContextBase::Manual); | 63 scoped.context()->forceLostContext(WebGLRenderingContextBase::WebGLLoseC
ontextLostContext, WebGLRenderingContextBase::Manual); |
| 64 } | 64 } |
| 65 | 65 |
| 66 void WebGLLoseContext::restoreContext() | 66 void WebGLLoseContext::restoreContext() |
| 67 { | 67 { |
| 68 WebGLExtensionScopedContext scoped(this); | 68 WebGLExtensionScopedContext scoped(this); |
| 69 if (!scoped.isLost()) | 69 if (!scoped.isLost()) |
| 70 scoped.context()->forceRestoreContext(); | 70 scoped.context()->forceRestoreContext(); |
| 71 } | 71 } |
| 72 | 72 |
| 73 bool WebGLLoseContext::supported(WebGLRenderingContextBase*) | 73 bool WebGLLoseContext::supported(WebGLRenderingContextBase*) |
| 74 { | 74 { |
| 75 return true; | 75 return true; |
| 76 } | 76 } |
| 77 | 77 |
| 78 const char* WebGLLoseContext::extensionName() | 78 const char* WebGLLoseContext::extensionName() |
| 79 { | 79 { |
| 80 return "WEBGL_lose_context"; | 80 return "WEBGL_lose_context"; |
| 81 } | 81 } |
| 82 | 82 |
| 83 } // namespace blink | 83 } // namespace blink |
| OLD | NEW |