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
2008-11-10Add MSVC90 project files - part 1.Benoit Bolsee
2008-11-10missing comma made scons arg BF_CXX_LIB_STATIC not workCampbell Barton
2008-11-10Bugfix #17965Ton Roosendaal
Most Surface (NURBS) tools in buttons didn't add undo pushes.
2008-11-10Patch #17971 by Nathan Vegdahl:Matt Ebb
Makes colorband GUI display proper color interpolation (for real this time)
2008-11-10VideoTexture: Preserve alpha channel if present in video, images and ↵Benoit Bolsee
sequences. Better detection of end of video.
2008-11-10* add Brecht's small patch to make values to BF_QUICK and BF_QUICKDEBUG ↵Nathan Letwory
function as partial search entries. - this means you can do BF_QUICK=bf_ and it would build all libs that contain bf_ in their name. This makes it easier to use, since you don't have to remember the exact names * Update documentation to mention scons-local.
2008-11-08* typo fixNathan Letwory
2008-11-08=== BPy API ===Nathan Letwory
* add two optional arguments to control click step and precision of Number buttons.
2008-11-08* use msvc proposed names when building on win32Nathan Letwory
2008-11-07VideoTexture: forgot to commit MSVC project file, strange that nobody noticed...Benoit Bolsee
2008-11-07* fix typo found by brechtNathan Letwory
2008-11-07[#17958] Windows path fix for image_edit.py script.Campbell Barton
Modified to work in linux too, on my system subprocess.Popen(appstring) only works when appstring is a list. Blenders __import__ didnt support keywords like pythons causing the subprocess module to fail for me. added keywords to blenders c/api import to match pythons.
2008-11-07VideoTexture: VideoTexture.materialID() can now take texture image name.Benoit Bolsee
You can specify a image name (starting with 'IM') instead of a material name in VideoTexture.materialID() and return the material ID matching this texture. The advantage of this method is that is works with blender material and UV texture. In case of UV texture, it grabs the internal material corresponding to the faces that are assigned to this texture. In case of blender material, it grabs the material that has an image texture matching the name as first texture channel. In both cases, the texture id used in VideoTexture.Texture() should be 0. Ex: matID = VideoTexture.materialID(obj,'IMvideo.png') GameLogic.video = VideoTexture.Texture(obj, matID, 0)
2008-11-07VideoTexture: comment was misplaced after previous commit.Benoit Bolsee
2008-11-06Bugfix #17524Diego Borghetti
The problem is that the audio_fill_seq function try to load the hd file if the sequence don't have it, but it join the two string (directory path + file path) without the / (Linux... \ Windows), so the result is a wrong path. I change the the strncpy and strncat function for a BLI_join_dirfile (like the reload_sequence_new_file) and all work fine now. Also note that the "them go" that Luca report is (or what happen here) the ctrl+z function, and now both case work fine here. (interesting.. date from Feb 05.. 2006 ;)
2008-11-06VideoTexture: fix compile error when FFmpeg is disabled.Benoit Bolsee
2008-11-06* While making changes to btools.py and Blender.py, I completely forgot ↵Nathan Letwory
about the name changes. Here they are. Platform managers, double check that the compiler flag options still work.
2008-11-06Change remaining Copy() to Clone()Nathan Letwory
2008-11-06VideoTexture: new VideoTexture.ImageFFmpeg to load and reload images.Benoit Bolsee
The FFmpeg library allows to load image files. Although it is possible to load images using the VideoFFmpeg class, it is not very efficient. The new class VideoTexture.ImageFFmpeg is dedicated to image management. Constructor: ----------- VideoTexture.ImageFFmpeg('image_file_name') Opens the file but does not load the texture yet. The file name can also be a network address. It can also be a video file name; in that case only the first image is loaded. Methods: ------- refresh(True) Loads the image to texture. You just need to call it once, the file is automatically closed after that and calling refresh() again will have no effect. reload('new_file_name') Reloads the image (if new_file_name is omitted) or loads a new image. The file is opened but the texture is not updated yet, you need to call refresh() once to load the texture. Attributes: ---------- status returns the image status: 2 : file opened, texture not loaded 3 : file closed, texture loaded image returns the image data as a string of RGBA pixel size returns the image size [x,y] scale get/set the scale flag. If the scale flag is False, the image is rescale to texture format using gluScaleImage() function, slow but good quality. If the scale flag is True, the image is rescaled using a fast but less accurate algorithm. flip get/set Y-flip flag. Set to True by default as FFmpeg always provides the image upside down filter get/set filter(s) on the image. Example:
2008-11-05VideoTexture: fixing a crash when loading an image as a video file - yes it ↵Benoit Bolsee
works, provided that you don't set repeat and also no need to refresh all the time.
2008-11-05VideoTexture: Add support for GLSL. FIx small printout bug in Exception printoutBenoit Bolsee
2008-11-05uniform end-of-line format and set svn:eol-style property to "native" for ↵Remigiusz Fiedler
all scripts
2008-11-05* Updated the 'Consolidate into one image' script to support alphaMatt Ebb
2008-11-05* doing some warning cleaningNathan Letwory
* accidently left priority tests around.
2008-11-05* enable openjpeg building for win32/msvcNathan Letwory
* add support for building redcode on win32/msvc, but disabled for now, as there are linking problems - I cleaned the redcode sconscript - the copying of headers within the source tree is not a clean solution This needs to be fixed later on. For now, lets use redcode from extern/ until a better way is found.
2008-11-05=== SCons ===Nathan Letwory
* BlenderLib now expects lists for all compiler related flags (release, profile, debug, warn). I changed the default config files, but do double-check your user-config files, esp. if you did a full copy of an old default platform config
2008-11-05* Changed the constant colorband interpolation to work left->right,Matt Ebb
rather than right -> left. This is how it works now: http://mke3.net/blender/etc/constant_ss.png
2008-11-05* remove redundant commentNathan Letwory
2008-11-04VideoTexture: fix RGB/BGR confusion, make code compatible with big endian ↵Benoit Bolsee
CPU, add RGBA source filter.
2008-11-04VideoTexture: Bug report #17946: add (char*) casting to fix compile error ↵Benoit Bolsee
with Python get-set method and module object.
2008-11-04Simple warning fixesAndre Susano Pinto
2008-11-04Added a new interpolation type for colorbands: ConstantMatt Ebb
This can be useful for toon shading etc. Example: http://mke3.net/blender/etc/constant_ss.png
2008-11-04Add's GSR's INT64_C fix and removes dos line endings...Kent Mein
Kent
2008-11-04Added Lattice vgroup support to shrinkwrap and simple deform modifier.Andre Susano Pinto
2008-11-03Moving silence_log_ffmpeg to imbuf (it fits better there and fixes the link ↵Martin Poirier
error in blenderplayer)
2008-11-03Bugfix #17921Ton Roosendaal
ALT+select face-loop on mesh with hidden faces ignored the hidden part. Also caused errors on deleting faces that way.
2008-11-02VideoTexture: fix compile error with GLint in ImageViewport under osx, part 2Benoit Bolsee
2008-11-02VideoTexture: fix compile error with GLint in ImageViewport under osx.Benoit Bolsee
2008-11-02Makefile fixes for compiling with new videotexture code.Ton Roosendaal
Also: buttons for logic, controllers, didn't line up correct when multiple objects were selected (too little space)
2008-11-02Bugfix #17942Ton Roosendaal
Python dict error: when trying to access a Bone via a key, and the key was not found, a wrong error message got printed. Fix provided by reporter Gregor Riepl. Thanks!
2008-11-02VideoTexture: use PyObjectPlus.h instead of Python.h for compatibility with ↵Benoit Bolsee
Python2.3
2008-11-02Quiet ffmpeg log by default. No more ugly stream info in console.Martin Poirier
Starting Blender with -d turns info logging back on.
2008-11-02Disable completely OpenAL if WITH_OPENAL is OFFEnrico Fracasso
2008-11-02Added bf_videotex to unix libraries (linking error)Enrico Fracasso
2008-11-02Include path for numpy no longer needed.Martin Poirier
2008-11-02Bugfix #17902Ton Roosendaal
Black dots appearing in mirroring 3d beveled curves, when using orco texture coords. Appeared there was memory read just outside of the allocation.
2008-11-02python25.zip wasn't copied using cmake. Should fix win64 python e.g. "import ↵Daniel Genrich
random" problem
2008-11-02Bugfix #17920Ton Roosendaal
When entering a wrong expression (or garbish) in a Nkey panel button, the cursor jumps to the place where the button was clicked. On failure the button could return a B_NOP, not a 0
2008-11-02Fix for two proxy + undo related crashes:Brecht Van Lommel
* When making a proxy, the lib linked IPO driver was also changed to point to the proxy object, and after undo this local proxy object was replaced so the pointer became invalid. In fact it is not needed at all to change this because the IPO code maps the pointer to the local proxy object already. * Undoing the make proxy operation would crash because the proxy_from pointer in the library linked object would still point to the removed object. Now it clears all these pointers before undo, because on each undo memory file read they will be set again anyway.
2008-11-02VideoTexture: remove numpy dependency.Benoit Bolsee