From 7c20de6c7fb53ed404d4df0d975328318810ce01 Mon Sep 17 00:00:00 2001 From: marha Date: Mon, 18 Nov 2013 09:21:27 +0100 Subject: libXext mesa xkeyboard-config pixman 18 nov 2013 xkeyboard-config commit 51ab5c95e48b2a040fc132bb5c1a5e8bbe86c8f4 libXext commit bb24f2970f2e425f4df90c9b73d078ad15a73fbb pixman commit f473fd1e7553a4e92a0d72bea360f05d005c9a88 mesa commit 2cfbf84dadc915b7075a3f1cbb569daf699d5ff0 --- mesalib/VERSION | 2 +- mesalib/configure.ac | 4 - mesalib/docs/relnotes.html | 1 + mesalib/docs/relnotes/10.1.html | 60 +++++ mesalib/src/gallium/Automake.inc | 87 +++++++ mesalib/src/gallium/SConscript | 1 - mesalib/src/glsl/Makefile.sources | 1 + mesalib/src/glsl/glsl_parser_extras.cpp | 1 - mesalib/src/glsl/ir.h | 22 ++ mesalib/src/glsl/ir_equals.cpp | 198 +++++++++++++++ mesalib/src/glsl/link_interface_blocks.cpp | 271 +++++++++++++++++++-- mesalib/src/glsl/opt_algebraic.cpp | 19 +- mesalib/src/glsl/opt_cse.cpp | 180 +------------- mesalib/src/mesa/Android.libmesa_dricore.mk | 2 - mesalib/src/mesa/Android.libmesa_st_mesa.mk | 2 - mesalib/src/mesa/SConscript | 7 - mesalib/src/mesa/drivers/SConscript | 5 +- mesalib/src/mesa/drivers/dri/common/Android.mk | 2 +- mesalib/src/mesa/drivers/dri/common/Makefile.am | 10 +- .../src/mesa/drivers/dri/common/Makefile.sources | 8 +- mesalib/src/mesa/drivers/dri/common/SConscript | 83 +++++++ mesalib/src/mesa/main/api_arrayelt.c | 22 +- mesalib/src/mesa/main/arbprogram.c | 6 + mesalib/src/mesa/main/context.c | 2 +- mesalib/src/mesa/main/mtypes.h | 30 ++- mesalib/src/mesa/main/performance_monitor.c | 16 +- mesalib/src/mesa/main/texstorage.c | 7 + mesalib/src/mesa/main/varray.h | 6 - mesalib/src/mesa/program/Android.mk | 2 - mesalib/src/mesa/program/prog_execute.c | 10 - mesalib/src/mesa/program/prog_print.c | 10 - mesalib/src/mesa/program/program.c | 18 +- mesalib/src/mesa/program/program_parse.y | 7 + mesalib/src/mesa/program/program_parser.h | 2 +- mesalib/src/mesa/state_tracker/st_glsl_to_tgsi.cpp | 12 +- mesalib/src/mesa/state_tracker/st_mesa_to_tgsi.c | 8 +- 36 files changed, 818 insertions(+), 306 deletions(-) create mode 100644 mesalib/docs/relnotes/10.1.html create mode 100644 mesalib/src/glsl/ir_equals.cpp create mode 100644 mesalib/src/mesa/drivers/dri/common/SConscript (limited to 'mesalib') diff --git a/mesalib/VERSION b/mesalib/VERSION index 8e92e8350..7432bee2a 100644 --- a/mesalib/VERSION +++ b/mesalib/VERSION @@ -1 +1 @@ -10.0.0-devel +10.1.0-devel diff --git a/mesalib/configure.ac b/mesalib/configure.ac index e4a728490..fb16338b8 100644 --- a/mesalib/configure.ac +++ b/mesalib/configure.ac @@ -1050,7 +1050,6 @@ if test "x$enable_dri" = xyes; then DRI_LIB_DEPS="$DRI_LIB_DEPS $SELINUX_LIBS $LIBDRM_LIBS $EXPAT_LIBS -lm $PTHREAD_LIBS $DLOPEN_LIBS" GALLIUM_DRI_LIB_DEPS="$GALLIUM_DRI_LIB_DEPS $SELINUX_LIBS $LIBDRM_LIBS $EXPAT_LIBS -lm $CLOCK_LIB $PTHREAD_LIBS $DLOPEN_LIBS" - DRI_DRIVER_LDFLAGS="-module -avoid-version -shared -Wl,-Bsymbolic" fi AM_CONDITIONAL(NEED_MEGADRIVER, test -n "$DRI_DIRS") @@ -1058,7 +1057,6 @@ AM_CONDITIONAL(NEED_LIBMESA, test "x$enable_xlib_glx" = xyes -o \ "x$enable_osmesa" = xyes -o \ -n "$DRI_DIRS") AC_SUBST([DRI_LIB_DEPS]) -AC_SUBST([DRI_DRIVER_LDFLAGS]) AC_SUBST([GALLIUM_DRI_LIB_DEPS]) case $DRI_DIRS in @@ -1975,8 +1973,6 @@ AC_CONFIG_FILES([Makefile src/gallium/auxiliary/pipe-loader/Makefile src/gallium/drivers/Makefile src/gallium/drivers/freedreno/Makefile - src/gallium/drivers/freedreno/a2xx/Makefile - src/gallium/drivers/freedreno/a3xx/Makefile src/gallium/drivers/galahad/Makefile src/gallium/drivers/i915/Makefile src/gallium/drivers/identity/Makefile diff --git a/mesalib/docs/relnotes.html b/mesalib/docs/relnotes.html index c2324566f..13de49a64 100644 --- a/mesalib/docs/relnotes.html +++ b/mesalib/docs/relnotes.html @@ -21,6 +21,7 @@ The release notes summarize what's new or changed in each Mesa release.