Definition at line 139 of file Window.h. References MakeView(), mOglView, and UpdateView(). Referenced by Impala::Application::WindowShow< ArrayT >::ShowCurImage(), and UpdateView(). 00141 { 00142 if (! dataPtr) 00143 { 00144 std::cout << "Window::updateView : dataPtr is null" << std::endl; 00145 return; 00146 } 00147 if (view > mOglView.size()) 00148 { 00149 std::cout << "Window::updateView : invalid view : " << view << std::endl; 00150 return; 00151 } 00152 if (view == mOglView.size()) 00153 MakeView(width, height, scale, false, false, true, listener); 00154 mOglView[view]->UpdateImage(dataPtr); 00155 }
Here is the call graph for this function:
|