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
2022-02-11File headers: SPDX License migrationCampbell Barton
Use a shorter/simpler license convention, stops the header taking so much space. Follow the SPDX license specification: https://spdx.org/licenses - C/C++/objc/objc++ - Python - Shell Scripts - CMake, GNUmakefile While most of the source tree has been included - `./extern/` was left out. - `./intern/cycles` & `./intern/atomic` are also excluded because they use different header conventions. doc/license/SPDX-license-identifiers.txt has been added to list SPDX all used identifiers. See P2788 for the script that automated these edits. Reviewed By: brecht, mont29, sergey Ref D14069
2021-10-24Cleanup: spelling in commentsCampbell Barton
2021-07-16Cleanup: remove redundant parenthesesCampbell Barton
2020-11-06Cleanup: use ELEM macroCampbell Barton
2020-07-03Cleanup: Editors/Space/Text, Clang-Tidy else-after-return fixesSybren A. Stüvel
This addresses warnings from Clang-Tidy's `readability-else-after-return` rule in the `source/blender/editors/space_text` module. No functional changes.
2020-03-19Cleanup: `make format` after SortedIncludes changeDalai Felinto
2020-01-17Cleanup: bad brace placement for manually formatted blocksCampbell Barton
2019-10-04Cleanup: formatting for text highlighterCampbell Barton
2019-04-22Cleanup: style, use braces for editorsCampbell Barton
2019-04-17ClangFormat: apply to source, most of internCampbell Barton
Apply clang format as proposed in T53211. For details on usage and instructions for migrating branches without conflicts, see: https://wiki.blender.org/wiki/Tools/ClangFormat
2019-04-16ClangFormat: add comments to ignore formattingCampbell Barton
2019-02-18doxygen: add newline after \fileCampbell Barton
While \file doesn't need an argument, it can't have another doxy command after it.
2019-02-06Cleanup: remove redundant doxygen \file argumentCampbell Barton
Move \ingroup onto same line to be more compact and make it clear the file is in the group.
2019-02-01Cleanup: remove redundant, invalid info from headersCampbell Barton
BF-admins agree to remove header information that isn't useful, to reduce noise. - BEGIN/END license blocks Developers should add non license comments as separate comment blocks. No need for separator text. - Contributors This is often invalid, outdated or misleading especially when splitting files. It's more useful to git-blame to find out who has developed the code. See P901 for script to perform these edits.
2018-09-27Spelling fixes in comments and descriptions, patch by luzpaz.Brecht Van Lommel
Differential Revision: https://developer.blender.org/D3732
2018-06-04Cleanup: strip trailing space in editorsCampbell Barton
2014-04-01Code cleanup: remove TRUE/FALSE & WITH_BOOL_COMPAT defineCampbell Barton
2013-07-02remove nan copyrights from code added since blender become opensource (copy ↵Campbell Barton
paste errors), also remove BKE_script.h
2013-03-22code cleanup: use NULL rather then 0 for pointers, and make vars static ↵Campbell Barton
where possible. also found unintentionally defined enum/struct variables that where only meant to be defining the type.
2013-03-16style cleanupCampbell Barton
2013-03-12fix own regression in 2.66 [#34610] Text editor: Syntax highlighting freezesCampbell Barton
2013-01-16text syntax highlighting: don't use utf8 stepping if we know the text is asciiCampbell Barton
2013-01-16text syntax highlighting, add utility function 'text_format_fill()' which ↵Campbell Barton
fills in the line with a formatting value. this fixes a mistake in OSL lexer which would comment all lines after '//'
2012-12-31syntax highlight autocomplete listing.Campbell Barton
2012-12-30OSL Templates:Thomas Dinges
* Add 3 simple templates: ** empty_shader.osl: A basic shader declaration to start with ** wireframe.osl: Simple wireframe shader ** noise.osl: Simple noise shader, with 3 noise types.
2012-12-30OSL Syntax Highlighting:Thomas Dinges
* Added the remaining shader types * Some comment and link fixes.
2012-12-30add syntax highlighting color for symbolsCampbell Barton
2012-12-30code cleanup: enum for formatting char (avoid confusion when '#' is a ↵Campbell Barton
comment for // in OSL)
2012-12-30code cleanup: text editor formatting enums were named crypticly, also add ↵Campbell Barton
asserts if the continuation values are wrong (which can happen with buffer overflows on formatting).
2012-12-30Infinite loop caused by using an uninitialized variable in a compairison ↵Dan Eicher
statement
2012-12-29patch [#33609] Syntax highlighting for OSL in Text EditorCampbell Barton
from Patrick Boelens (senshi). with modifications to split it into its own function. also added C style multi-line comment support /* ... */ I've left out the part of this patch that sets the language in the space, since I think this might be better stored in the text block. For now it simply uses OSL syntax highlighting when the extension is '.osl'.