18044 Commits

Author SHA1 Message Date
Gyedo Jeon
451e10e3e3 Fixed a problem of not overriding _do__call__ function in ActionBase 2010-07-21 00:28:38 +00:00
Chris Brunner
f0b2d1ec65 typo 2010-07-20 23:12:19 +00:00
David Rose
775184f113 build error 2010-07-19 20:46:13 +00:00
David Rose
59d74640fa oops, stoopid me 2010-07-19 19:14:23 +00:00
David Rose
4fea43386f stoopid cvs 2010-07-19 19:13:50 +00:00
David Rose
9124513b82 side-by-side stereo 2010-07-19 18:43:24 +00:00
Zeno Gerakin
9a3d16b1c5 patch from gerakinis and yaio to detect available desktop sizes 2010-07-19 13:35:22 +00:00
rdb
cdea7d12b5 I don't think we need OPENSSL_097 anymore 2010-07-16 09:18:26 +00:00
David Rose
a5624d497e ondownloadfail, onfail 2010-07-15 21:47:10 +00:00
David Rose
f42788880f add explicit glx prototypes 2010-07-15 18:15:42 +00:00
Darren Ranalli
0e94724790 respondCustom doesn't work as UTF-8 2010-07-14 23:37:48 +00:00
David Rose
62fecd76cb have to use system getopt here because we don't link with dtool 2010-07-14 23:23:13 +00:00
David Rose
9d53f9cfa1 Status -> PStatus 2010-07-14 22:49:07 +00:00
Darren Ranalli
3d0a7ab83b unicode support for http responses 2010-07-14 22:35:37 +00:00
rdb
382bd8296b needs more cow bell
nah, I actually fixed the ffmpeg compile bug
2010-07-14 18:58:16 +00:00
David Rose
dab54029a4 workaround broken getopt issue 2010-07-14 18:10:11 +00:00
David Rose
16a4cc0d84 protect jpegint.h references 2010-07-14 13:59:34 +00:00
David Rose
3bba5366a6 python2.6 is more common these days 2010-07-14 04:51:24 +00:00
Darren Ranalli
6bf2e8d7eb turn off stack dump by default in production 2010-07-13 22:17:45 +00:00
rdb
eee9b6f874 Add missing include 2010-07-11 19:19:07 +00:00
David Rose
1e92150040 add pnmtext 2010-07-09 21:32:50 +00:00
David Rose
b978d45af5 properly handle HAVE_CG 2010-07-09 00:45:52 +00:00
Chris Brunner
063e53f658 yet more cleanup between sessions. should help with nurbs/polys stuff 2010-07-08 23:41:58 +00:00
rdb
b5c466bfd8 Add option to makepanda to specify a custom host URL 2010-07-08 17:03:09 +00:00
rdb
da7bdf9f51 Add PlatformSDK's bin dir to $PATH, too 2010-07-07 18:27:21 +00:00
Chris Brunner
503760f751 removed leftover if 2010-07-07 18:00:11 +00:00
Chris Brunner
fe4531054d check to make sure _Pmw is loaded before doing stuff with it 2010-07-06 21:58:01 +00:00
Chris Brunner
2f51e0ee10 *** empty log message *** 2010-07-06 21:57:17 +00:00
Chris Brunner
ab1016269c resolve mis-matching of winsock versions 2010-07-06 21:56:29 +00:00
Chris Brunner
da430735ad don't try to build activex on Win64 2010-07-06 21:55:24 +00:00
enn0x
f8601ef179 Added move_global_* methods to PhysxActor 2010-07-06 17:32:44 +00:00
David Rose
79d2e645d8 deal better with stale contents.xml file in local directory 2010-07-01 17:17:29 +00:00
enn0x
955b03dff9 Refactor debug names, this time using C++ strings 2010-06-30 21:44:12 +00:00
David Rose
bf4a5aface library dependencies 2010-06-30 20:39:56 +00:00
David Rose
e112f03f86 add mp4 2010-06-30 19:24:32 +00:00
David Rose
50990675bd repair comment blocks 2010-06-30 18:33:28 +00:00
Chris Brunner
fec47d9aea Make things a bit more efficient 2010-06-30 00:15:31 +00:00
Chris Brunner
e2127a0ba2 adding a fail case for node_frame_inv 2010-06-29 23:13:57 +00:00
Chris Brunner
06bc35360d Prevent trying to invert singular matrix 2010-06-29 22:47:44 +00:00
enn0x
2b1f43f5d8 Fixing compile error on Linux. 2010-06-29 18:20:10 +00:00
enn0x
082e0781ac Added 'is_deleted_a/b' methods to PhysxContactPair, to check if actors are already deleted and thus invalid 2010-06-28 21:24:03 +00:00
Gyedo Jeon
aec3ff0e3d Added feature to export to Maya 2010-06-28 21:20:49 +00:00
enn0x
76c3f1268b Fixed bug with internal debug names getting lost. 2010-06-28 18:22:19 +00:00
rdb
c5a67c5f63 Attempt to fix compilation error 2010-06-27 12:43:21 +00:00
rdb
a1093099c8 (untested) fix for ffmpeg versions 52.68.0 and above 2010-06-27 12:17:19 +00:00
rdb
a153f2ff7f Fix circular include 2010-06-27 07:25:32 +00:00
Walt Destler
bb5d97f1bf Fixed the following issues with the multitouch and python eventing code comitted earlier this week:
-	Renamed CustomGraphicsWindowProc to PythonGraphicsWindowProc.
-	PythonGraphicsWindowProc now extends the PythonCallbackObject class.
-	Added a GraphicsWindowProcCallbackData class. The data stored in this class depends on the OS being compiled for. (Currently only members for WIN32.)
o	Multitouch is now handled through this class as well. It has is_touch_event(), get_num_touches(), and get_touch_info() methods. The GraphicsWindow class still has these methods (GraphicsWindowProcCallbackData simply calls them), but they are no longer published.
-	Updated Sources.pp to use all these new files.
-	Added function and class comment blocks to everything.
-	Fixed a few coding convention things and continued to follow those conventions to the best of my knowledge.
-	Checked for literal tab characters.
-	pandabase.h comes before all other includes
-	No Windows-specific typedefs in non-Windows code.
-	All python-specific code in HAVE_PYTHON blocks.
-	Fixed the case between TIF_move, TIF_down, and TIF_UP (now TIF_up).
2010-06-25 21:46:53 +00:00
Chris Brunner
fc10962638 *** empty log message *** 2010-06-25 19:19:05 +00:00
David Rose
cec4620edb check for libpandaexpress_d.dll in memory for a debug build 2010-06-23 22:12:39 +00:00
rdb
c40c265a8a Add -headerpad_max_install_names for binaries as well 2010-06-23 12:55:28 +00:00