Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_brush.h
| Show First 20 Lines • Show All 84 Lines • ▼ Show 20 Lines | float BKE_brush_sample_tex_3d(const struct Scene *scene, | ||||
| float rgba[4], | float rgba[4], | ||||
| const int thread, | const int thread, | ||||
| struct ImagePool *pool); | struct ImagePool *pool); | ||||
| float BKE_brush_sample_masktex(const struct Scene *scene, | float BKE_brush_sample_masktex(const struct Scene *scene, | ||||
| struct Brush *br, | struct Brush *br, | ||||
| const float point[2], | const float point[2], | ||||
| const int thread, | const int thread, | ||||
| struct ImagePool *pool); | struct ImagePool *pool); | ||||
| float BKE_brush_filter_sample_tex_3d(const struct MTex *mtex, | |||||
| const float point[3], | |||||
| float rgba[4], | |||||
| const int thread, | |||||
| struct ImagePool *pool); | |||||
| /* texture */ | /* texture */ | ||||
| unsigned int *BKE_brush_gen_texture_cache(struct Brush *br, int half_side, bool use_secondary); | unsigned int *BKE_brush_gen_texture_cache(struct Brush *br, int half_side, bool use_secondary); | ||||
| /* radial control */ | /* radial control */ | ||||
| struct ImBuf *BKE_brush_gen_radial_control_imbuf(struct Brush *br, | struct ImBuf *BKE_brush_gen_radial_control_imbuf(struct Brush *br, | ||||
| bool secondary, | bool secondary, | ||||
| bool display_gradient); | bool display_gradient); | ||||
| ▲ Show 20 Lines • Show All 53 Lines • Show Last 20 Lines | |||||