diff options
author | Timothy Arceri <tarceri@itsqueeze.com> | 2018-06-17 10:00:29 +1000 |
---|---|---|
committer | Timothy Arceri <tarceri@itsqueeze.com> | 2018-06-18 09:29:38 +1000 |
commit | 66673bef941af344314fe9c91cad8cd330b245eb (patch) | |
tree | b4e2a69a0ec35f93542f062bd4587fefa578c0bb /configure.ac | |
parent | b8e099e7d5c8a7165b89da81ff9d5efa45139902 (diff) |
mesa: Unconditionally enable floating-point textures
ARB_texture_float references US Patent #6,650,327 [1] which has a filing date
of June 16 1998.
According to [2], patents filed after 1995 expire 20 years from the filing
date, giving an expiration of June 17 2018.
[1] https://www.google.com/patents/US6650327
[2] https://en.wikipedia.org/wiki/Term_of_patent_in_the_United_States
Reviewed-by: Matt Turner <mattst88@gmail.com>
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/configure.ac b/configure.ac index 3f747bf38cc..7a0e4754208 100644 --- a/configure.ac +++ b/configure.ac @@ -764,21 +764,6 @@ esac AC_SUBST([LIB_EXT]) dnl -dnl potentially-infringing-but-nobody-knows-for-sure stuff -dnl -AC_ARG_ENABLE([texture-float], - [AS_HELP_STRING([--enable-texture-float], - [enable floating-point textures and renderbuffers @<:@default=disabled@:>@])], - [enable_texture_float="$enableval"], - [enable_texture_float=no] -) -if test "x$enable_texture_float" = xyes; then - AC_MSG_WARN([Floating-point textures enabled.]) - AC_MSG_WARN([Please consult docs/patents.txt with your lawyer before building Mesa.]) - DEFINES="$DEFINES -DTEXTURE_FLOAT_ENABLED" -fi - -dnl dnl Arch/platform-specific settings dnl AC_ARG_ENABLE([asm], |