gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] [SCM] Gnash branch, hwaccel, updated. release_0_8_9_final


From: Rob Savoye
Subject: [Gnash-commit] [SCM] Gnash branch, hwaccel, updated. release_0_8_9_final-774-g74c5073
Date: Fri, 27 May 2011 15:51:51 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnash".

The branch, hwaccel has been updated
       via  74c5073199301636bde72d6e5a890788b427e26a (commit)
       via  f455a62d547df62ba7607b771a38e9e53c6a7092 (commit)
      from  cf34856d6cdf5013d57e615f1efa7f2e8d4fde28 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit//commit/?id=74c5073199301636bde72d6e5a890788b427e26a


commit 74c5073199301636bde72d6e5a890788b427e26a
Author: Rob Savoye <address@hidden>
Date:   Thu May 12 20:14:37 2011 -0600

    throw and exception instead of returning an error if the window handle is 
bogus.

diff --git a/libdevice/egl/eglDevice.cpp b/libdevice/egl/eglDevice.cpp
index 0c8f157..3e4dc0c 100644
--- a/libdevice/egl/eglDevice.cpp
+++ b/libdevice/egl/eglDevice.cpp
@@ -379,8 +379,7 @@ EGLDevice::attachWindow(GnashDevice::native_window_t window)
     GNASH_REPORT_FUNCTION;
     
     if (!window) {
-        log_error("bogus window handle!");
-        return false;
+        throw GnashException("bogus window handle!");
     } else {
         _nativeWindow = static_cast<EGLNativeWindowType>(window);
     }

http://git.savannah.gnu.org/cgit//commit/?id=f455a62d547df62ba7607b771a38e9e53c6a7092


commit f455a62d547df62ba7607b771a38e9e53c6a7092
Author: Rob Savoye <address@hidden>
Date:   Mon May 9 07:42:11 2011 -0600

    fix typo in help string

diff --git a/configure.ac b/configure.ac
index 3425823..914fe5e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -909,7 +909,7 @@ build_agg=yes
 build_cairo=yes
 renderer_list="agg cairo"
 AC_ARG_ENABLE(renderer,
-  AC_HELP_STRING([--enable-renderer=], [Enable support for the specified 
renderers (agg|cairo|opengl|openvg|all, default=all)]),
+  AC_HELP_STRING([--enable-renderer], [Enable support for the specified 
renderers (agg|cairo|opengl|openvg|all, default=all)]),
   if test -n ${enableval}; then
     if test "x${enableval}" != "xno" -o "x${enableval}" != "xnone" ; then
       renderer_list="none"

-----------------------------------------------------------------------

Summary of changes:
 configure.ac                |    2 +-
 libdevice/egl/eglDevice.cpp |    3 +--
 2 files changed, 2 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

[Prev in Thread] Current Thread [Next in Thread]