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
2021-02-20Cleanup: doxygen sectionsCampbell Barton
2020-08-18GPUState: GPU_blend final API renamingClément Foucault
We now use GPU_blend for enabling / disabling blending and explicitly set the blend equation.
2020-07-16Cleanup: Gizmo: Remove non matched glDisableClément Foucault
We use the polyline shader for drawing the rotation gizmo now. This shader supports clipping without hardware clip planes.
2020-05-14Fix T76413 Gizmos: Trackball's preselection highlighting is too brightClément Foucault
This was caused by the sRGB viewport changes. The fix is to modify the alpha values manually.
2020-04-24GPU: Add Polyline shader (wide line emulation)Clément Foucault
This new shader is able to emulate smooth wide lines drawing using a geometry shader. This shader needs viewportSize and lineWidth uniforms to be set. There is multiple variants to replace the usage of wide lines for most shaders. This patch only fix the gizmo_types files and the navigation gizmo. Other areas could be fixed afterward, I just limited the patch size. Fix T57570. Reviewed By: billreynish Differential Revision: https://developer.blender.org/D7487
2020-03-19Cleanup: `make format` after SortedIncludes changeDalai Felinto
2020-03-06Cleanup: Rename ARegion variables from ar to regionJulian Eisel
The old convention was easy to confuse with ScrArea. Part of https://developer.blender.org/T74432. This is mostly a batch rename with some manual fixing. Only single word variable names are changed, no prefixed/suffixed names. Brecht van Lommel and Campbell Barton both gave me a green light for this convention change. Also ran clan clang format on affected files.
2020-01-17Gizmo: draw dial arc only over one rotation to avoid artifactsDavid
There were some visual artifacts when the spin gizmo had a rotation greater than 360 degrees. Avoids this by drawing the arc over the span of one rotation only and adjusting the background color based on the rotation count.
2020-01-14Fix T70273: Auto-keyframe ignored by gizmosCampbell Barton
2019-09-14Cleanup: use const args, variablesCampbell Barton
2019-07-01Gizmo: support for filled circle with inner non-zero radiusCampbell Barton
Needed for changes to the scale gizmo.
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-03-25Gizmo: add option to move & dial gizmos to select as filledCampbell Barton
Draw as an outline while using solid selection.
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-03Cleanup: trailing commasCampbell Barton
Needed for clan-format not to wrap onto one line.
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.
2019-01-26Cleanup: remove redundant BKE/BLI/BIF headersCampbell Barton
2018-10-18Fix debug build after recent changes.Brecht Van Lommel
2018-10-18Cleanup: fix compiler warnings.Brecht Van Lommel
2018-10-05Dial3d Gizmo: consider the offset value in the incremental angle drawing.mano-wii
This prevents misalignment with the Spin tool gizmo for example.
2018-10-04Cleanup: styleCampbell Barton
2018-10-04ED_gizmotypes_dial_3d_draw_util: use a struct to hide most parameters.mano-wii
2018-10-03Dial3d Gizmo: Add the Incremental Angle option to snap.mano-wii
2018-10-03Dial 3d Gizmo refactoring.mano-wii
Transform the gizmo's drawing function into a generic function for use in other parts of the code.
2018-09-25Gizmo: dial support for a click setting a valueCampbell Barton
Useful for click w/o drag to spin a full revolution.
2018-09-25Gizmo: reset dial value on cancelCampbell Barton
2018-09-24Gizmo: dial3d option to draw a partial arcCampbell Barton
2018-09-21Gizmo: fix incorrect dial clip scalingCampbell Barton
Failed with obvious error when the dials scale wasn't 1.0
2018-09-20Merge branch 'master' into blender2.8Campbell Barton
2018-09-20Gizmo: use ED_view3d_win_to_3d_on_planeCampbell Barton
2018-09-19Gizmo: tweaks to dial drawingCampbell Barton
- Add Arc-Inner-Factor, to increase the inner arc radius from 0 (show as a disk). - When showing an angle value, show the angle-end line thicker (since thats whats being adjusted). - Remove offset used by arc drawing which caused aliasing artifacts.
2018-09-19Gizmo: exclude arc from selectionCampbell Barton
Also disable polygon smooth before drawing arc.
2018-09-19Gizmo: remove matrix rotation for the dial gizmoCampbell Barton
This makes it impossible to rotate the gizmo using the matrix Y axis. Testing without this and I can't find any cases it breaks.
2018-09-19Correct polygon_smooth being left enabledCampbell Barton
2018-09-19Cleanup: commentsCampbell Barton
2018-09-19Gizmo: dial3d option to show the final angleCampbell Barton
Was showing modal-delta-angle, which isn't useful for the spin tool.
2018-09-18Gizmo: dial3d option to get angles w/o wrappingCampbell Barton
Needed for spinning multiple revolutions.
2018-09-18Gizmo: add snap & tweak to the dial widgetCampbell Barton
Allows holding Ctrl to snap w/ the spin tool.
2018-09-18Cleanup: group gizmo dial members into structsCampbell Barton
2018-09-13Gizmo: only use mousemove for generic gizmosCampbell Barton
This caused slow performance for spin/bisect for eg.
2018-09-13Cleanup: add editor gizmo doxy groupCampbell Barton
2018-08-21Cleanup: rename gizmo access functionsCampbell Barton
Add float in API names since we may want access to other types.
2018-07-18GWN: Port to GPU module: Replace GWN prefix by GPUClément Foucault
2018-07-15GPU_matrix: use Blender's naming conventionsCampbell Barton
Thanks to @sergey for review
2018-07-15Cleanup: use variable names based on term gizmoCampbell Barton
2018-07-15WM: rename manipulator to gizmo internallyCampbell Barton
2018-07-15WM: rename files, manipulator -> gizmoCampbell Barton
Edit doxy files and header guards only.