Changeset View
Changeset View
Standalone View
Standalone View
source/blender/shader_fx/intern/FX_shader_rim.c
| Show First 20 Lines • Show All 52 Lines • ▼ Show 20 Lines | static void initData(ShaderFxData *fx) | ||||
| gpfx->samples = 2; | gpfx->samples = 2; | ||||
| } | } | ||||
| static void copyData(const ShaderFxData *md, ShaderFxData *target) | static void copyData(const ShaderFxData *md, ShaderFxData *target) | ||||
| { | { | ||||
| BKE_shaderfx_copydata_generic(md, target); | BKE_shaderfx_copydata_generic(md, target); | ||||
| } | } | ||||
| static void panel_draw(const bContext *C, Panel *panel) | static void panel_draw(const bContext *UNUSED(C), Panel *panel) | ||||
| { | { | ||||
| uiLayout *col; | uiLayout *col; | ||||
| uiLayout *layout = panel->layout; | uiLayout *layout = panel->layout; | ||||
| PointerRNA ptr; | PointerRNA *ptr = shaderfx_panel_get_property_pointers(panel, NULL); | ||||
| shaderfx_panel_get_property_pointers(C, panel, NULL, &ptr); | |||||
| uiLayoutSetPropSep(layout, true); | uiLayoutSetPropSep(layout, true); | ||||
| uiItemR(layout, &ptr, "rim_color", 0, NULL, ICON_NONE); | uiItemR(layout, ptr, "rim_color", 0, NULL, ICON_NONE); | ||||
| uiItemR(layout, &ptr, "mask_color", 0, NULL, ICON_NONE); | uiItemR(layout, ptr, "mask_color", 0, NULL, ICON_NONE); | ||||
| uiItemR(layout, &ptr, "mode", 0, IFACE_("Blend Mode"), ICON_NONE); | uiItemR(layout, ptr, "mode", 0, IFACE_("Blend Mode"), ICON_NONE); | ||||
| /* Add the X, Y labels manually because offset is a #PROP_PIXEL. */ | /* Add the X, Y labels manually because offset is a #PROP_PIXEL. */ | ||||
| col = uiLayoutColumn(layout, true); | col = uiLayoutColumn(layout, true); | ||||
| PropertyRNA *prop = RNA_struct_find_property(&ptr, "offset"); | PropertyRNA *prop = RNA_struct_find_property(ptr, "offset"); | ||||
| uiItemFullR(col, &ptr, prop, 0, 0, 0, IFACE_("Offset X"), ICON_NONE); | uiItemFullR(col, ptr, prop, 0, 0, 0, IFACE_("Offset X"), ICON_NONE); | ||||
| uiItemFullR(col, &ptr, prop, 1, 0, 0, IFACE_("Y"), ICON_NONE); | uiItemFullR(col, ptr, prop, 1, 0, 0, IFACE_("Y"), ICON_NONE); | ||||
| shaderfx_panel_end(layout, &ptr); | shaderfx_panel_end(layout, ptr); | ||||
| } | } | ||||
| static void blur_panel_draw(const bContext *C, Panel *panel) | static void blur_panel_draw(const bContext *UNUSED(C), Panel *panel) | ||||
| { | { | ||||
| uiLayout *col; | uiLayout *col; | ||||
| uiLayout *layout = panel->layout; | uiLayout *layout = panel->layout; | ||||
| PointerRNA ptr; | PointerRNA *ptr = shaderfx_panel_get_property_pointers(panel, NULL); | ||||
| shaderfx_panel_get_property_pointers(C, panel, NULL, &ptr); | |||||
| uiLayoutSetPropSep(layout, true); | uiLayoutSetPropSep(layout, true); | ||||
| /* Add the X, Y labels manually because blur is a #PROP_PIXEL. */ | /* Add the X, Y labels manually because blur is a #PROP_PIXEL. */ | ||||
| col = uiLayoutColumn(layout, true); | col = uiLayoutColumn(layout, true); | ||||
| PropertyRNA *prop = RNA_struct_find_property(&ptr, "blur"); | PropertyRNA *prop = RNA_struct_find_property(ptr, "blur"); | ||||
| uiItemFullR(col, &ptr, prop, 0, 0, 0, IFACE_("Blur X"), ICON_NONE); | uiItemFullR(col, ptr, prop, 0, 0, 0, IFACE_("Blur X"), ICON_NONE); | ||||
| uiItemFullR(col, &ptr, prop, 1, 0, 0, IFACE_("Y"), ICON_NONE); | uiItemFullR(col, ptr, prop, 1, 0, 0, IFACE_("Y"), ICON_NONE); | ||||
| uiItemR(layout, &ptr, "samples", 0, NULL, ICON_NONE); | uiItemR(layout, ptr, "samples", 0, NULL, ICON_NONE); | ||||
| } | } | ||||
| static void panelRegister(ARegionType *region_type) | static void panelRegister(ARegionType *region_type) | ||||
| { | { | ||||
| PanelType *panel_type = shaderfx_panel_register(region_type, eShaderFxType_Rim, panel_draw); | PanelType *panel_type = shaderfx_panel_register(region_type, eShaderFxType_Rim, panel_draw); | ||||
| shaderfx_subpanel_register(region_type, "blur", "Blur", NULL, blur_panel_draw, panel_type); | shaderfx_subpanel_register(region_type, "blur", "Blur", NULL, blur_panel_draw, panel_type); | ||||
| } | } | ||||
| Show All 18 Lines | |||||