Iliya Katushenock mod_moder
  • Russian
  • Just student

  • Joined on 2019-01-20
Iliya Katushenock commented on pull request blender/blender#108686 2023-06-10 11:33:09 +02:00
Cleanup: replace the use of listbase in io_alembic.cc with vector

if (frames.size() > 0) {...} return 1; -> if (frames.is_empty()) { return 1; } ... blender::Vector<CacheFrame> frames{}; -> blender::Vector<CacheFrame> frames; `int frame_curr =…

Iliya Katushenock commented on issue blender/blender#108834 2023-06-10 11:19:52 +02:00
Menu /Main Ui invisible

Not sure (first time this gpu), but look like it duplicate of blender/blender#100096

Iliya Katushenock pushed to gizmos_bke_component at mod_moder/blender 2023-06-10 02:34:08 +02:00
bc47d8228a progress
b9a3a2df34 Merge branch 'main' into gizmos_bke_component
823514fd6f Fix #108778: Crash when rendering multiple view layers
b3356b1799 Mesh: Remove unnecessary mesh position copying
d651ee69bd Cleanup: Use explicit default for corner normals optional parameter
Compare 19 commits »
Iliya Katushenock pushed to gizmos_bke_component at mod_moder/blender 2023-06-09 20:56:34 +02:00
060f26455b revert commenting
d2f75ccfcc progress
203f37f262 progress
9aef208ac1 Merge branch 'main' into gizmos_bke_component
e5dd515da8 Cleanup: Remove unnecessary asset handle forward declaration
Compare 143 commits »
Iliya Katushenock deleted branch cleanup_realize_instance from mod_moder/blender 2023-06-09 20:47:57 +02:00
Iliya Katushenock closed pull request blender/blender#108821 2023-06-09 20:47:51 +02:00
Cleanup: Geometry: Some unification in working with attributes in realize instances
Iliya Katushenock deleted branch cleanup_materials_in_realize_instances from mod_moder/blender 2023-06-09 20:47:30 +02:00
Iliya Katushenock commented on pull request blender/blender#108821 2023-06-09 20:46:13 +02:00
Cleanup: Geometry: Some unification in working with attributes in realize instances

When I said nesting, I meant...

  ...
  if (info.create_radius_attribute) {
    pointcloud_info.radii = *attributes.lookup_or_default("radius", ATTR_DOMAIN_POINT, 0.01f);
  }

And

Iliya Katushenock commented on pull request blender/blender#108821 2023-06-09 20:38:27 +02:00
Cleanup: Geometry: Some unification in working with attributes in realize instances

Basically, it's just a shuffled around code. I was doing support for a new type of component and noticed that the code has a lot of duplication, so I decided to at least make it simpler. As an…

Iliya Katushenock created pull request blender/blender#108822 2023-06-09 20:34:54 +02:00
Cleanup: Geometry: Avoid nesting with simpler material handling in realize instances
Iliya Katushenock created branch cleanup_materials_in_realize_instances in mod_moder/blender 2023-06-09 20:32:56 +02:00
Iliya Katushenock pushed to cleanup_realize_instance at mod_moder/blender 2023-06-09 20:14:48 +02:00
f7c2012567 progress
Iliya Katushenock created pull request blender/blender#108821 2023-06-09 20:12:55 +02:00
Cleanup: Geometry: Some unification in working with attributes in realize instances
Iliya Katushenock pushed to cleanup_realize_instance at mod_moder/blender 2023-06-09 20:10:35 +02:00
67b8dbe1ad init
e5dd515da8 Cleanup: Remove unnecessary asset handle forward declaration
92ff750bbf Refactor: Get rid of asset handle for drag & drop
03258f2847 Cleanup: Fix strict compilation warnings
d62ebe9318 Merge branch 'blender-v3.6-release'
Compare 10 commits »
Iliya Katushenock created branch cleanup_realize_instance in mod_moder/blender 2023-06-09 20:10:35 +02:00
Iliya Katushenock commented on issue blender/blender#108817 2023-06-09 19:27:58 +02:00
Geometry Nodes: Extrude Mesh node set to "Vertices" crashes Blender when appended into another file

Hi, if i open this file and just enable modifier, clender will be actually crash. As i can see, this caused by missing internal edge attribute. But may be i sat on the tail of another bug.

Iliya Katushenock commented on pull request blender/blender#108775 2023-06-09 18:44:45 +02:00
Cleanup: simplify keyword recognition in text editor

static Array<StringRef> texts = {"abc", "ddd", "fff"};?

Iliya Katushenock commented on pull request blender/blender#108775 2023-06-09 17:51:05 +02:00
Cleanup: simplify keyword recognition in text editor

It possiblt to replace KeywordInfo by StringReff?