comparison Framework/OpenGL/WebAssemblyOpenGLContext.cpp @ 1052:0cc62db7e61b

fix
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 10 Oct 2019 14:37:23 +0200
parents d393ad9cf68c
children 2d8ab34c8c91
comparison
equal deleted inserted replaced
1051:7fad86d62135 1052:0cc62db7e61b
246 bool WebAssemblyOpenGLContext::IsContextLost() 246 bool WebAssemblyOpenGLContext::IsContextLost()
247 { 247 {
248 return pimpl_->IsContextLost(); 248 return pimpl_->IsContextLost();
249 } 249 }
250 250
251 void WebAssemblyOpenGLContext::RestoreLostContext()
252 {
253 throw Orthanc::OrthancException(Orthanc::ErrorCode_NotImplemented);
254 }
255
256 void WebAssemblyOpenGLContext::SetLostContext() 251 void WebAssemblyOpenGLContext::SetLostContext()
257 { 252 {
258 pimpl_->SetLostContext(); 253 pimpl_->SetLostContext();
259 } 254 }
260 255