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
2012-11-27Merge w/ trunk: r52086-r52534 (As with last time, the game engine was not ↵soc-2012-swiss_cheeseJason Wilkins
merged)
2012-11-22minor edit to console line adding, all callers have the console space, may ↵Campbell Barton
as well pass it.
2012-11-22fix for clear line adjusting console selection.Campbell Barton
2012-11-12Merge w/ trunk: r51141-52085 (Important Note: gameengine and blenderplayer ↵Jason Wilkins
were not merged due to complex differences)
2012-10-30add in assert's to double check the line lenth is never <0Campbell Barton
2012-10-30fix for selection offset with indentation in the python console.Campbell Barton
2012-10-26style cleanupCampbell Barton
2012-10-23use min_ max_ functions in more places.Campbell Barton
also fix minor error in MOD decimate when the modifier did nothing the reported face count would be wrong.
2012-10-21style cleanup: trailing tabs & expand some non prefix tabs into spaces.Campbell Barton
2012-10-21style cleanup: commentsCampbell Barton
2012-10-15fix for py-console ctrl+backspace/del changing the selection.Campbell Barton
2012-10-14Fix for misplaced cursor in wrapped console prompt, also fixes newline for ↵Sv. Lockal
single wrap when input line width equals console width
2012-10-07Merge w/ trunk: r50097-r51140 (also, I got ahead of myself and fixed a lot ↵Jason Wilkins
of warnings before committing)
2012-09-15code cleanup: replace macro for BLI_rect size/center with inline functions.Campbell Barton
2012-08-21"Pens Down" merge /w trunk r49015-r50064. Make clean patches for Google ↵Jason Wilkins
Summer of Code against trunk revision 50064. Note: The new flag LIB_LOAD_ASYNC in the GE conflicted with trunks new LIB_LOAD_SCRIPTS, so I changed the value of ASYNC. So, heads up if these values has been saved in any .blend files! Once again (see last merge note) it seems like node_draw.c had a bunch of wierd conflicts that make it look like it missed a merge or update. Not sure what is going on with that file. Other parts of the merge had some difficulty resolving proper bracket nesting in places where it seems like the merge should have gone smoothly. Maybe that was KDiff3's fault? This reduces my confidence on if bugs were not introduced.
2012-08-21code cleanup: use BLI_RCT_SIZE macroCampbell Barton
2012-08-20copy as script operator for the console, so you can copy input from a ↵Campbell Barton
console for use in a textblock.
2012-08-11Switching most gl view calls to gpu wrapper (To avoid a lot REAL_GL_MODE for ES)Alexander Kuznetsov
Fix blend function in GLSL viewport
2012-08-08header fixup, aspect api, warning fixes, removed some minor use of display ↵Jason Wilkins
lists, lots of other misc. changes.
2012-07-27code cleanup: remove unneeded 'struct' qualifiers Campbell Barton
2012-06-26Merge w/ Trunk: r47143-r48302Jason Wilkins
2012-06-25Big Commit - Ported Blender/BGE to use GPU_compatibility for most drawing.Jason Wilkins
Replaces glBegin/glEnd with gpuBegin/gpuEnd Replaces client side arrays with gpuDrawArrays/gpuDrawElements/gpuDrawElements Replaces GLUquadric and other simple geometric primitives with a new primitive library Replaces display lists with the ability to save geometry buffers and invoke them with glDraw/glRepeat Not complete, there are still some places where old functions remain. Especially in test programs and external libraries. Not tested thoroughly yet! I've tested a lot, but there are still lots of regressions.
2012-06-06Fixed all places that used "" instead of <> to include glew.h. Defined ↵Jason Wilkins
-DGLEW_STATIC for all modules that use GLEW.
2012-06-04Tag unused variablesSergey Sharybin
2012-06-04patch [#31644] Py Console: Indent and unindent independent of cursor ↵Campbell Barton
(aligned) [Tab / Shift + Tab / Ctrl + Tab] from Sebastian Nell (codemanx)
2012-05-19code cleanup: use TRUE/FALSE rather then 1/0 for better readability, also ↵Campbell Barton
replace do prefix with do_ for bool vars.
2012-05-09patch [#31359] Py Console: Empty current lineCampbell Barton
from Sebastian Nell (codemanx), with some edits - Changed key shortcut to Shift+Enter. - made into its own operator since it works differently to delete.
2012-04-15code cleanup: dont include BLI_winstuff.h on non windows systems, also ↵Campbell Barton
cleanup some defines/includes for windows.
2012-04-03partial fix [#30777] python console utf-8 problemCampbell Barton
backspace/del now doesn't split up multi-byte characters. Ctlr+Backspace/Del now work for deleting whole words.
2012-03-28style cleanupCampbell Barton
2012-03-24style cleanup: follow style guide for/with/if spacingCampbell Barton
2012-03-24style cleanup: follow style guide for formatting of if/for/while loops, and ↵Campbell Barton
else if's
2012-03-24style cleanup: mainly for mesh code, also some WM function use.Campbell Barton
2012-03-23fix for error with console command history not working, using previous settings.Campbell Barton
2012-03-22style cleanup: spaces aroudn operators for operator definitions.Campbell Barton
2012-03-21Quick fix to broken text editor/console from r45051.Bastien Montagne
Note: not completely sure this is the way to go, but at least it works (and is easy to revert in case there is better solution ;) ).
2012-03-18spelling cleanupCampbell Barton
2012-03-08style cleanup - spelling.Campbell Barton
2012-03-07edit to cursor adjustment, use int rather then short to store the cursor ↵Campbell Barton
position.
2012-03-07Unify string stepping delimiter code for text buttons, text editor and ↵Campbell Barton
console (all had duplicate code). this is also a step toward the console working with utf8 though many todo's remain.
2012-03-03style cleanup - use aligned * prefixed blocks for descriptive comments (was ↵Campbell Barton
already used a lot and part of proposed style guide).
2012-02-29Code Cleanup: remove non existing function declarations.Campbell Barton
added some missing functions too - which are not used yep but should be there for api completeness. * CDDM_set_mloop * CDDM_set_mpoly * BLI_mempool_count
2012-02-17unify include guard defines, __$FILENAME__Campbell Barton
without the underscores these clogged up the namespace for autocompleation which was annoying.
2012-01-16more keymap editsCampbell Barton
- make sure defaults are not assumed (so reuse last settings doesnt override) - replace 0/1 for TRUE/FALSE defines.
2012-01-16use TRUE/FALSE for boolean keymaps, no functional changesCampbell Barton
2012-01-15fix crash when calling bpy.ops.render.render('INVOKE_DEFAULT') from the ↵Campbell Barton
python console.
2012-01-11rename RNA_property_is_set() --> RNA_struct_property_is_set() in preperation ↵Campbell Barton
to add a second version of the function which takes the property rather then its name.
2011-11-26replace FILE_MAXDIR + FILE_MAXFILE with FILE_MAXCampbell Barton
2011-10-28prefix common internal operator function names so its possible to assign ↵Campbell Barton
them breakpoints.
2011-10-23remove $Id: tags after discussion on the mailign list: ↵Campbell Barton
http://markmail.org/message/fp7ozcywxum3ar7n