VirtualBox

Changeset 20879 in vbox for trunk


Ignore:
Timestamp:
Jun 24, 2009 7:40:43 AM (16 years ago)
Author:
vboxsync
Message:

gcc warnings

Location:
trunk/src/VBox/Additions/common/crOpenGL/pack
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/common/crOpenGL/pack/packspu.h

    r20411 r20879  
    4040    CRContext *clientState;  /* used to store client-side GL state */
    4141    GLint serverCtx;         /* context ID returned by server */
    42     char glVersion[100];     /* GL_VERSION string */
    43     char pszRealVendor[100];
    44     char pszRealVersion[100];
    45     char pszRealRenderer[100];
     42    GLubyte glVersion[100];     /* GL_VERSION string */
     43    GLubyte pszRealVendor[100];
     44    GLubyte pszRealVersion[100];
     45    GLubyte pszRealRenderer[100];
    4646};
    4747
  • trunk/src/VBox/Additions/common/crOpenGL/pack/packspu_getstring.c

    r20617 r20879  
    1616#endif
    1717
    18 static void GetString(GLenum name, char *pszStr)
     18static void GetString(GLenum name, GLubyte *pszStr)
    1919{
    2020    GET_THREAD(thread);
     
    8383        if (fversion>=2.f)
    8484        {
    85             sprintf(gpszExtensions, "%sGL_ARB_shading_language_100 GL_ARB_shader_objects GL_ARB_vertex_shader GL_ARB_fragment_shader", ext);
     85            sprintf((char*)gpszExtensions, "%sGL_ARB_shading_language_100 GL_ARB_shader_objects GL_ARB_vertex_shader GL_ARB_fragment_shader", ext);
    8686        }
    8787    }
     
    113113            {
    114114                GetString(GL_REAL_VERSION, ctx->pszRealVersion);
    115                 return (const GLubyte*) ctx->pszRealVersion;               
     115                return ctx->pszRealVersion;               
    116116            }
    117117            else
     
    119119            {
    120120                float version = GetVersionString();
    121                 sprintf(ctx->glVersion, "%.1f Chromium %s", version, CR_VERSION_STRING);
    122                 return (const GLubyte *) ctx->glVersion;
     121                sprintf((char*)ctx->glVersion, "%.1f Chromium %s", version, CR_VERSION_STRING);
     122                return ctx->glVersion;
    123123            }
    124124        case GL_VENDOR:
     
    127127            {
    128128                GetString(GL_REAL_VENDOR, ctx->pszRealVendor);
    129                 return (const GLubyte*) ctx->pszRealVendor;
     129                return ctx->pszRealVendor;
    130130            }
    131131            else
     
    139139            {
    140140                GetString(GL_REAL_RENDERER, ctx->pszRealRenderer);
    141                 return (const GLubyte*) ctx->pszRealRenderer;
     141                return ctx->pszRealRenderer;
    142142            }
    143143            else
     
    155155        case GL_REAL_VENDOR:
    156156            GetString(GL_REAL_VENDOR, ctx->pszRealVendor);
    157             return (const GLubyte*) ctx->pszRealVendor;
     157            return ctx->pszRealVendor;
    158158        case GL_REAL_VERSION:
    159159            GetString(GL_REAL_VERSION, ctx->pszRealVersion);
    160             return (const GLubyte*) ctx->pszRealVersion;
     160            return ctx->pszRealVersion;
    161161        case GL_REAL_RENDERER:
    162162            GetString(GL_REAL_RENDERER, ctx->pszRealRenderer);
    163             return (const GLubyte*) ctx->pszRealRenderer;
     163            return ctx->pszRealRenderer;
    164164#endif
    165165        default:
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