nv50/ir: saturate depth writes
[mesa.git] / include / c99_compat.h
index 4be5b7e1259a1f5e2f52209e4c74860e7feffe73..b55ad9c181d4402058e4111f4b9cd029143b4f09 100644 (file)
  */
 #if defined(_MSC_VER)
 
-#  if _MSC_VER < 1500
-#    error "Microsoft Visual Studio 2008 or higher required"
+#  if _MSC_VER < 1800
+#    error "Microsoft Visual Studio 2013 or higher required"
 #  endif
 
    /*
-    * Visual Studio 2012 will complain if we define the `inline` keyword, but
+    * Visual Studio will complain if we define the `inline` keyword, but
     * actually it only supports the keyword on C++.
     *
     * To avoid this the _ALLOW_KEYWORD_MACROS must be set.
     */
-#  if (_MSC_VER >= 1700) && !defined(_ALLOW_KEYWORD_MACROS)
+#  if !defined(_ALLOW_KEYWORD_MACROS)
 #    define _ALLOW_KEYWORD_MACROS
 #  endif