VirtualBox

Changeset 78795 in vbox for trunk/src/VBox/Additions/common


Ignore:
Timestamp:
May 27, 2019 7:12:19 PM (6 years ago)
Author:
vboxsync
Message:

Additions/common/crOpenGL/glx.c: Avoid a warning about bad/unknown attributes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/common/crOpenGL/glx.c

    r76553 r78795  
    929929                break;
    930930
     931            case GLX_SAMPLE_BUFFERS_SGIS: /* aka GLX_SAMPLES_ARB */
     932                if (attrib[1] > 0)
     933                    goto err_exit;
     934                attrib++;
     935                break;
     936            case GLX_SAMPLES_SGIS: /* aka GLX_SAMPLES_ARB */
     937                if (attrib[1] > 0)
     938                    goto err_exit;
     939                attrib++;
     940                break;
     941
    931942            case GLX_X_VISUAL_TYPE:
    932943            case GLX_TRANSPARENT_TYPE_EXT:
     
    937948            case GLX_TRANSPARENT_ALPHA_VALUE_EXT:
    938949                /* ignore */
    939                 crWarning("glXChooseVisual: ignoring attribute 0x%x", *attrib);
    940                 attrib++;
    941                 break;
    942 
     950                crWarning("glXChooseFBConfig: ignoring attribute 0x%x", *attrib);
     951                attrib++;
    943952                break;
    944953            default:
    945                 crWarning( "glXChooseVisual: bad attrib=0x%x, ignoring", *attrib );
     954                crWarning( "glXChooseFBConfig: bad attrib=0x%x, ignoring", *attrib );
    946955                attrib++;
    947956                break;
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