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
2013-07-29Added/changed comment for clarificationGaia Clary
2013-07-29Fix #36235: cycles crash deactivating render layer during rendering.Brecht Van Lommel
2013-07-29Fix #36264, New modulo math node not viewable in GLSL mode. Modulo math ↵Lukas Toenne
operation was simply missing the switch statement for gpu execution.
2013-07-29fix [#36280] Dynamic Topology crashes with active faceCampbell Barton
2013-07-29add asserts to ensure face normal is up to date.Campbell Barton
2013-07-29add api call for initializing events from the windows eventstate.Campbell Barton
2013-07-29fix for possible dounle fclose in makesrna's replace_if_different function.Campbell Barton
2013-07-29bmesh optimization (noted as todo), avoid recalculating normal every time ↵Campbell Barton
BM_face_legal_splits() runs, assume normal is valid (assert when its not).
2013-07-29minor changes for confusing code.Campbell Barton
- memset() was argument was truncated. - outliner had redundant NULL check. - node texture was allocating memory to make a unique name which isnt needed for a fixed size string.
2013-07-29make code style of makesrna.c conform to the rest of blender, was also some ↵Campbell Barton
odd indentation for property and struct definitions.
2013-07-29rename term 'grid node' --> 'grid division' wtr snapping tips.Campbell Barton
2013-07-29UI / Code:Thomas Dinges
Cody style changes for r58692. * First of all, UI code is really simple, especially in such small panels, no need to comment obvious things like left/right column. * "if 1" nested structs for code clarity? That's a really bad thing, especially if you have 3 lines which belong together, but only 2 of them are indented... sub = row.row() sub.active = obj.show_bounds sub.prop(obj, "draw_bounds_type", text="") * Empty line after layout = self.layout declarations, we still follow these Rules. http://wiki.blender.org/index.php/Dev:2.5/Py/Scripts/Guidelines/Layouts Thanks!
2013-07-28new mesh tool for cleaning up meshes, splits up non-planar faces while they ↵Campbell Barton
exceed a given angle threshold (access from the 'Mesh -> Clean' menu).
2013-07-28add inline functions getting a single axis from mul_m3_v3()Campbell Barton
2013-07-28use '_exec' suffix for operator execute callbacks, also picky change to ↵Campbell Barton
sizeof() use in BLI_array.h
2013-07-28add BLI_alloca.h, missed in previous commitCampbell Barton
2013-07-28patch [#36233] Fix Halo and Billboard Normal and BehaviorCampbell Barton
from Vitor Balbio (vitorbalbio) Fixes billboard flipping (flipped normals and textures too)
2013-07-28patch [#36296] object->display-properties subpanel layout cleanupCampbell Barton
from David Jeske (jeske), with minor edits of my own.
2013-07-28move suspicious break statement in drawDispListsolid() to prevent falling ↵Campbell Barton
through.
2013-07-28move alloca define into its own header since its not related to BLI_arrayCampbell Barton
2013-07-28bmesh: skip error checks when building in release mode (minor speedup),Campbell Barton
also more strict use of BLI_array_declare(), only allow after array is declared.
2013-07-28fix for freed memory access clearing tracks in the clip editor.Campbell Barton
2013-07-28remove unneeded NULL checks, add one for give_matarar() return value.Campbell Barton
2013-07-27code cleanup: remove unused codeCampbell Barton
2013-07-27fix for BKE_deform_split_suffix()Campbell Barton
- out of bounds read when passing in empty string. - single character prefix didnt work. - with no suffix, the string body was truncated.
2013-07-27remove unused code & some redundant NULL checks.Campbell Barton
2013-07-27cleanup ED_view3d_from_m4() ambiguity with NULL checks, now assert if dist ↵Campbell Barton
is set up but ofs. also small optimization for matrix conversion.
2013-07-27correct sloppy NULL checks, in interface code:Campbell Barton
- uiPupMenuBegin was checking for NULL title but would still crash if it were NULL. - now tag the function as 'nonnull' and remove NULL checks. make sure NULL isnt passed to it.
2013-07-27code cleanup: remove redundant NULL checks and avoid writing to the source ↵Campbell Barton
string. also rename BLI_replacestr() -> BLI_replacestrN() since it returns an allocated buffer.
2013-07-27Code cleanup: Remove unused and unneeded codeJoshua Leung
2013-07-27Style Cleanup for r.58659Joshua Leung
Use proper RNA API function that was designed to be used in this case instead of using ugly syntax
2013-07-27fix for reading outside allocated memory when switching to the 3D view.Campbell Barton
2013-07-27fix for possible use of uninitialized variable in pastebuf_match_path_property()Campbell Barton
wasn't checking if RNA_path_resolve() succeeded.
2013-07-27code cleanup for thumbnails:Campbell Barton
- use URI_MAX define - replace strcat with BLI_snprintf.
2013-07-27remove unused code from object convert and indent.Campbell Barton
2013-07-27fix for possible out of bounds read, printing a warning with pointcache header.Campbell Barton
2013-07-27fix for writing to freed memory enabling texture node treeCampbell Barton
2013-07-27internal api: args passed to ui_but_equals_old() were wrong order.Campbell Barton
2013-07-27code cleanup: typosCampbell Barton
2013-07-27simplify triangle joining and remove use of BLI_array.Campbell Barton
2013-07-27fix for joining face selection after recent api change, also ↵Campbell Barton
bmo_join_triangles_exec() wasn't filling in its 'face' output slot.
2013-07-27fix for bridge tool selection flushing (after recent api change), also ↵Campbell Barton
exposed bug in bmesh edgering-subdiv operator.
2013-07-27Import of single bones used infinite bone sizeGaia Clary
2013-07-26fix [#36270] Crash with pinningCampbell Barton
2013-07-26fix [#36286] UV face display not working for concave ngonsCampbell Barton
2013-07-26fix for error in BLI_buffer_declare_static(), the stack variable wasn't the ↵Campbell Barton
right size, from original commit 53440. Caused UV stretch display to fail.
2013-07-26fix [#36282] Spin error with non uniform scaleCampbell Barton
add support for passing object matrix to bmesh transform operators.
2013-07-26use math functions for copying matrix/vector types, also cast const pointers ↵Campbell Barton
for freeing (clang error's out otherwise)
2013-07-26fix for incorrect null check in RE_engine_update_statsCampbell Barton
2013-07-26optimization: call one bmesh operator for rotate (not 3).Campbell Barton
added pivot_m4() utility function since rotating about an arbitrary point is handy.