VirtualBox

Ignore:
Timestamp:
Jun 3, 2013 5:39:51 PM (12 years ago)
Author:
vboxsync
Message:

crOpenGL: burn fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/GuestHost/OpenGL/util/pixel.c

    r46343 r46369  
    16941694    /*@todo this should be implemented properly*/
    16951695
     1696#ifndef DEBUG_misha
    16961697    crWarning( "crPixelCopy3D:  simply crMemcpy'ing from srcPtr to dstPtr" );
     1698#endif
    16971699    if (dstFormat != srcFormat)
    16981700        crWarning( "crPixelCopy3D: formats don't match!" );
     
    18451847}
    18461848
    1847 void crDumpNamedTGAV(const char* fname, GLint w, GLint h, GLvoid *data, va_list va)
     1849void crDumpNamedTGAV(GLint w, GLint h, GLvoid *data, const char* fname, va_list va)
    18481850{
    18491851    char szName[4096];
     
    18521854}
    18531855
    1854 void crDumpNamedTGAF(const char* fname, GLint w, GLint h, GLvoid *data, ...)
     1856void crDumpNamedTGAF(GLint w, GLint h, GLvoid *data, const char* fname, ...)
    18551857{
    18561858    va_list va;
    18571859    int rc;
    18581860    va_start(va, fname);
    1859     crDumpNamedTGAV(fname, w, h, data, va);
     1861    crDumpNamedTGAV(w, h, data, fname, va);
    18601862    va_end(va);
    18611863}
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette