Details
- Reviewers
Campbell Barton (campbellbarton)
Diff Detail
- Repository
- rB Blender
Event Timeline
The updated patch now is part of the C function instead of the python function and the user can now optionally have the shading and non renderable objects disabled as per Campbell's suggestions.
| source/blender/editors/sculpt_paint/paint_image_proj.c | ||
|---|---|---|
| 5461 ↗ | (On Diff #8400) | Changing draw type seems quite extreme, especially since we can't assume much about what the user does. They could have rendering set, glsl for example. When all lamps are deleted from a scene in some modes Blender disables lighting (flat shaded), have some memory of Blender having the ability to disable shading under some conditions but would need to double check on this. While supporting every mode might be hard to support, I think its reasonable try support disabling shaders for GLSL painting since its a fairly common. Could you check on how GPU_SHADER_LIGHTING is used? |
Note: tex_mat_set_texture_cb disables lighting, tex_mat_set_material_cb doesn't by the looks of it, think best approach would be to use make tex_mat_set_material_cb optionally disable lighting.