Changeset 78795 in vbox for trunk/src/VBox/Additions/common
- Timestamp:
- May 27, 2019 7:12:19 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/crOpenGL/glx.c
r76553 r78795 929 929 break; 930 930 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 931 942 case GLX_X_VISUAL_TYPE: 932 943 case GLX_TRANSPARENT_TYPE_EXT: … … 937 948 case GLX_TRANSPARENT_ALPHA_VALUE_EXT: 938 949 /* ignore */ 939 crWarning("glXChooseVisual: ignoring attribute 0x%x", *attrib); 940 attrib++; 941 break; 942 950 crWarning("glXChooseFBConfig: ignoring attribute 0x%x", *attrib); 951 attrib++; 943 952 break; 944 953 default: 945 crWarning( "glXChoose Visual: bad attrib=0x%x, ignoring", *attrib );954 crWarning( "glXChooseFBConfig: bad attrib=0x%x, ignoring", *attrib ); 946 955 attrib++; 947 956 break;
Note:
See TracChangeset
for help on using the changeset viewer.