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

Side by Side Diff: Source/core/html/canvas/WebGLLoseContext.cpp

Issue 15876011: Make WebGL extensions get lost when context is lost. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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
OLDNEW
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 23 matching lines...) Expand all
34 WebGLLoseContext::WebGLLoseContext(WebGLRenderingContext* context) 34 WebGLLoseContext::WebGLLoseContext(WebGLRenderingContext* context)
35 : WebGLExtension(context) 35 : WebGLExtension(context)
36 { 36 {
37 ScriptWrappable::init(this); 37 ScriptWrappable::init(this);
38 } 38 }
39 39
40 WebGLLoseContext::~WebGLLoseContext() 40 WebGLLoseContext::~WebGLLoseContext()
41 { 41 {
42 } 42 }
43 43
44 void WebGLLoseContext::lose(bool force)
45 {
46 if (force)
47 WebGLExtension::lose(true);
48 }
49
44 WebGLExtension::ExtensionName WebGLLoseContext::getName() const 50 WebGLExtension::ExtensionName WebGLLoseContext::getName() const
45 { 51 {
46 return WebGLLoseContextName; 52 return WebGLLoseContextName;
47 } 53 }
48 54
49 PassOwnPtr<WebGLLoseContext> WebGLLoseContext::create(WebGLRenderingContext* con text) 55 PassRefPtr<WebGLLoseContext> WebGLLoseContext::create(WebGLRenderingContext* con text)
50 { 56 {
51 return adoptPtr(new WebGLLoseContext(context)); 57 return adoptRef(new WebGLLoseContext(context));
52 } 58 }
53 59
54 void WebGLLoseContext::loseContext() 60 void WebGLLoseContext::loseContext()
55 { 61 {
56 m_context->forceLostContext(WebGLRenderingContext::SyntheticLostContext); 62 if (!isLost())
63 m_context->forceLostContext(WebGLRenderingContext::SyntheticLostContext) ;
57 } 64 }
58 65
59 void WebGLLoseContext::restoreContext() 66 void WebGLLoseContext::restoreContext()
60 { 67 {
61 m_context->forceRestoreContext(); 68 if (!isLost())
69 m_context->forceRestoreContext();
62 } 70 }
63 71
64 bool WebGLLoseContext::supported(WebGLRenderingContext*) 72 bool WebGLLoseContext::supported(WebGLRenderingContext*)
65 { 73 {
66 return true; 74 return true;
67 } 75 }
68 76
69 const char* WebGLLoseContext::getExtensionName() 77 const char* WebGLLoseContext::getExtensionName()
70 { 78 {
71 return "WEBGL_lose_context"; 79 return "WEBGL_lose_context";
72 } 80 }
73 81
74 } // namespace WebCore 82 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/html/canvas/WebGLLoseContext.h ('k') | Source/core/html/canvas/WebGLRenderingContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698