FACT++  1.0
void MGImage::DrawImg24 ( char *  d,
char *  s,
char *  e 
)
private

Definition at line 113 of file MGImage.cc.

Referenced by DrawImg().

114 {
115  // d=destination, s=source, e=end
116  // rrrrrrrr gggggggg bbbbbbbb aaaaaaaa
117  //
118  while (s<e)
119  {
120  *d++ = *s;
121  *d++ = *s;
122  *d++ = *s++;
123  d++;
124  }
125 }

+ Here is the caller graph for this function: