You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(128) |
Dec
(65) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(48) |
Feb
(132) |
Mar
(95) |
Apr
(47) |
May
(54) |
Jun
(2) |
Jul
(57) |
Aug
(109) |
Sep
(131) |
Oct
(186) |
Nov
(105) |
Dec
(78) |
2007 |
Jan
(125) |
Feb
(105) |
Mar
(52) |
Apr
(104) |
May
(63) |
Jun
(116) |
Jul
(76) |
Aug
|
Sep
(18) |
Oct
(93) |
Nov
(110) |
Dec
(169) |
2008 |
Jan
(90) |
Feb
(64) |
Mar
(41) |
Apr
(23) |
May
(6) |
Jun
(18) |
Jul
(10) |
Aug
(61) |
Sep
(139) |
Oct
(50) |
Nov
(55) |
Dec
(2) |
2009 |
Jan
|
Feb
(1) |
Mar
(62) |
Apr
(22) |
May
(17) |
Jun
(19) |
Jul
(40) |
Aug
(21) |
Sep
|
Oct
(40) |
Nov
(23) |
Dec
|
2010 |
Jan
(14) |
Feb
(40) |
Mar
(9) |
Apr
(11) |
May
(19) |
Jun
(4) |
Jul
(10) |
Aug
(22) |
Sep
(15) |
Oct
|
Nov
(2) |
Dec
|
2011 |
Jan
(13) |
Feb
(10) |
Mar
|
Apr
(13) |
May
|
Jun
|
Jul
(2) |
Aug
(4) |
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
(33) |
May
(20) |
Jun
|
Jul
(8) |
Aug
(7) |
Sep
(2) |
Oct
|
Nov
|
Dec
|
From: Braden M. <br...@us...> - 2006-09-22 01:12:03
|
Update of /cvsroot/openvrml/openvrml/m4 In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv17588/m4 Modified Files: ov_cxx_visibility.m4 Log Message: Cache the visibility test result. Index: ov_cxx_visibility.m4 =================================================================== RCS file: /cvsroot/openvrml/openvrml/m4/ov_cxx_visibility.m4,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ov_cxx_visibility.m4 11 Aug 2005 22:50:13 -0000 1.1 --- ov_cxx_visibility.m4 22 Sep 2006 01:12:00 -0000 1.2 *************** *** 1,7 **** AC_DEFUN([OV_CXX_VISIBILITY],dnl [AC_REQUIRE([AC_PROG_CXX]) ! AC_LANG_PUSH([C++]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM( ! [class __attribute__((visibility("default"))) test {};], [test t;])], ! [$1],[$2]) AC_LANG_POP]) --- 1,14 ---- AC_DEFUN([OV_CXX_VISIBILITY],dnl [AC_REQUIRE([AC_PROG_CXX]) ! AC_CACHE_CHECK([if the compiler supports the gcc visibility attribute], ! [ov_cv_visibility], ! [AC_LANG_PUSH([C++]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM( ! [class __attribute__((visibility("default"))) test {};], ! [test t;])], ! [ov_cv_visibility=yes], ! [ov_cv_visibility=no]) AC_LANG_POP]) + AS_IF([test X$ov_cv_visibility = Xyes], [$1], [$2]) + ]) + |
From: Braden M. <br...@us...> - 2006-09-22 01:11:11
|
Update of /cvsroot/openvrml/openvrml/m4 In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv17538/m4 Modified Files: Tag: OpenVRML-0_16-BRANCH ov_cxx_visibility.m4 Log Message: Cache the visibility test result. Index: ov_cxx_visibility.m4 =================================================================== RCS file: /cvsroot/openvrml/openvrml/m4/ov_cxx_visibility.m4,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -d -r1.1 -r1.1.2.1 *** ov_cxx_visibility.m4 11 Aug 2005 22:50:13 -0000 1.1 --- ov_cxx_visibility.m4 22 Sep 2006 01:11:09 -0000 1.1.2.1 *************** *** 1,7 **** AC_DEFUN([OV_CXX_VISIBILITY],dnl [AC_REQUIRE([AC_PROG_CXX]) ! AC_LANG_PUSH([C++]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM( ! [class __attribute__((visibility("default"))) test {};], [test t;])], ! [$1],[$2]) AC_LANG_POP]) --- 1,14 ---- AC_DEFUN([OV_CXX_VISIBILITY],dnl [AC_REQUIRE([AC_PROG_CXX]) ! AC_CACHE_CHECK([if the compiler supports the gcc visibility attribute], ! [ov_cv_visibility], ! [AC_LANG_PUSH([C++]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM( ! [class __attribute__((visibility("default"))) test {};], ! [test t;])], ! [ov_cv_visibility=yes], ! [ov_cv_visibility=no]) AC_LANG_POP]) + AS_IF([test X$ov_cv_visibility = Xyes], [$1], [$2]) + ]) + |
From: Braden M. <br...@us...> - 2006-09-22 01:11:11
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv17538 Modified Files: Tag: OpenVRML-0_16-BRANCH ChangeLog Log Message: Cache the visibility test result. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1310.2.16 retrieving revision 1.1310.2.17 diff -C2 -d -r1.1310.2.16 -r1.1310.2.17 *** ChangeLog 22 Sep 2006 01:04:45 -0000 1.1310.2.16 --- ChangeLog 22 Sep 2006 01:11:08 -0000 1.1310.2.17 *************** *** 1,4 **** --- 1,8 ---- 2006-09-21 Braden McDaniel <br...@en...> + * m4/ov_cxx_visibility.m4: Cache the test result. + + 2006-09-21 Braden McDaniel <br...@en...> + Clean up of breakage from Windows font support check-in. |
From: Braden M. <br...@us...> - 2006-09-22 01:06:09
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv15587 Modified Files: ChangeLog configure.ac Log Message: Clean up of breakage from Windows font support check-in. Index: configure.ac =================================================================== RCS file: /cvsroot/openvrml/openvrml/configure.ac,v retrieving revision 1.92 retrieving revision 1.93 diff -C2 -d -r1.92 -r1.93 *** configure.ac 12 Aug 2006 05:14:58 -0000 1.92 --- configure.ac 22 Sep 2006 01:06:06 -0000 1.93 *************** *** 80,83 **** --- 80,107 ---- PKG_CHECK_MODULES([FONTCONFIG], [$REQUIRE_FONTCONFIG], , [have_fontconfig=no]) AC_PATH_PROG([FREETYPE_CONFIG], [freetype-config]) + # + # FreeType >= 2.2 uses const in callback function signatures. This + # doesn't cause an error in C; but it does in C++. + # + AS_IF([test -n "${FREETYPE_CONFIG}"], + [AC_MSG_CHECKING([if FreeType callback function signatures use const]) + AC_CACHE_VAL([ov_cv_ft_const], + [AC_LANG_PUSH([C++]) + save_CXXFLAGS="${CXXFLAGS}" + CXXFLAGS="${CXXFLAGS} `${FREETYPE_CONFIG} --cflags`" + AC_COMPILE_IFELSE([AC_LANG_PROGRAM( + [#include <ft2build.h> + #include FT_OUTLINE_H + int moveTo(const FT_Vector *, void *);], + [FT_Outline_MoveToFunc f = moveTo])], + [ov_cv_ft_const=const], + [ov_cv_ft_const= ]) + CXXFLAGS="${save_CXXFLAGS}" + AC_LANG_POP]) + AS_IF([test -n "$ov_cv_ft_const"], + [AC_MSG_RESULT([yes])], + [AC_MSG_RESULT([no])]) + ]) + PKG_CHECK_MODULES([JS], [$REQUIRE_MOZILLA_JS], , [have_js=no]) *************** *** 176,179 **** --- 200,205 ---- AC_DEFINE([OPENVRML_ENABLE_RENDER_TEXT_NODE], [1], [Defined if support for rendering Text nodes is enabled.]) + AC_DEFINE_UNQUOTED([OPENVRML_FT_CONST], [$ov_cv_ft_const], + [const for FreeType callback function signatures.]) fi AC_SUBST([FONTCONFIG_CFLAGS]) Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1330 retrieving revision 1.1331 diff -C2 -d -r1.1330 -r1.1331 *** ChangeLog 20 Sep 2006 01:25:55 -0000 1.1330 --- ChangeLog 22 Sep 2006 01:06:06 -0000 1.1331 *************** *** 1,2 **** --- 1,23 ---- + 2006-09-21 Braden McDaniel <br...@en...> + + Clean up of breakage from Windows font support check-in. + + * configure.ac: Check to see whether FreeType function callback + signatures need const. + * src/libopenvrml/openvrml/vrml97node.cpp + (text_node::update_face()): Use + boost::ignore_unused_variable_warning to quell warnings about + scope_guard variables. Use unsigned_char_string instead of + obsoleted FcChar8_string type. Revert face_index to an int; the + fontconfig API doesn't like FT_Long. + (moveTo_(const FT_Vector *, void *)): Use OPENVRML_FT_CONST macro + in function signature. + (lineTo_(const FT_Vector *, void *)): Use OPENVRML_FT_CONST macro + in function signature. + (conicTo_(const FT_Vector *, const FT_Vector *, void *)): Use + OPENVRML_FT_CONST macro in function signature. + (cubicTo_(const FT_Vector *, const FT_Vector *, const FT_Vector *, + void *)): Use OPENVRML_FT_CONST macro in function signature. + 2006-09-19 Braden McDaniel <br...@en...> |
From: Braden M. <br...@us...> - 2006-09-22 01:06:09
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv15587/src/libopenvrml/openvrml Modified Files: vrml97node.cpp Log Message: Clean up of breakage from Windows font support check-in. Index: vrml97node.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml/vrml97node.cpp,v retrieving revision 1.113 retrieving revision 1.114 diff -C2 -d -r1.113 -r1.114 *** vrml97node.cpp 19 Sep 2006 20:18:31 -0000 1.113 --- vrml97node.cpp 22 Sep 2006 01:06:07 -0000 1.114 *************** *** 5,9 **** // Copyright 1998 Chris Morley // Copyright 1999 Kumaran Santhanam ! // Copyright 2001, 2002, 2003, 2004, 2005 Braden McDaniel // Copyright 2002 S. K. Bose // --- 5,9 ---- // Copyright 1998 Chris Morley // Copyright 1999 Kumaran Santhanam ! // Copyright 2001, 2002, 2003, 2004, 2005, 2006 Braden McDaniel // Copyright 2002 S. K. Bose // *************** *** 23035,23041 **** const FT_Long face_index = 0; # else // Everybody else use fontconfig. - FcPattern * initialPattern = 0; - FcPattern * matchedPattern = 0; - using std::vector; --- 23035,23038 ---- *************** *** 23077,23086 **** fontName += ":outline=True"; ! initialPattern = ! FcNameParse(FcChar8_string(fontName.begin(), ! fontName.end()).c_str()); if (!initialPattern) { throw std::bad_alloc(); } scope_guard initialPattern_guard = make_guard(&FcPatternDestroy, initialPattern); // --- 23074,23084 ---- fontName += ":outline=True"; ! FcPattern * const initialPattern = ! FcNameParse(unsigned_char_string(fontName.begin(), ! fontName.end()).c_str()); if (!initialPattern) { throw std::bad_alloc(); } scope_guard initialPattern_guard = make_guard(&FcPatternDestroy, initialPattern); + boost::ignore_unused_variable_warning(initialPattern_guard); // *************** *** 23097,23105 **** FcResult result = FcResultMatch; ! matchedPattern = FcFontMatch(0, initialPattern, &result); if (result != FcResultMatch) { throw FontconfigError(result); } scope_guard matchedPattern_guard = make_guard(&FcPatternDestroy, matchedPattern); ! assert(matchedPattern); FcChar8 * filename = 0; --- 23095,23105 ---- FcResult result = FcResultMatch; ! FcPattern * const matchedPattern = ! FcFontMatch(0, initialPattern, &result); if (result != FcResultMatch) { throw FontconfigError(result); } + assert(matchedPattern); scope_guard matchedPattern_guard = make_guard(&FcPatternDestroy, matchedPattern); ! boost::ignore_unused_variable_warning(matchedPattern_guard); FcChar8 * filename = 0; *************** *** 23110,23114 **** if (result != FcResultMatch) { throw FontconfigError(result); } ! FT_Long face_index = 0; result = FcPatternGetInteger(matchedPattern, FC_INDEX, 0, &face_index); --- 23110,23114 ---- if (result != FcResultMatch) { throw FontconfigError(result); } ! int face_index = 0; result = FcPatternGetInteger(matchedPattern, FC_INDEX, 0, &face_index); *************** *** 23129,23133 **** FT_Error ftError = FT_Err_Ok; ftError = FT_New_Face(nodeClass.freeTypeLibrary, ! &ftFilename[0], face_index, &newFace); if (ftError) { throw FreeTypeError(ftError); } --- 23129,23134 ---- FT_Error ftError = FT_Err_Ok; ftError = FT_New_Face(nodeClass.freeTypeLibrary, ! &ftFilename[0], FT_Long(face_index), ! &newFace); if (ftError) { throw FreeTypeError(ftError); } *************** *** 23159,23163 **** const float stepSize_ = 0.2f; ! extern "C" int moveTo_(const FT_Vector * const to, void * const user) { using std::vector; --- 23160,23165 ---- const float stepSize_ = 0.2f; ! extern "C" int moveTo_(OPENVRML_FT_CONST FT_Vector * const to, ! void * const user) { using std::vector; *************** *** 23176,23180 **** } ! extern "C" int lineTo_(const FT_Vector * const to, void * const user) { assert(user); --- 23178,23183 ---- } ! extern "C" int lineTo_(OPENVRML_FT_CONST FT_Vector * const to, ! void * const user) { assert(user); *************** *** 23239,23244 **** } ! extern "C" int conicTo_(const FT_Vector * const control, ! const FT_Vector * const to, void * const user) { --- 23242,23247 ---- } ! extern "C" int conicTo_(OPENVRML_FT_CONST FT_Vector * const control, ! OPENVRML_FT_CONST FT_Vector * const to, void * const user) { *************** *** 23273,23279 **** } ! extern "C" int cubicTo_(const FT_Vector * const control1, ! const FT_Vector * const control2, ! const FT_Vector * const to, void * const user) { --- 23276,23282 ---- } ! extern "C" int cubicTo_(OPENVRML_FT_CONST FT_Vector * const control1, ! OPENVRML_FT_CONST FT_Vector * const control2, ! OPENVRML_FT_CONST FT_Vector * const to, void * const user) { |
From: Braden M. <br...@us...> - 2006-09-22 01:04:51
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv14883/src/libopenvrml/openvrml Modified Files: Tag: OpenVRML-0_16-BRANCH vrml97node.cpp Log Message: Clean up of breakage from Windows font support check-in. Index: vrml97node.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml/vrml97node.cpp,v retrieving revision 1.108.2.4 retrieving revision 1.108.2.5 diff -C2 -d -r1.108.2.4 -r1.108.2.5 *** vrml97node.cpp 19 Sep 2006 20:18:13 -0000 1.108.2.4 --- vrml97node.cpp 22 Sep 2006 01:04:45 -0000 1.108.2.5 *************** *** 5,9 **** // Copyright 1998 Chris Morley // Copyright 1999 Kumaran Santhanam ! // Copyright 2001, 2002, 2003, 2004, 2005 Braden McDaniel // Copyright 2002 S. K. Bose // --- 5,9 ---- // Copyright 1998 Chris Morley // Copyright 1999 Kumaran Santhanam ! // Copyright 2001, 2002, 2003, 2004, 2005, 2006 Braden McDaniel // Copyright 2002 S. K. Bose // *************** *** 23034,23040 **** const FT_Long face_index = 0; # else // Everybody else use fontconfig. - FcPattern * initialPattern = 0; - FcPattern * matchedPattern = 0; - using std::vector; --- 23034,23037 ---- *************** *** 23076,23085 **** fontName += ":outline=True"; ! initialPattern = ! FcNameParse(FcChar8_string(fontName.begin(), ! fontName.end()).c_str()); if (!initialPattern) { throw std::bad_alloc(); } scope_guard initialPattern_guard = make_guard(&FcPatternDestroy, initialPattern); // --- 23073,23083 ---- fontName += ":outline=True"; ! FcPattern * const initialPattern = ! FcNameParse(unsigned_char_string(fontName.begin(), ! fontName.end()).c_str()); if (!initialPattern) { throw std::bad_alloc(); } scope_guard initialPattern_guard = make_guard(&FcPatternDestroy, initialPattern); + boost::ignore_unused_variable_warning(initialPattern_guard); // *************** *** 23096,23104 **** FcResult result = FcResultMatch; ! matchedPattern = FcFontMatch(0, initialPattern, &result); if (result != FcResultMatch) { throw FontconfigError(result); } scope_guard matchedPattern_guard = make_guard(&FcPatternDestroy, matchedPattern); ! assert(matchedPattern); FcChar8 * filename = 0; --- 23094,23104 ---- FcResult result = FcResultMatch; ! FcPattern * const matchedPattern = ! FcFontMatch(0, initialPattern, &result); if (result != FcResultMatch) { throw FontconfigError(result); } + assert(matchedPattern); scope_guard matchedPattern_guard = make_guard(&FcPatternDestroy, matchedPattern); ! boost::ignore_unused_variable_warning(matchedPattern_guard); FcChar8 * filename = 0; *************** *** 23109,23113 **** if (result != FcResultMatch) { throw FontconfigError(result); } ! FT_Long face_index = 0; result = FcPatternGetInteger(matchedPattern, FC_INDEX, 0, &face_index); --- 23109,23113 ---- if (result != FcResultMatch) { throw FontconfigError(result); } ! int face_index = 0; result = FcPatternGetInteger(matchedPattern, FC_INDEX, 0, &face_index); *************** *** 23128,23132 **** FT_Error ftError = FT_Err_Ok; ftError = FT_New_Face(nodeClass.freeTypeLibrary, ! &ftFilename[0], face_index, &newFace); if (ftError) { throw FreeTypeError(ftError); } --- 23128,23133 ---- FT_Error ftError = FT_Err_Ok; ftError = FT_New_Face(nodeClass.freeTypeLibrary, ! &ftFilename[0], FT_Long(face_index), ! &newFace); if (ftError) { throw FreeTypeError(ftError); } *************** *** 23158,23162 **** const float stepSize_ = 0.2f; ! extern "C" int moveTo_(const FT_Vector * const to, void * const user) { using std::vector; --- 23159,23164 ---- const float stepSize_ = 0.2f; ! extern "C" int moveTo_(OPENVRML_FT_CONST FT_Vector * const to, ! void * const user) { using std::vector; *************** *** 23175,23179 **** } ! extern "C" int lineTo_(const FT_Vector * const to, void * const user) { assert(user); --- 23177,23182 ---- } ! extern "C" int lineTo_(OPENVRML_FT_CONST FT_Vector * const to, ! void * const user) { assert(user); *************** *** 23237,23242 **** } ! extern "C" int conicTo_(const FT_Vector * const control, ! const FT_Vector * const to, void * const user) { --- 23240,23245 ---- } ! extern "C" int conicTo_(OPENVRML_FT_CONST FT_Vector * const control, ! OPENVRML_FT_CONST FT_Vector * const to, void * const user) { *************** *** 23271,23277 **** } ! extern "C" int cubicTo_(const FT_Vector * const control1, ! const FT_Vector * const control2, ! const FT_Vector * const to, void * const user) { --- 23274,23280 ---- } ! extern "C" int cubicTo_(OPENVRML_FT_CONST FT_Vector * const control1, ! OPENVRML_FT_CONST FT_Vector * const control2, ! OPENVRML_FT_CONST FT_Vector * const to, void * const user) { |
From: Braden M. <br...@us...> - 2006-09-22 01:04:51
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv14883 Modified Files: Tag: OpenVRML-0_16-BRANCH ChangeLog configure.ac Log Message: Clean up of breakage from Windows font support check-in. Index: configure.ac =================================================================== RCS file: /cvsroot/openvrml/openvrml/configure.ac,v retrieving revision 1.92 retrieving revision 1.92.2.1 diff -C2 -d -r1.92 -r1.92.2.1 *** configure.ac 12 Aug 2006 05:14:58 -0000 1.92 --- configure.ac 22 Sep 2006 01:04:45 -0000 1.92.2.1 *************** *** 80,83 **** --- 80,107 ---- PKG_CHECK_MODULES([FONTCONFIG], [$REQUIRE_FONTCONFIG], , [have_fontconfig=no]) AC_PATH_PROG([FREETYPE_CONFIG], [freetype-config]) + # + # FreeType >= 2.2 uses const in callback function signatures. This + # doesn't cause an error in C; but it does in C++. + # + AS_IF([test -n "${FREETYPE_CONFIG}"], + [AC_MSG_CHECKING([if FreeType callback function signatures use const]) + AC_CACHE_VAL([ov_cv_ft_const], + [AC_LANG_PUSH([C++]) + save_CXXFLAGS="${CXXFLAGS}" + CXXFLAGS="${CXXFLAGS} `${FREETYPE_CONFIG} --cflags`" + AC_COMPILE_IFELSE([AC_LANG_PROGRAM( + [#include <ft2build.h> + #include FT_OUTLINE_H + int moveTo(const FT_Vector *, void *);], + [FT_Outline_MoveToFunc f = moveTo])], + [ov_cv_ft_const=const], + [ov_cv_ft_const= ]) + CXXFLAGS="${save_CXXFLAGS}" + AC_LANG_POP]) + AS_IF([test -n "$ov_cv_ft_const"], + [AC_MSG_RESULT([yes])], + [AC_MSG_RESULT([no])]) + ]) + PKG_CHECK_MODULES([JS], [$REQUIRE_MOZILLA_JS], , [have_js=no]) *************** *** 176,179 **** --- 200,205 ---- AC_DEFINE([OPENVRML_ENABLE_RENDER_TEXT_NODE], [1], [Defined if support for rendering Text nodes is enabled.]) + AC_DEFINE_UNQUOTED([OPENVRML_FT_CONST], [$ov_cv_ft_const], + [const for FreeType callback function signatures.]) fi AC_SUBST([FONTCONFIG_CFLAGS]) Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1310.2.15 retrieving revision 1.1310.2.16 diff -C2 -d -r1.1310.2.15 -r1.1310.2.16 *** ChangeLog 20 Sep 2006 01:25:28 -0000 1.1310.2.15 --- ChangeLog 22 Sep 2006 01:04:45 -0000 1.1310.2.16 *************** *** 1,2 **** --- 1,23 ---- + 2006-09-21 Braden McDaniel <br...@en...> + + Clean up of breakage from Windows font support check-in. + + * configure.ac: Check to see whether FreeType function callback + signatures need const. + * src/libopenvrml/openvrml/vrml97node.cpp + (text_node::update_face()): Use + boost::ignore_unused_variable_warning to quell warnings about + scope_guard variables. Use unsigned_char_string instead of + obsoleted FcChar8_string type. Revert face_index to an int; the + fontconfig API doesn't like FT_Long. + (moveTo_(const FT_Vector *, void *)): Use OPENVRML_FT_CONST macro + in function signature. + (lineTo_(const FT_Vector *, void *)): Use OPENVRML_FT_CONST macro + in function signature. + (conicTo_(const FT_Vector *, const FT_Vector *, void *)): Use + OPENVRML_FT_CONST macro in function signature. + (cubicTo_(const FT_Vector *, const FT_Vector *, const FT_Vector *, + void *)): Use OPENVRML_FT_CONST macro in function signature. + 2006-09-19 Braden McDaniel <br...@en...> |
From: Braden M. <br...@us...> - 2006-09-20 01:26:02
|
Update of /cvsroot/openvrml/openvrml/ide-projects In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv5502/ide-projects Modified Files: Makefile.am Log Message: Added config headers and resource scripts to the distribution. Index: Makefile.am =================================================================== RCS file: /cvsroot/openvrml/openvrml/ide-projects/Makefile.am,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** Makefile.am 20 Sep 2006 00:32:24 -0000 1.11 --- Makefile.am 20 Sep 2006 01:25:55 -0000 1.12 *************** *** 3,7 **** --- 3,13 ---- Windows/VisualC8_0/OpenVRML/antlr/antlr.vcproj \ Windows/VisualC8_0/OpenVRML/openvrml/openvrml.vcproj \ + Windows/VisualC8_0/OpenVRML/openvrml/openvrml-config.h \ + Windows/VisualC8_0/OpenVRML/openvrml/openvrml.rc \ + Windows/VisualC8_0/OpenVRML/openvrml/resource.h \ Windows/VisualC8_0/OpenVRML/openvrml-gl/openvrml-gl.vcproj \ + Windows/VisualC8_0/OpenVRML/openvrml-gl/openvrml-gl-config.h \ + Windows/VisualC8_0/OpenVRML/openvrml-gl/openvrml-gl.rc \ + Windows/VisualC8_0/OpenVRML/openvrml-gl/openvrml-gl.h \ Windows/VisualC8_0/OpenVRML/sdl-viewer/sdl-viewer.vcproj |
From: Braden M. <br...@us...> - 2006-09-20 01:26:00
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv5502 Modified Files: ChangeLog Log Message: Added config headers and resource scripts to the distribution. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1329 retrieving revision 1.1330 diff -C2 -d -r1.1329 -r1.1330 *** ChangeLog 20 Sep 2006 00:32:24 -0000 1.1329 --- ChangeLog 20 Sep 2006 01:25:55 -0000 1.1330 *************** *** 1,4 **** --- 1,9 ---- 2006-09-19 Braden McDaniel <br...@en...> + * ide-projects/Makefile.am (VISUALC8_0_FILES): Added config + headers and resource scripts to the distribution. + + 2006-09-19 Braden McDaniel <br...@en...> + Removed Visual C++ 7.1 project files. |
From: Braden M. <br...@us...> - 2006-09-20 01:25:30
|
Update of /cvsroot/openvrml/openvrml/ide-projects In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv5449/ide-projects Modified Files: Tag: OpenVRML-0_16-BRANCH Makefile.am Log Message: Added config headers and resource scripts to the distribution. Index: Makefile.am =================================================================== RCS file: /cvsroot/openvrml/openvrml/ide-projects/Makefile.am,v retrieving revision 1.10.2.1 retrieving revision 1.10.2.2 diff -C2 -d -r1.10.2.1 -r1.10.2.2 *** Makefile.am 20 Sep 2006 00:32:13 -0000 1.10.2.1 --- Makefile.am 20 Sep 2006 01:25:28 -0000 1.10.2.2 *************** *** 3,7 **** --- 3,13 ---- Windows/VisualC8_0/OpenVRML/antlr/antlr.vcproj \ Windows/VisualC8_0/OpenVRML/openvrml/openvrml.vcproj \ + Windows/VisualC8_0/OpenVRML/openvrml/openvrml-config.h \ + Windows/VisualC8_0/OpenVRML/openvrml/openvrml.rc \ + Windows/VisualC8_0/OpenVRML/openvrml/resource.h \ Windows/VisualC8_0/OpenVRML/openvrml-gl/openvrml-gl.vcproj \ + Windows/VisualC8_0/OpenVRML/openvrml-gl/openvrml-gl-config.h \ + Windows/VisualC8_0/OpenVRML/openvrml-gl/openvrml-gl.rc \ + Windows/VisualC8_0/OpenVRML/openvrml-gl/openvrml-gl.h \ Windows/VisualC8_0/OpenVRML/sdl-viewer/sdl-viewer.vcproj |
From: Braden M. <br...@us...> - 2006-09-20 01:25:30
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv5449 Modified Files: Tag: OpenVRML-0_16-BRANCH ChangeLog Log Message: Added config headers and resource scripts to the distribution. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1310.2.14 retrieving revision 1.1310.2.15 diff -C2 -d -r1.1310.2.14 -r1.1310.2.15 *** ChangeLog 20 Sep 2006 00:32:13 -0000 1.1310.2.14 --- ChangeLog 20 Sep 2006 01:25:28 -0000 1.1310.2.15 *************** *** 1,4 **** --- 1,9 ---- 2006-09-19 Braden McDaniel <br...@en...> + * ide-projects/Makefile.am (VISUALC8_0_FILES): Added config + headers and resource scripts to the distribution. + + 2006-09-19 Braden McDaniel <br...@en...> + Removed Visual C++ 7.1 project files. |
From: Braden M. <br...@us...> - 2006-09-20 00:32:27
|
Update of /cvsroot/openvrml/openvrml/ide-projects/Windows/VisualC7_1/OpenVRML/test-openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv15711/ide-projects/Windows/VisualC7_1/OpenVRML/test-openvrml Removed Files: test-openvrml.vcproj Log Message: Removed Visual C++ 7.1 project files. --- test-openvrml.vcproj DELETED --- |
From: Braden M. <br...@us...> - 2006-09-20 00:32:27
|
Update of /cvsroot/openvrml/openvrml/ide-projects/Windows/VisualC7_1/OpenVRML/sdl-viewer In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv15711/ide-projects/Windows/VisualC7_1/OpenVRML/sdl-viewer Removed Files: sdl-viewer.vcproj Log Message: Removed Visual C++ 7.1 project files. --- sdl-viewer.vcproj DELETED --- |
From: Braden M. <br...@us...> - 2006-09-20 00:32:26
|
Update of /cvsroot/openvrml/openvrml/ide-projects/Windows/VisualC7_1/OpenVRML In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv15711/ide-projects/Windows/VisualC7_1/OpenVRML Removed Files: OpenVRML.sln Log Message: Removed Visual C++ 7.1 project files. --- OpenVRML.sln DELETED --- |
From: Braden M. <br...@us...> - 2006-09-20 00:32:26
|
Update of /cvsroot/openvrml/openvrml/ide-projects In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv15711/ide-projects Modified Files: Makefile.am Log Message: Removed Visual C++ 7.1 project files. Index: Makefile.am =================================================================== RCS file: /cvsroot/openvrml/openvrml/ide-projects/Makefile.am,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** Makefile.am 12 Feb 2006 03:15:39 -0000 1.10 --- Makefile.am 20 Sep 2006 00:32:24 -0000 1.11 *************** *** 1,9 **** - VISUALC7_1_FILES = \ - Windows/VisualC7_1/OpenVRML/OpenVRML.sln \ - Windows/VisualC7_1/OpenVRML/antlr/antlr.vcproj \ - Windows/VisualC7_1/OpenVRML/openvrml/openvrml.vcproj \ - Windows/VisualC7_1/OpenVRML/openvrml-gl/openvrml-gl.vcproj \ - Windows/VisualC7_1/OpenVRML/sdl-viewer/sdl-viewer.vcproj - VISUALC8_0_FILES = \ Windows/VisualC8_0/OpenVRML/OpenVRML.sln \ --- 1,2 ---- *************** *** 13,15 **** Windows/VisualC8_0/OpenVRML/sdl-viewer/sdl-viewer.vcproj ! EXTRA_DIST = $(VISUALC7_1_FILES) $(VISUALC8_0_FILES) --- 6,8 ---- Windows/VisualC8_0/OpenVRML/sdl-viewer/sdl-viewer.vcproj ! EXTRA_DIST = $(VISUALC8_0_FILES) |
From: Braden M. <br...@us...> - 2006-09-20 00:32:26
|
Update of /cvsroot/openvrml/openvrml/ide-projects/Windows/VisualC7_1/OpenVRML/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv15711/ide-projects/Windows/VisualC7_1/OpenVRML/openvrml Removed Files: openvrml-config.h openvrml.vcproj Log Message: Removed Visual C++ 7.1 project files. --- openvrml.vcproj DELETED --- --- openvrml-config.h DELETED --- |
From: Braden M. <br...@us...> - 2006-09-20 00:32:26
|
Update of /cvsroot/openvrml/openvrml/ide-projects/Windows/VisualC7_1/OpenVRML/antlr In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv15711/ide-projects/Windows/VisualC7_1/OpenVRML/antlr Removed Files: antlr.vcproj Log Message: Removed Visual C++ 7.1 project files. --- antlr.vcproj DELETED --- |
From: Braden M. <br...@us...> - 2006-09-20 00:32:26
|
Update of /cvsroot/openvrml/openvrml/ide-projects/Windows/VisualC7_1/OpenVRML/openvrml-gl In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv15711/ide-projects/Windows/VisualC7_1/OpenVRML/openvrml-gl Removed Files: openvrml-gl-config.h openvrml-gl.vcproj Log Message: Removed Visual C++ 7.1 project files. --- openvrml-gl-config.h DELETED --- --- openvrml-gl.vcproj DELETED --- |
From: Braden M. <br...@us...> - 2006-09-20 00:32:26
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv15711 Modified Files: ChangeLog Log Message: Removed Visual C++ 7.1 project files. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1328 retrieving revision 1.1329 diff -C2 -d -r1.1328 -r1.1329 *** ChangeLog 19 Sep 2006 21:34:40 -0000 1.1328 --- ChangeLog 20 Sep 2006 00:32:24 -0000 1.1329 *************** *** 1,4 **** --- 1,27 ---- 2006-09-19 Braden McDaniel <br...@en...> + Removed Visual C++ 7.1 project files. + + * ide-projects/Makefile.am (VISUALC7_1_FILES): Removed. + (EXTRA_DIST): Removed reference to VISUALC7_1_FILES. + * ide-projects/Windows/VisualC7_1/OpenVRML/OpenVRML.sln: Removed + file. + * ide-projects/Windows/VisualC7_1/OpenVRML/antlr/antlr.vcproj: + Removed file. + * ide-projects/Windows/VisualC7_1/OpenVRML/openvrml/openvrml-config.h: + Removed file. + * ide-projects/Windows/VisualC7_1/OpenVRML/openvrml/openvrml.vcproj: + Removed file. + * ide-projects/Windows/VisualC7_1/OpenVRML/openvrml-gl/openvrml-gl-config.h: + Removed file. + * ide-projects/Windows/VisualC7_1/OpenVRML/openvrml-gl/openvrml-gl.vcproj: + Removed file. + * ide-projects/Windows/VisualC7_1/OpenVRML/sdl-viewer/sdl-viewer.vcproj: + Removed file. + * ide-projects/Windows/VisualC7_1/OpenVRML/test-openvrml/test-openvrml.vcproj: + Removed file. + + 2006-09-19 Braden McDaniel <br...@en...> + * src/libopenvrml/openvrml/basetypes.h: Changed declaration of openvrml::mat4f from class to struct for consistency with |
From: Braden M. <br...@us...> - 2006-09-20 00:32:19
|
Update of /cvsroot/openvrml/openvrml/ide-projects/Windows/VisualC7_1/OpenVRML/sdl-viewer In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv15645/ide-projects/Windows/VisualC7_1/OpenVRML/sdl-viewer Removed Files: Tag: OpenVRML-0_16-BRANCH sdl-viewer.vcproj Log Message: Removed Visual C++ 7.1 project files. --- sdl-viewer.vcproj DELETED --- |
From: Braden M. <br...@us...> - 2006-09-20 00:32:19
|
Update of /cvsroot/openvrml/openvrml/ide-projects/Windows/VisualC7_1/OpenVRML/test-openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv15645/ide-projects/Windows/VisualC7_1/OpenVRML/test-openvrml Removed Files: Tag: OpenVRML-0_16-BRANCH test-openvrml.vcproj Log Message: Removed Visual C++ 7.1 project files. --- test-openvrml.vcproj DELETED --- |
From: Braden M. <br...@us...> - 2006-09-20 00:32:16
|
Update of /cvsroot/openvrml/openvrml/ide-projects/Windows/VisualC7_1/OpenVRML/antlr In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv15645/ide-projects/Windows/VisualC7_1/OpenVRML/antlr Removed Files: Tag: OpenVRML-0_16-BRANCH antlr.vcproj Log Message: Removed Visual C++ 7.1 project files. --- antlr.vcproj DELETED --- |
From: Braden M. <br...@us...> - 2006-09-20 00:32:16
|
Update of /cvsroot/openvrml/openvrml/ide-projects/Windows/VisualC7_1/OpenVRML/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv15645/ide-projects/Windows/VisualC7_1/OpenVRML/openvrml Removed Files: Tag: OpenVRML-0_16-BRANCH openvrml-config.h openvrml.vcproj Log Message: Removed Visual C++ 7.1 project files. --- openvrml.vcproj DELETED --- --- openvrml-config.h DELETED --- |
From: Braden M. <br...@us...> - 2006-09-20 00:32:16
|
Update of /cvsroot/openvrml/openvrml/ide-projects/Windows/VisualC7_1/OpenVRML/openvrml-gl In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv15645/ide-projects/Windows/VisualC7_1/OpenVRML/openvrml-gl Removed Files: Tag: OpenVRML-0_16-BRANCH openvrml-gl-config.h openvrml-gl.vcproj Log Message: Removed Visual C++ 7.1 project files. --- openvrml-gl-config.h DELETED --- --- openvrml-gl.vcproj DELETED --- |
From: Braden M. <br...@us...> - 2006-09-20 00:32:16
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv15645 Modified Files: Tag: OpenVRML-0_16-BRANCH ChangeLog Log Message: Removed Visual C++ 7.1 project files. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1310.2.13 retrieving revision 1.1310.2.14 diff -C2 -d -r1.1310.2.13 -r1.1310.2.14 *** ChangeLog 19 Sep 2006 21:31:38 -0000 1.1310.2.13 --- ChangeLog 20 Sep 2006 00:32:13 -0000 1.1310.2.14 *************** *** 1,4 **** --- 1,27 ---- 2006-09-19 Braden McDaniel <br...@en...> + Removed Visual C++ 7.1 project files. + + * ide-projects/Makefile.am (VISUALC7_1_FILES): Removed. + (EXTRA_DIST): Removed reference to VISUALC7_1_FILES. + * ide-projects/Windows/VisualC7_1/OpenVRML/OpenVRML.sln: Removed + file. + * ide-projects/Windows/VisualC7_1/OpenVRML/antlr/antlr.vcproj: + Removed file. + * ide-projects/Windows/VisualC7_1/OpenVRML/openvrml/openvrml-config.h: + Removed file. + * ide-projects/Windows/VisualC7_1/OpenVRML/openvrml/openvrml.vcproj: + Removed file. + * ide-projects/Windows/VisualC7_1/OpenVRML/openvrml-gl/openvrml-gl-config.h: + Removed file. + * ide-projects/Windows/VisualC7_1/OpenVRML/openvrml-gl/openvrml-gl.vcproj: + Removed file. + * ide-projects/Windows/VisualC7_1/OpenVRML/sdl-viewer/sdl-viewer.vcproj: + Removed file. + * ide-projects/Windows/VisualC7_1/OpenVRML/test-openvrml/test-openvrml.vcproj: + Removed file. + + 2006-09-19 Braden McDaniel <br...@en...> + Removed unnecessary declarations of openvrml::mat4f. |