Home || Architecture || Video Search || Visual Search || Scripts || Applications || Important Messages || OGL || Src

void Impala::Visualization::Window::UpdateView ( int  view,
unsigned char *  dataPtr,
int  width,
int  height,
double  scale = 1.0,
OglGui::ViewListener listener = 0 
) [inline]

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:


Generated on Fri Mar 19 11:51:28 2010 for ImpalaSrc by  doxygen 1.5.1