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-1095-g69a74b9
Date: Tue, 09 Aug 2011 17:47:53 +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  69a74b9572835008f8595077878f7687f1d7673c (commit)
       via  513579b1f4c5682bfaa1bda8e5f849d61d93f1ff (commit)
      from  38eda6cab00fed4d967ee09386a10395e386a6ea (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=69a74b9572835008f8595077878f7687f1d7673c


commit 69a74b9572835008f8595077878f7687f1d7673c
Author: Rob Savoye <address@hidden>
Date:   Tue Aug 9 11:47:31 2011 -0600

    create_Renderer_ogl() is now openvg::create_handler()

diff --git a/gui/sdl/sdl_ogl_glue.cpp b/gui/sdl/sdl_ogl_glue.cpp
index dda0e5d..9aad232 100644
--- a/gui/sdl/sdl_ogl_glue.cpp
+++ b/gui/sdl/sdl_ogl_glue.cpp
@@ -16,10 +16,10 @@
 // along with this program; if not, write to the Free Software
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
-#include "sdl_ogl_glue.h"
 #include "opengl/Renderer_ogl.h"
 #include "tu_opengl_includes.h"
 #include "SDL.h"
+#include "sdl_ogl_glue.h"
 
 #include "log.h"
 
@@ -27,7 +27,6 @@
 
 using namespace std;
 
-
 namespace gnash
 {
 
@@ -56,7 +55,7 @@ SdlOglGlue::createRenderHandler(int depth)
 
     _bpp = depth;
 
-    Renderer* renderer = create_Renderer_ogl();
+    Renderer* renderer = renderer::opengl::create_handler();
 
     return renderer;
 }

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


commit 513579b1f4c5682bfaa1bda8e5f849d61d93f1ff
Author: Rob Savoye <address@hidden>
Date:   Tue Aug 9 11:08:31 2011 -0600

    use a different config constant for OpenVG headers.

diff --git a/librender/openvg/OpenVGRenderer.cpp 
b/librender/openvg/OpenVGRenderer.cpp
index ba2f3db..02051e1 100644
--- a/librender/openvg/OpenVGRenderer.cpp
+++ b/librender/openvg/OpenVGRenderer.cpp
@@ -46,10 +46,12 @@
 #include "CachedBitmap.h"
 
 #include <VG/vgu.h>
-#ifdef OPENVG_VERSION_1_1
+#ifdef HAVE_VG_EXT_H
 # include <VG/ext.h>
 #else
-# include <VG/vgext.h>
+# ifdef HAVE_VG_VGEXT_H
+#  include <VG/vgext.h>
+# endif
 #endif
 #include <VG/openvg.h>
 #define GNASH_IMAGE_QUALITY     VG_IMAGE_QUALITY_FASTER
diff --git a/librender/openvg/OpenVGRenderer.h 
b/librender/openvg/OpenVGRenderer.h
index 81623a0..611e1f8 100644
--- a/librender/openvg/OpenVGRenderer.h
+++ b/librender/openvg/OpenVGRenderer.h
@@ -21,6 +21,10 @@
 /// git master.
 ///
 
+#ifdef HAVE_CONFIG_H
+#include "gnashconfig.h"
+#endif
+
 #ifndef GNASH_RENDER_HANDLER_OVG_H
 #define GNASH_RENDER_HANDLER_OVG_H
 
@@ -38,10 +42,12 @@
 #include "FillStyle.h"
 
 #include <VG/vgu.h>
-#ifdef OPENVG_VERSION_1_1
+#ifdef HAVE_VG_EXT_H
 # include <VG/ext.h>
 #else
-# include <VG/vgext.h>
+# ifdef HAVE_VG_VGEXT_H
+#  include <VG/vgext.h>
+# endif
 #endif
 #include <VG/openvg.h>
 #include "openvg/OpenVGBitmap.h"

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

Summary of changes:
 gui/sdl/sdl_ogl_glue.cpp            |    5 ++---
 librender/openvg/OpenVGRenderer.cpp |    6 ++++--
 librender/openvg/OpenVGRenderer.h   |   10 ++++++++--
 3 files changed, 14 insertions(+), 7 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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