summaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
authorJulien Isorce <julien.isorce@gmail.com>2008-09-24 02:07:41 +0200
committerJulien Isorce <julien.isorce@gmail.com>2008-09-24 02:07:41 +0200
commitc737a7aa052f2ecc0a2a3e859b7b6162a666b7ff (patch)
tree235a1b804003decef7c49d8984c84b4d6a9f7c65 /TODO
parent4728c709e9d1dcf5bf652b86433226cd6b68cf7b (diff)
can use several G_LOG_DOMAINs and GST_CATegories, with msvc8
Diffstat (limited to 'TODO')
-rw-r--r--TODO14
1 files changed, 12 insertions, 2 deletions
diff --git a/TODO b/TODO
index 992cea7..f636032 100644
--- a/TODO
+++ b/TODO
@@ -73,12 +73,22 @@
(for examples gleffects does not check you have shaders available so it can cause segfault.)
(whereas using "gst_gl_display_gen_shader", the check is done)
-- (ALSMOST DONE) 18: use a custom debug category in GstGLShader instead of g_debug etc..
+(DONE) - 18: use a custom debug category in GstGLShader instead of g_debug etc..
fargiolas: GstGLShader is a generic object not a gst_object, when I wrote it I
asked at gstreamer developers which debugging system was better suited and
gst_debug was not the proper choice. Maybe we can disable them is by setting
a print handler (g_set_print_handler) and enabling them with some environment variable.
- -> GST_GL_SHADER_DEBUG has to work on win32 too
+ -> GST_GL_SHADER_DEBUG has to work on win32+vc8, too.
+ Now it works, I have added:
+ #else /* _MSC_VER */
+ /* varargs macros available since msvc8 (vs2005) */
+ # if _MSC_VER >= 1400
+ # define G_HAVE_ISO_VARARGS 1
+ # define __func__ __FUNCTION__
+ # endif
+ #endif /* not _MSC_VER */
+ in the glibconfig.h file.
+
(DONE) - 19: update authors from the CVS repository