Blender Git Loki

Blenderin Git "master"-kehityshaaran kommitit.

Page: 5565 / 5574

January 1, 2003, 21:30 (GMT)
Enabled event printer in debug target to trace event handling in ghost.
Maarten
January 1, 2003, 21:20 (GMT)
Removed injust assertion failure when clicking on the menu bar. Debug target would complain about an invalid window.
Maarten
January 1, 2003, 20:42 (GMT)
Added test for events pending for windows already disposed. These events are removed from the event stack now.
Maarten
January 1, 2003, 20:31 (GMT)
Removed unused vars.
Maarten
January 1, 2003, 20:23 (GMT)
Fixed ghost full-screen problem
After switching back from full-screen, the active window is returned to the one active before full-screen mode was entered.
Maarten
January 1, 2003, 19:57 (GMT)
Fixed some documentation errors
Maarten
Revision 077fd2d by Kent Mein
January 1, 2003, 18:28 (GMT)


Finished cleaning up the ik directory removing unused files.

Kent
--
mein@cs.umn.edu
Revision 26aa841 by Kent Mein
January 1, 2003, 18:11 (GMT)


I added the two patches Chris and I pointed too back in Nov.
(Adding Window Hints and giving the window input focus after it has
been raised.)

Kent
--
mein@cs.umn.edu
Revision 6e8abc4 by Kent Mein
January 1, 2003, 17:47 (GMT)


Rob's patches for the slow render problem.

Kent
--
mein@cs.umn.edu
Revision 4fa246c by Chris Want
January 1, 2003, 15:11 (GMT)
Initial commit of 'release'.

These 2 got files missed because the * wildcard didn't match the
'.' at the beginning of the names (%$&#*!)

Chris
Revision 96897d5 by Chris Want
January 1, 2003, 15:06 (GMT)
Initial commit of the 'release' directory (splash screen/icon
junkies will be happy to find the datatoc.c program in the
datafiles directory).

Some quick notes:

* 'datafiles' has the version 2.21 splash.jpg and blenderbuttons (e.g., so
no NLA icon). Someone should at least get the 2.25 blenderbuttons from
somewhere and commit them.

* 'text' has obsolete content/license

* I did not include the python scripts as they have copyright
Jan Walter and no license specified.

* I changed to unix line terminators everywhere with the exeption of the
'windows' directory.

Chris
Revision d52deb4 by Chris Want
January 1, 2003, 02:07 (GMT)
A kludge to use the right compiler while freezing
using gcc under Irix -- without this it uses only
'cc -n32' (since this is what the sgi employee
who compiled the python stuff used).

Chris
Revision e678022 by Kent Mein
December 31, 2002, 14:43 (GMT)


changed back to char :)

Kent
--
mein@cs.umn.edu
Revision 69c5704 by Kent Mein
December 31, 2002, 11:54 (GMT)


Sorry about that this is part of the last update. I ment to cancel it
and include both files.

Anyway I was fixing the warning with ascii char... Here is the diff for
editfont.c (the .h was just fixing the header to match it)

Kent

Index: editfont.c
===================================================================
RCS file: /cvs01/blender/source/blender/src/editfont.c,v
retrieving revision 1.3
diff -u -r1.3 editfont.c
--- editfont.c 25 Nov 2002 12:02:05 -0000 1.3
+++ editfont.c 31 Dec 2002 11:52:10 -0000
@@ -226,11 +226,12 @@
}
}

-void do_textedit(unsigned short event, short val, char ascii)
+void do_textedit(unsigned short event, short val, unsigned char _ascii)
{
Curve *cu;
static int accentcode= 0;
int x, doit=0, cursmove=0;
+ int ascii = _ascii;
Revision b36298c by Kent Mein
December 31, 2002, 11:53 (GMT)


:q!
Revision 85ddbc4 by Kent Mein
December 30, 2002, 20:15 (GMT)


Updated the spacebar toolbox so the fonts are moved up 2 pixels.

It was causing funky artifacts on some letters that dropped down into the
background.

Here is the diff

Kent


Index: toolbox.c
===================================================================
RCS file: /cvs01/blender/source/blender/src/toolbox.c,v
retrieving revision 1.5
diff -u -r1.5 toolbox.c
--- toolbox.c 22 Dec 2002 13:43:21 -0000 1.5
+++ toolbox.c 30 Dec 2002 20:13:51 -0000
@@ -506,7 +506,7 @@
oldcursor= get_cursor();
set_cursor(CURSOR_STD);

- tbfontyofs= (TBOXH-11)/2; /* toolbox, hier stond ooit getheigh */
+ tbfontyofs= (TBOXH-11)/2 +2; /* toolbox, hier stond ooit getheigh */
}
December 30, 2002, 12:11 (GMT)
removed second CVS id tags, cleaned up new lines
Maarten
December 30, 2002, 09:25 (GMT)
small correction to temporary and output directory
Maarten
Revision 5e6d671 by Kent Mein
December 30, 2002, 07:15 (GMT)


renamed a var to avoid name conflicts...
In the header its just this..
-void initjit(float *jit, int num)
+void initjit(float *jitarr, int num)

its respectively renamed in jitter.c

Kent
Revision e9a7e30 by Kent Mein
December 30, 2002, 07:13 (GMT)


Removed another unused var and cleaned up a couple of lines of code

Here is the diff

Kent

Index: GameLogic/SCA_KeyboardSensor.cpp
===================================================================
RCS file: /cvs01/blender/source/gameengine/GameLogic/SCA_KeyboardSensor.cpp,v
retrieving revision 1.3
diff -u -r1.3 SCA_KeyboardSensor.cpp
--- GameLogic/SCA_KeyboardSensor.cpp 25 Nov 2002 15:29:42 -0000 1.3
+++ GameLogic/SCA_KeyboardSensor.cpp 30 Dec 2002 07:09:42 -0000
@@ -167,14 +167,14 @@
} else
{

- // cerr << "======= SCA_KeyboardSensor::Evaluate:: peeking at key status" << endl;
- const SCA_InputEvent & inevent = inputdev->GetEventValue((SCA_IInputDevice::KX_EnumInputs) m_hotkey);
+ // cerr << "======= SCA_KeyboardSensor::Evaluate:: peeking at key status" << endl;
+ const SCA_InputEvent & inevent = inputdev->GetEventValue(
+ (SCA_IInputDevice::KX_EnumInputs) m_hotkey);

- // cerr << "======= SCA_KeyboardSensor::Evaluate::
status: " << inevent.m_status << endl;
+ // cerr << "======= SCA_KeyboardSensor::Evaluate:: status: " << inevent.m_status << endl;

if (inevent.m_status == SCA_InputEvent::KX_NO_INPUTSTATUS)
{
- int i=4;
} else
{
if (inevent.m_status == SCA_InputEvent::KX_JUSTACTIVATED)
Tehnyt: Miika HämäläinenViimeksi päivitetty: 07.11.2014 14:18MiikaH:n Sivut a.k.a. MiikaHweb | 2003-2021