Changeset 106656 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Oct 24, 2024 12:24:37 PM (3 months ago)
- Location:
- trunk/src/VBox/Additions/3D/mesa/mesa-24.0.2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/3D/mesa/mesa-24.0.2/Makefile.kmk
r104005 r106656 131 131 VBOX_MESA3D_VCC_DISABLED_WARNINGS += \ 132 132 -wd4254 -wd5039 -wd5204 -wd5219 133 if "$(VBOX_VCC_TOOL_STEM)" >= "VCC143" 134 # -wd4296: svga_tgsi_vgpu10.c(3403): warning C4296: '>=': expression is always true 135 # -wd5249: shader_info.h(491): warning C5249: 'shader_info::<unnamed-tag>::depth_layout' of type 'gl_frag_depth_layout' has named enumerators with values that cannot be represented in the given bit field width of '3'. 136 # -wd5262: ast_to_hir.cpp(1421): warning C5262: implicit fall-through occurs here; are you missing a break statement? Use [[fallthrough]] when a break statement is intentionally omitted between cases 137 VBOX_MESA3D_VCC_DISABLED_WARNINGS += \ 138 -wd4296 -wd5249 -wd5262 139 endif 133 140 134 141 TEMPLATE_VBoxMesa3DGuestR3Lib_CFLAGS.win = $(TEMPLATE_VBoxMesa3DGuestR3Dll_CFLAGS.win) $(VBOX_MESA3D_VCC_DISABLED_WARNINGS) -
trunk/src/VBox/Additions/3D/mesa/mesa-24.0.2/src/mesa/program/program_lexer.l
r103996 r106656 23 23 */ 24 24 25 #ifndef IPRT_NO_CRT 25 #ifndef IPRT_NO_CRT /* VBox */ 26 26 #ifndef _MSC_VER 27 27 #include <unistd.h> 28 #else /* VBox */ 29 #include <io.h> /* VBox */ 28 30 #endif 29 #else 30 #include <unistd.h> 31 #endif 31 #else /* VBox */ 32 #include <unistd.h> /* VBox */ 33 #endif /* VBox */ 32 34 33 35 #include "util/glheader.h"
Note:
See TracChangeset
for help on using the changeset viewer.