Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2002-12-22fixed a *really* minor bug where tooltips were not resetting if nextSimon Clitherow
call to add_numbut() asks for a NULL tooltip. --aphex ============================================================ RCS file: /cvs01/blender/source/blender/src/toolbox.c,v retrieving revision 1.4 diff -r1.4 toolbox.c 1356c1356,1360 < if(tip) strcpy(numbuts[nr].tip, tip); --- > if(tip) > strcpy(numbuts[nr].tip, tip); > else > strcpy(numbuts[nr].tip, ""); >
2002-12-21added the DELKEY stuff...Kent Mein
else if(dev==DELKEY) { if(but->pos>=0 && but->pos<strlen(str)) { for(x=but->pos; x<=strlen(str); x++) str[x]= str[x+1]; str[--len]='\0'; dodraw= 1; } } Kent
2002-12-21Fix so that rgba targa files view correctly in gimp:Kent Mein
Submitted to bf-committers by Chris Want Kent Index: targa.c =================================================================== RCS file: /cvs01/blender/source/blender/imbuf/intern/targa.c,v retrieving revision 1.4 diff -u -r1.4 targa.c --- targa.c 2002/12/20 01:29:14 1.4 +++ targa.c 2002/12/21 09:50:24 @@ -289,6 +289,12 @@ if (flags & IB_ttob) buf[17] ^= 0x20; + /* Don't forget to indicate that your 32 bit + * targa uses 8 bits for the alpha channel! */ + if (ibuf->depth==32) { + buf[17] |= 0x08; + } + if (write(file, buf, 18) != 18) return (0); if (ibuf->cmap){ for (i = 0 ; i<ibuf->maxcol ; i++){
2002-12-20Fixed up the header comment so it didn't produce a warning aboutKent Mein
comment inside of a comment Also removed the config.h thing since this is a .h Hopefully I'll get around to the other .h's soon. Kent -- mein@cs.umn.edu
2002-12-20Ok last change for the night :)Kent Mein
Time to go watch er. Note this was already done with face_old, img_old was probably just overlooked. (If you guys didn't notice I was sick for a couple of days but I'm back now as you can tell) Kent -- mein@cs.umn.edu Index: editface.c =================================================================== RCS file: /cvs01/blender/source/blender/src/editface.c,v retrieving revision 1.3 diff -u -r1.3 editface.c --- editface.c 2002/11/25 12:02:05 1.3 +++ editface.c 2002/12/20 02:50:55 @@ -1202,7 +1202,7 @@ TFace *face, *face_old = 0; short xy[2], xy_old[2]; //int a, index; - Image *img, *img_old; + Image *img, *img_old = 0;
2002-12-20In stubs.c I added a dummy return to functions that were non void types.Kent Mein
in readfile.c I renamed some localvars that were named main to mainl in a couple of functions. in action.c I initalized a var to 0. This is probably not needed but its a little safer incase someone adds more modes... I've included a diff of this last one below. Kent Index: action.c =================================================================== RCS file: /cvs01/blender/source/blender/blenkernel/intern/action.c,v retrieving revision 1.6 diff -u -r1.6 action.c --- action.c 2002/11/25 12:01:52 1.6 +++ action.c 2002/12/20 02:06:27 @@ -153,7 +153,7 @@ ){ bConstraint *dcon; const bConstraint *scon; - float dstweight; + float dstweight = 0; switch (mode){ case POSE_BLEND:
2002-12-20Two more variables that were not initalized.Kent Mein
cvs diff included below. Kent -- mein@cs.umn.edu Index: png_encode.c =================================================================== RCS file: /cvs01/blender/source/blender/imbuf/intern/png_encode.c,v retrieving revision 1.3 diff -u -r1.3 png_encode.c --- png_encode.c 2002/11/25 12:02:00 1.3 +++ png_encode.c 2002/12/20 01:28:18 @@ -91,7 +91,7 @@ unsigned char *pixels = 0; unsigned char *from, *to; png_bytepp row_pointers = 0; - int i, bytesperpixel, color_type; + int i, bytesperpixel, color_type = PNG_COLOR_TYPE_GRAY; FILE *fp = 0; Index: targa.c =================================================================== RCS file: /cvs01/blender/source/blender/imbuf/intern/targa.c,v retrieving revision 1.3 diff -u -r1.3 targa.c --- targa.c 2002/11/25 12:02:00 1.3 +++ targa.c 2002/12/20 01:28:20 @@ -247,7 +247,7 @@ char buf[20]; FILE *fildes; int i; - short ok; + short ok = 0;
2002-12-20Ok since no one cares about this I put a 5 second fix on it and won'tKent Mein
worry about it anymore :) (initalized it to 0 and then later return 0 if its still 0 before doing the work) Kent -- mein@cs.umn.edu
2002-12-20Fixed two uninitalized vars:Kent Mein
Kent /cvs01/blender/source/blender/imbuf/intern/iris.c,v retrieving revision 1.3 diff -u -r1.3 iris.c --- iris.c 2002/11/25 12:02:00 1.3 +++ iris.c 2002/12/19 22:12:53 @@ -212,7 +212,7 @@ /* unsigned int *tab; */ /* int len; */ { - int r; + int r = 0; while(len) { r = putlong(outf,*tab++); @@ -548,7 +548,7 @@ { FILE *outf; IMAGE *image; - int tablen, y, z, pos, len; + int tablen, y, z, pos, len = 0; int *starttab, *lengthtab; unsigned char *rlebuf;
2002-12-20I initalized mask to 0 in IMB_converttocmapKent Mein
This may not be correct but at least now its predictable. Kent
2002-12-13Had to add a function (BPY_call_importloader) and a variable (bprogname)Maarten Gribnau
to the stubs to get the player linking with Project Builder under OSX. Maarten
2002-12-11compile and run source/blender/makesdna/intern/makesdna to (re)createStefan Gartner
source/blender/makesdna/intern/dna.c This should fix the segfault at startup for non-x86 systems (tested on linux/ppc and linux/x86). I would be glad if someone could check if it works on other systems as well. sgefant
2002-12-07don't crash when adding a UVsphere (Hos, heli)Stefan Gartner
sgefant
2002-12-06sgefants patch to remove the License Key stuff.Kent Mein
(I noticed its not completely gone yet from the blender/source dir) But its a big step in the right direction if it doesn't enable all of the functionatlity already... (Using cscope for LICENSE_KEY_VALID still turns up some stuff) Kent -- mein@cs.umn.edu
2002-12-03Ok this should have probably been three seperate things but I figuredKent Mein
some people are getting sick of the email and the comments are small. editmesh.c I added casts in a couple of places to remove a few warnings. Then I cleaned up configure.ac a bit specifically the checks for --with-ssl etc... so they work a little nicer. I also modified source/Makefile.am to add targets for the player Still needs some work I'm sure but its a start. Kent -- mein@cs.umn.edu
2002-12-02wrapped S_ISREG and S_ISDIR with a define to suppress compilerMaarten Gribnau
complaints about redefinitions. These occur now that Python 2.2 is included.
2002-12-01Changed "www.blender.nl" to "www.blender.org" for that little displayFrederick Lee
thingy in the upper right corner. -Fred <phaethon>
2002-11-29Somehow the img directory got lost from the list of include pathsMaarten Gribnau
Maarten
2002-11-29Bunch of small fixes emailed to me from phaethonKent Mein
Kent -- mein@cs.umn.edu
2002-11-27I know this is a bugfix but hey its simple :)Kent Mein
More info on it can be found here: http://www.blender.org/modules.php?op=modload&name=phpBB2&file=viewtopic&t=176 Kent -- mein@cs.umn.edu
2002-11-25Last of the config.h mods...Kent Mein
#ifdef HAVE_CONFIG_H #include <config.h> #endif added to these files. Kent -- mein@cs.umn.edu
2002-11-25updated .c files to include:Kent Mein
#ifdef HAVE_CONFIG_H #include <config.h> #endif Just need to finish cpp files now :) Kent -- mein@cs.umn.edu
2002-11-25Did all of the .h's in sourceKent Mein
(adding) #ifdef HAVE_CONFIG_H #include <config.h> #endif also the Makefile.in's were from previous patch adding the system depend stuff to configure.ac Kent -- mein@cs.umn.edu
2002-11-25added the following to configure.acKent Mein
+case "$target" in + *sparc* ) + AC_DEFINE(SUN_OGL_NO_VERTEX_MACROS,1,[Fix for Sun's GL]) + ;; +esac + Also added the include to the above .c files. I'm going to add it to everything in source just haven't gotten that far yet. Kent
2002-11-22Robert Wenzlaff's fix for AVI_JPEGS.Kent Mein
Kent -- mein@cs.umn.edu
2002-11-12bug fix in vrml (inventor) import.Maarten Gribnau
Maarten
2002-11-11Fixed action.c (brought it back to 1.2)Kent Mein
Kent -- mein@cs.umn.edu
2002-11-08switched the order of build (frozen and intern are now intern and frozen)Kent Mein
that way the lib gets installed before the dir didn't exist so it died. Kent -- mein@cs.umn.edu
2002-11-07I autmated the rest of building libfrozen.aKent Mein
I also moved it so that it gets put in: $(OCGDIR)/blender/bpython/$(DEBUG_DIR)libfrozen.a and removed the stuff from the readme on how to do it by hand. (I made one other small change and that was to comment out the ssr target on solaris and freebsd in source/Makefile I forgot to commit it yesterday) Kent -- mein@cs.umn.edu
2002-10-31again changing // to /* */ so that sun's compiler doesn't fail.Kent Mein
(note these are all in source/blender/verify) Sorry about not putting the full path in on the last two, I just noticed it doesn't do that unless your in the root dir. mein@cs.umn.edu
2002-10-31Fixed // comments and converted them to /* */ (used by a c file)Kent Mein
2002-10-30fixed spacing in the headers to get rid of some warnings and some otherKent Mein
little minor spacing issues.
2002-10-30some small optimizationsKent Mein
2002-10-30removed some unused variablesKent Mein
2002-10-30Took out "" verses <> and just left <> for includes.Kent Mein
It works just fine on every system I could try it on.
2002-10-30Filled out the spacebar menu a little and removed dummyKent Mein
function which isn't used anywhere:
2002-10-30Fixed defined __sparc to also check for __sparc__ (thanks to Ferris)Kent Mein
2002-10-18First checkin of core ODE functionality. See OdePhysicsController.cpp for a ↵Norman Lin
todo list.
2002-10-12Initial revisionv2.25Hans Lambermont