Merge branch 'master' of git://localhost/acess2
[tpg/acess2.git] / KernelLand / Kernel / drvutil_video.c
1 /*
2  * Acess2 Kernel
3  * - By John Hodge
4  *
5  * drvutil.c
6  * - Video Driver Helper Functions
7  */
8 #define DEBUG   0
9 #include <acess.h>
10 #include <api_drv_video.h>
11
12 // === TYPES ===
13
14 // === PROTOTYPES ===
15 //int   DrvUtil_Video_2DStream(void *Ent, void *Buffer, int Length, tDrvUtil_Video_2DHandlers *Handlers, int SizeofHandlers);
16 //size_t        DrvUtil_Video_WriteLFB(int Mode, tDrvUtil_Video_BufInfo *FBInfo, size_t Offset, size_t Length, void *Src);
17 //void  DrvUtil_Video_SetCursor(tDrvUtil_Video_BufInfo *Buf, tVideo_IOCtl_Bitmap *Bitmap);
18 //void  DrvUtil_Video_DrawCursor(tDrvUtil_Video_BufInfo *Buf, int X, int Y);
19 void    DrvUtil_Video_RenderCursor(tDrvUtil_Video_BufInfo *Buf);
20 //void  DrvUtil_Video_RemoveCursor(tDrvUtil_Video_BufInfo *Buf);
21 void    DrvUtil_Video_2D_Fill(void *Ent, Uint16 X, Uint16 Y, Uint16 W, Uint16 H, Uint32 Colour);
22 void    DrvUtil_Video_2D_Blit(void *Ent, Uint16 DstX, Uint16 DstY, Uint16 SrcX, Uint16 SrcY, Uint16 W, Uint16 H);
23
24 // === GLOBALS ===
25 tDrvUtil_Video_2DHandlers       gDrvUtil_Stub_2DFunctions = {
26         NULL,
27         DrvUtil_Video_2D_Fill,
28         DrvUtil_Video_2D_Blit
29 };
30 tVideo_IOCtl_Bitmap     gDrvUtil_TextModeCursor = {
31         8, 16,
32         0, 0,
33         {
34                 0, 0, 0         , 0, 0, 0, 0, 0,
35                 0,-1, 0xFF000000, 0, 0, 0, 0, 0,
36                 0,-1, 0xFF000000, 0, 0, 0, 0, 0,
37                 0,-1, 0xFF000000, 0, 0, 0, 0, 0,
38                 0,-1, 0xFF000000, 0, 0, 0, 0, 0,
39                 0,-1, 0xFF000000, 0, 0, 0, 0, 0,
40                 0,-1, 0xFF000000, 0, 0, 0, 0, 0,
41                 0,-1, 0xFF000000, 0, 0, 0, 0, 0,
42                 0,-1, 0xFF000000, 0, 0, 0, 0, 0,
43                 0,-1, 0xFF000000, 0, 0, 0, 0, 0,
44                 0,-1, 0xFF000000, 0, 0, 0, 0, 0,
45                 0,-1, 0xFF000000, 0, 0, 0, 0, 0,
46                 0,-1, 0xFF000000, 0, 0, 0, 0, 0,
47                 0,-1, 0xFF000000, 0, 0, 0, 0, 0,
48                 0, 0, 0         , 0, 0, 0, 0, 0,
49                 0, 0, 0         , 0, 0, 0, 0, 0
50         }
51 };
52
53 // === CODE ===
54 // --- Video Driver Helpers ---
55 int DrvUtil_Video_2DStream(void *Ent, const void *Buffer, int Length,
56         tDrvUtil_Video_2DHandlers *Handlers, int SizeofHandlers)
57 {
58         const Uint8     *stream = Buffer;
59          int    rem = Length;
60          int    op;
61
62         Uint16  tmp[6];
63
64         while( rem )
65         {
66                 rem --;
67                 op = *stream;
68                 stream ++;
69                 
70                 if(op > NUM_VIDEO_2DOPS) {
71                         Log_Warning("DrvUtil",
72                                 "DrvUtil_Video_2DStream: Unknown operation %i",
73                                 op);
74                         return Length-rem;
75                 }
76                 
77                 if(op*sizeof(void*) > SizeofHandlers) {
78                         Log_Warning("DrvUtil",
79                                 "DrvUtil_Video_2DStream: Driver does not support op %i",
80                                 op);
81                         return Length-rem;
82                 }
83                 
84                 switch(op)
85                 {
86                 case VIDEO_2DOP_NOP:    break;
87                 
88                 case VIDEO_2DOP_FILL:
89                         if(rem < 12)    return Length-rem;
90                         memcpy(tmp, stream, 6*2);
91                         
92                         if(!Handlers->Fill) {
93                                 Log_Warning("DrvUtil", "DrvUtil_Video_2DStream: Driver"
94                                         " does not support VIDEO_2DOP_FILL");
95                                 return Length-rem;
96                         }
97                         
98                         Handlers->Fill(
99                                 Ent, 
100                                 tmp[0], tmp[1], tmp[2], tmp[3],
101                                 tmp[4] | ((Uint32)tmp[5] << 16)
102                                 );
103                         
104                         rem -= 12;
105                         stream += 12;
106                         break;
107                 
108                 case VIDEO_2DOP_BLIT:
109                         if(rem < 12)    return Length-rem;
110                         memcpy(tmp, stream, 6*2);
111                         
112                         if(!Handlers->Blit) {
113                                 Log_Warning("DrvUtil", "DrvUtil_Video_2DStream: Driver"
114                                         " does not support VIDEO_2DOP_BLIT");
115                                 return Length-rem;
116                         }
117                         
118                         Handlers->Blit(
119                                 Ent,
120                                 tmp[0], tmp[1], tmp[2], tmp[3],
121                                 tmp[4], tmp[5]
122                                 );
123                         
124                         rem -= 12;
125                         stream += 12;
126                         break;
127                 
128                 }
129         }
130         return 0;
131 }
132
133 int DrvUtil_Video_WriteLFB(tDrvUtil_Video_BufInfo *FBInfo, size_t Offset, size_t Length, const void *Buffer)
134 {
135         Uint8   *dest;
136         const Uint32    *src = Buffer;
137          int    csr_x, csr_y;
138          int    x, y;
139          int    bytes_per_px = (FBInfo->Depth + 7) / 8;
140         size_t  ofs;
141         ENTER("pFBInfo xOffset xLength pBuffer",
142                 FBInfo, Offset, Length, Buffer);
143
144         csr_x = FBInfo->CursorX;
145         csr_y = FBInfo->CursorY;
146
147         if( FBInfo->BackBuffer )
148                 dest = FBInfo->BackBuffer;
149         else
150                 dest = FBInfo->Framebuffer;
151         
152         DrvUtil_Video_RemoveCursor(FBInfo);
153
154         switch( FBInfo->BufferFormat )
155         {
156         case VIDEO_BUFFMT_TEXT:
157                 {
158                 const tVT_Char  *chars = Buffer;
159                  int    widthInChars = FBInfo->Width/giVT_CharWidth;
160                  int    heightInChars = FBInfo->Height/giVT_CharHeight;
161                  int    i;
162         
163                 LOG("bytes_per_px = %i", bytes_per_px);
164                 LOG("widthInChars = %i, heightInChars = %i", widthInChars, heightInChars);
165         
166                 Length /= sizeof(tVT_Char);     Offset /= sizeof(tVT_Char);
167                 
168                 x = Offset % widthInChars;      y = Offset / widthInChars;
169                 LOG("x = %i, y = %i", x, y);    
170         
171                 // Sanity Check
172                 if(Offset > heightInChars * widthInChars)       LEAVE_RET('i', 0);
173                 if(y >= heightInChars)  LEAVE_RET('i', 0);
174                 
175                 if( Offset + Length > heightInChars*widthInChars )
176                 {
177                         Length = heightInChars*widthInChars - Offset;
178                 }
179                 
180                 LOG("dest = %p", dest);
181                 ofs = y * giVT_CharHeight * FBInfo->Pitch;
182                 dest += ofs;
183                 
184                 for( i = 0; i < Length; i++ )
185                 {
186                         if( y >= heightInChars )
187                         {
188                                 Log_Notice("DrvUtil", "Stopped at %i", i);
189                                 break;
190                         }
191
192                         VT_Font_Render(
193                                 chars->Ch,
194                                 dest + x*giVT_CharWidth*bytes_per_px, FBInfo->Depth, FBInfo->Pitch,
195                                 VT_Colour12toN(chars->BGCol, FBInfo->Depth),
196                                 VT_Colour12toN(chars->FGCol, FBInfo->Depth)
197                                 );
198                         
199                         chars ++;
200                         x ++;
201                         if( x >= widthInChars )
202                         {
203                                 x = 0;
204                                 y ++;
205                                 dest += FBInfo->Pitch*giVT_CharHeight;
206                                 LOG("dest = %p", dest);
207                         }
208                 }
209                 if( x > 0 ) 
210                         dest += FBInfo->Pitch*giVT_CharHeight;
211                 Length = i * sizeof(tVT_Char);
212                 
213                 break; }
214         
215         case VIDEO_BUFFMT_FRAMEBUFFER:
216                 if(FBInfo->Width*FBInfo->Height*4 < Offset+Length)
217                 {
218                         Log_Warning("DrvUtil", "DrvUtil_Video_WriteLFB - Framebuffer Overflow");
219                         return 0;
220                 }
221                 
222                 switch(FBInfo->Depth)
223                 {
224                 case 15:
225                 case 16:
226                         Log_Warning("DrvUtil", "TODO: Support 15/16 bpp modes in LFB write");
227                         dest = NULL;
228                         break;
229                 case 24:
230                         x = Offset % FBInfo->Width;
231                         y = Offset / FBInfo->Width;
232                         ofs = y*FBInfo->Pitch;
233                         dest += ofs;
234                         for( ; Length >= 4; Length -= 4 )
235                         {
236                                 dest[x*3+0] = *src & 0xFF;
237                                 dest[x*3+1] = (*src >> 8) & 0xFF;
238                                 dest[x*3+2] = (*src >> 16) & 0xFF;
239                                 x ++;
240                                 if(x == FBInfo->Width) {
241                                         dest += FBInfo->Pitch;
242                                         x = 0;
243                                 }
244                         }
245                         break;
246                 case 32:
247                         // Copy to Frambuffer
248                         if( FBInfo->Pitch != FBInfo->Width*4 )
249                         {
250                                 Uint32  *px;
251                                 // Pitch isn't 4*Width
252                                 x = Offset % FBInfo->Width;
253                                 y = Offset / FBInfo->Height;
254                                 
255                                 ofs = y*FBInfo->Pitch;
256                                 dest += ofs;
257                                 px = (void*)dest;
258
259                                 for( ; Length >= 4; Length -= 4 )
260                                 {
261                                         px[x++] = *src ++;
262                                         if( x == FBInfo->Width ) {
263                                                 x = 0;
264                                                 dest += FBInfo->Pitch;
265                                                 px = (void*)dest;
266                                         }
267                                 }
268                                 if( x > 0 ) {
269                                         dest += FBInfo->Pitch;
270                                 }
271                         }
272                         else
273                         {
274                                 ofs = Offset;
275                                 dest += ofs;
276                                 memcpy(dest, Buffer, Length);
277                                 dest += Length;
278                         }
279                         break;
280                 default:
281                         Log_Warning("DrvUtil", "DrvUtil_Video_WriteLFB - Unknown bit depth %i", FBInfo->Depth);
282                         dest = NULL;
283                         break;
284                 }
285                 break;
286         
287         case VIDEO_BUFFMT_2DSTREAM:
288                 Length = DrvUtil_Video_2DStream(
289                         FBInfo, Buffer, Length,
290                         &gDrvUtil_Stub_2DFunctions, sizeof(gDrvUtil_Stub_2DFunctions)
291                         );
292                 dest = NULL;
293                 break;
294         
295         default:
296                 LEAVE('i', -1);
297                 return -1;
298         }
299         if( FBInfo->BackBuffer && dest ) {
300                 void    *_dst = (char*)FBInfo->Framebuffer + ofs;
301                 void    *_src = (char*)FBInfo->BackBuffer + ofs;
302                 size_t  len = ((tVAddr)dest - (tVAddr)FBInfo->BackBuffer) - ofs;
303         //      Log_Debug("DrvUtil", "Copy from BB %p to FB %p 0x%x bytes", _src, _dst, len);
304                 memcpy(_dst, _src, len);
305         }
306
307         DrvUtil_Video_DrawCursor(FBInfo, csr_x, csr_y);
308
309         LEAVE('x', Length);
310         return Length;
311 }
312
313 int DrvUtil_Video_SetCursor(tDrvUtil_Video_BufInfo *Buf, tVideo_IOCtl_Bitmap *Bitmap)
314 {
315          int    csrX = Buf->CursorX, csrY = Buf->CursorY;
316         size_t  size;
317
318         ENTER("pBuf pBitmap", Buf, Bitmap);
319
320         // Clear old bitmap
321         if( Buf->CursorBitmap )
322         {
323                 LOG("Clearing old cursor");
324                 DrvUtil_Video_RemoveCursor(Buf);
325                 if( !Bitmap || Bitmap->W != Buf->CursorBitmap->W || Bitmap->H != Buf->CursorBitmap->H )
326                 {
327                         free( Buf->CursorSaveBuf );
328                         Buf->CursorSaveBuf = NULL;
329                 }
330                 if( Buf->CursorBitmap != &gDrvUtil_TextModeCursor)
331                         free(Buf->CursorBitmap);
332                 Buf->CursorBitmap = NULL;
333         }
334         
335         // If the new bitmap is null, disable drawing
336         if( !Bitmap )
337         {
338                 Buf->CursorX = -1;
339                 Buf->CursorY = -1;
340                 LEAVE('i', 0);
341                 return 0;
342         }
343
344         // Sanity check the bitmap
345         LOG("Sanity checking plox");
346         if( !CheckMem(Bitmap, sizeof(*Bitmap)) || !CheckMem(Bitmap->Data, Bitmap->W*Bitmap->H*sizeof(Uint32)) )
347         {
348                 Log_Warning("DrvUtil", "DrvUtil_Video_SetCursor: Bitmap (%p) is in invalid memory", Bitmap);
349                 errno = -EINVAL;
350                 LEAVE('i', -1);
351                 return -1;
352         }
353
354         // Don't take a copy of the DrvUtil provided cursor
355         if( Bitmap == &gDrvUtil_TextModeCursor )
356         {
357                 LOG("No copy (provided cursor)");
358                 Buf->CursorBitmap = Bitmap;
359         }
360         else
361         {
362                 LOG("Make copy");
363                 size = sizeof(tVideo_IOCtl_Bitmap) + Bitmap->W*Bitmap->H*4;
364                 
365                 // Take a copy
366                 Buf->CursorBitmap = malloc( size );
367                 memcpy(Buf->CursorBitmap, Bitmap, size);
368         }
369         
370         // Restore cursor position
371         LOG("Drawing");
372         DrvUtil_Video_DrawCursor(Buf, csrX, csrY);
373         LEAVE('i', 0);
374         return 0;
375 }
376
377 void DrvUtil_Video_DrawCursor(tDrvUtil_Video_BufInfo *Buf, int X, int Y)
378 {
379          int    render_ox=0, render_oy=0, render_w, render_h;
380
381         ENTER("pBuf iX iY", Buf, X, Y);
382         DrvUtil_Video_RemoveCursor(Buf);
383
384         // X < 0 disables the cursor
385         if( X < 0 ) {
386                 Buf->CursorX = -1;
387                 LEAVE('-');
388                 return ;
389         }
390
391         // Sanity checking
392         if( X < 0 || Y < 0 || X >= Buf->Width || Y >= Buf->Height ) {
393                 LEAVE('-');
394                 return ;
395         }
396
397         // Ensure the cursor is enabled
398         if( !Buf->CursorBitmap ) {
399                 LEAVE('-');
400                 return ;
401         }
402         
403         // Save cursor position (for changing the bitmap)
404         Buf->CursorX = X;       Buf->CursorY = Y;
405         // Apply cursor's center offset
406         X -= Buf->CursorBitmap->XOfs;
407         Y -= Buf->CursorBitmap->YOfs;
408         
409         // Get the width of the cursor on screen (clipping to right/bottom edges)
410         render_w = X > Buf->Width  - Buf->CursorBitmap->W ? Buf->Width  - X : Buf->CursorBitmap->W;
411         render_h = Y > Buf->Height - Buf->CursorBitmap->H ? Buf->Height - Y : Buf->CursorBitmap->H;
412
413         // Clipp to left/top edges
414         if(X < 0) {     render_ox = -X; X = 0;  }
415         if(Y < 0) {     render_oy = -Y; Y = 0;  }
416
417         // Save values
418         Buf->CursorRenderW = render_w;  Buf->CursorRenderH = render_h;
419         Buf->CursorDestX   = X;         Buf->CursorDestY = Y;
420         Buf->CursorReadX   = render_ox; Buf->CursorReadY = render_oy;
421
422         LOG("%ix%i at %i,%i offset %i,%i",
423                 render_w, render_h, X, Y, render_ox, render_oy);
424
425         // Call render routine
426         DrvUtil_Video_RenderCursor(Buf);
427         LEAVE('-');
428 }
429
430 void DrvUtil_Video_RenderCursor(tDrvUtil_Video_BufInfo *Buf)
431 {
432          int    src_x = Buf->CursorReadX, src_y = Buf->CursorReadY;
433          int    render_w = Buf->CursorRenderW, render_h = Buf->CursorRenderH;
434          int    dest_x = Buf->CursorDestX, dest_y = Buf->CursorDestY;
435          int    bytes_per_px = (Buf->Depth + 7) / 8;
436          int    save_pitch = Buf->CursorBitmap->W * bytes_per_px;
437         void    *dest;
438         Uint32  *src;
439          int    x, y;
440
441         dest = (Uint8*)Buf->Framebuffer + dest_y*Buf->Pitch + dest_x*bytes_per_px;
442         src = Buf->CursorBitmap->Data + src_y * Buf->CursorBitmap->W + src_x;
443         
444         LOG("dest = %p, src = %p", dest, src);
445
446         // Allocate save buffer if not already
447         if( !Buf->CursorSaveBuf )
448                 Buf->CursorSaveBuf = malloc( Buf->CursorBitmap->W*Buf->CursorBitmap->H*bytes_per_px );
449
450         LOG("Saving back");
451         // Save behind the cursor
452         for( y = 0; y < render_h; y ++ )
453                 memcpy(
454                         (Uint8*)Buf->CursorSaveBuf + y*save_pitch,
455                         (Uint8*)dest + y*Buf->Pitch,
456                         render_w*bytes_per_px
457                         );
458
459         // Draw the cursor
460         switch(Buf->Depth)
461         {
462         case 15:
463         case 16:
464                 Log_Warning("DrvUtil", "TODO: Support 15/16 bpp modes in cursor draw");
465                 break;
466         case 24:
467                 LOG("24-bit render");
468                 for( y = 0; y < render_h; y ++ )
469                 {
470                         Uint8   *px;
471                         px = dest;
472                         for(x = 0; x < render_w; x ++, px += 3)
473                         {
474                                 Uint32  value = src[x];
475                                 // TODO: Should I implement alpha blending?
476                                 if(value & 0xFF000000)
477                                 {
478                                         px[0] = value & 0xFF;
479                                         px[1] = (value >> 8) & 0xFF;
480                                         px[2] = (value >> 16) & 0xFF;
481                                 }
482                                 else
483                                         ;
484                         }
485                         src += Buf->CursorBitmap->W;
486                         dest = (Uint8*)dest + Buf->Pitch;
487                 }
488                 break;
489         case 32:
490                 LOG("32-bit render");
491                 for( y = 0; y < render_h; y ++ )
492                 {
493                         Uint32  *px;
494                         px = dest;
495                         for(x = 0; x < render_w; x ++, px ++)
496                         {
497                                 Uint32  value = src[x];
498                                 // TODO: Should I implement alpha blending?
499                                 if(value & 0xFF000000)
500                                         *px = value;
501                                 else
502                                         ;       // NOP, completely transparent
503                         }
504                         LOG("row %i/%i (%p-%P) done", y+1, render_h, dest, MM_GetPhysAddr(dest));
505                         src += Buf->CursorBitmap->W;
506                         dest = (Uint8*)dest + Buf->Pitch;
507                 }
508                 break;
509         default:
510                 Log_Error("DrvUtil", "RenderCursor - Unknown bit depth %i", Buf->Depth);
511                 Buf->CursorX = -1;
512                 break;
513         }
514 }
515
516 void DrvUtil_Video_RemoveCursor(tDrvUtil_Video_BufInfo *Buf)
517 {
518          int    bytes_per_px = (Buf->Depth + 7) / 8;
519          int    y, save_pitch;
520         Uint8   *dest, *src;
521
522         // Just a little sanity
523         if( !Buf->CursorBitmap || Buf->CursorX == -1 )  return ;
524         if( !Buf->CursorSaveBuf )       return ;
525
526 //      Debug("DrvUtil_Video_RemoveCursor: (Buf=%p) dest_x=%i, dest_y=%i", Buf, Buf->CursorDestX, Buf->CursorDestY);
527
528         // Set up
529         save_pitch = Buf->CursorBitmap->W * bytes_per_px;
530         dest = (Uint8*)Buf->Framebuffer + Buf->CursorDestY * Buf->Pitch + Buf->CursorDestX*bytes_per_px;
531         src = Buf->CursorSaveBuf;
532         
533         // Copy each line back
534         for( y = 0; y < Buf->CursorRenderH; y ++ )
535         {
536                 memcpy( dest, src, Buf->CursorRenderW * bytes_per_px );
537                 src += save_pitch;
538                 dest += Buf->Pitch;
539         }
540         
541         // Set the cursor as removed
542         Buf->CursorX = -1;
543 }
544
545 void DrvUtil_Video_2D_Fill(void *Ent, Uint16 X, Uint16 Y, Uint16 W, Uint16 H, Uint32 Colour)
546 {
547         tDrvUtil_Video_BufInfo  *FBInfo = Ent;
548
549         switch( FBInfo->Depth )
550         {
551         case 32: {
552                 // TODO: Be less hacky
553                 size_t  pitch = FBInfo->Pitch/4;
554                 size_t  ofs = Y*pitch + X;
555                 Uint32  *buf = (Uint32*)FBInfo->Framebuffer + ofs;
556                 Uint32  *cbuf = NULL;
557                 if( FBInfo->BackBuffer )
558                         cbuf = (Uint32*)FBInfo->BackBuffer + ofs;
559                 while( H -- )
560                 {
561                         Uint32 *line;
562                         line = buf;
563                         for(int i = W; i--; line++)
564                                 *line = Colour;
565                         buf += pitch;
566                         if( cbuf ) {
567                                 line = cbuf;
568                                 for(int i = W; i--; line++ )
569                                         *line = Colour;
570                                 cbuf += pitch;
571                         }
572                 }
573                 break; }
574         default:
575                 // TODO: Handle non-32bit modes
576                 Log_Warning("DrvUtil", "TODO: <32bpp _Fill");
577                 break;
578         }
579 }
580
581 void DrvUtil_Video_2D_Blit(void *Ent, Uint16 DstX, Uint16 DstY, Uint16 SrcX, Uint16 SrcY, Uint16 W, Uint16 H)
582 {
583         tDrvUtil_Video_BufInfo  *FBInfo = Ent;
584          int    scrnpitch = FBInfo->Pitch;
585          int    bytes_per_px = (FBInfo->Depth + 7) / 8;
586          int    dst = DstY*scrnpitch + DstX;
587          int    src = SrcY*scrnpitch + SrcX;
588          int    tmp;
589         Uint8   *framebuffer = FBInfo->Framebuffer;
590         Uint8   *backbuffer = FBInfo->BackBuffer;
591         Uint8   *sourcebuffer = (FBInfo->BackBuffer ? FBInfo->BackBuffer : FBInfo->Framebuffer);
592         
593         //Log("Vesa_2D_Blit: (Ent=%p, DstX=%i, DstY=%i, SrcX=%i, SrcY=%i, W=%i, H=%i)",
594         //      Ent, DstX, DstY, SrcX, SrcY, W, H);
595         
596         if(SrcX + W > FBInfo->Width)    W = FBInfo->Width - SrcX;
597         if(DstX + W > FBInfo->Width)    W = FBInfo->Width - DstX;
598         if(SrcY + H > FBInfo->Height)   H = FBInfo->Height - SrcY;
599         if(DstY + H > FBInfo->Height)   H = FBInfo->Height - DstY;
600         
601         //Debug("W = %i, H = %i", W, H);
602         
603         if(W == FBInfo->Width && FBInfo->Pitch == FBInfo->Width*bytes_per_px)
604         {
605                 memmove(framebuffer + dst, sourcebuffer + src, H*FBInfo->Pitch);
606                 if( backbuffer )
607                         memmove(backbuffer + dst, sourcebuffer + src, H*FBInfo->Pitch);
608         }
609         else if( dst > src )
610         {
611                 // Reverse copy
612                 dst += H*scrnpitch;
613                 src += H*scrnpitch;
614                 while( H -- )
615                 {
616                         dst -= scrnpitch;
617                         src -= scrnpitch;
618                         tmp = W*bytes_per_px;
619                         for( tmp = W; tmp --; )
620                         {
621                                 size_t  src_o = src + tmp;
622                                 size_t  dst_o = src + tmp;
623                                 framebuffer[dst_o] = sourcebuffer[src_o];
624                                 if( backbuffer )
625                                         backbuffer[dst_o] = sourcebuffer[src_o];
626                         }
627                 }
628         }
629         else {
630                 // Normal copy is OK
631                 while( H -- )
632                 {
633                         memcpy(framebuffer + dst, sourcebuffer + src, W*bytes_per_px);
634                         if( backbuffer )
635                                 memcpy(backbuffer + dst, sourcebuffer + src, W*bytes_per_px);
636                         dst += scrnpitch;
637                         src += scrnpitch;
638                 }
639         }
640         //Log("Vesa_2D_Blit: RETURN");
641 }
642         
643

UCC git Repository :: git.ucc.asn.au