svn merge ^/trunk/blender -r43085:43092
This commit is contained in:
@@ -161,6 +161,11 @@ int getname_anim_fcurve(char *name, ID *id, FCurve *fcu)
|
||||
* use the struct's icon if it is set
|
||||
*/
|
||||
icon= RNA_struct_ui_icon(ptr.type);
|
||||
|
||||
/* valid path - remove the invalid tag since we now know how to use it saving
|
||||
* users manual effort to reenable using "Revive Disabled FCurves" [#29629]
|
||||
*/
|
||||
fcu->flag &= ~FCURVE_DISABLED;
|
||||
}
|
||||
else {
|
||||
/* invalid path */
|
||||
|
||||
@@ -616,9 +616,11 @@ static void vgroup_select_verts(Object *ob, int select)
|
||||
dv = me->dvert;
|
||||
|
||||
for (i=0; i<me->totvert; i++, mv++, dv++) {
|
||||
if (defvert_find_index(dv, def_nr)) {
|
||||
if (select) mv->flag |= SELECT;
|
||||
else mv->flag &= ~SELECT;
|
||||
if (!(mv->flag & ME_HIDE)) {
|
||||
if (defvert_find_index(dv, def_nr)) {
|
||||
if (select) mv->flag |= SELECT;
|
||||
else mv->flag &= ~SELECT;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -14,10 +14,10 @@ incs += ' ' + env['BF_ZLIB_INC']
|
||||
defs = []
|
||||
|
||||
if env ['WITH_BF_BOOLEAN']:
|
||||
incs += ' #/intern/dualcon'
|
||||
defs.append('WITH_MOD_BOOLEAN')
|
||||
|
||||
if env['WITH_BF_REMESH']:
|
||||
incs += ' #/intern/dualcon'
|
||||
defs.append('WITH_MOD_REMESH')
|
||||
|
||||
if env ['WITH_BF_DECIMATE']:
|
||||
|
||||
@@ -203,6 +203,13 @@ int imagewrap(Tex *tex, Image *ima, ImBuf *ibuf, const float texvec[3], TexResul
|
||||
ibuf->rect+= (ibuf->x*ibuf->y);
|
||||
}
|
||||
|
||||
/* keep this before interpolation [#29761] */
|
||||
if (tex->imaflag & TEX_USEALPHA) {
|
||||
if ((tex->imaflag & TEX_CALCALPHA) == 0) {
|
||||
texres->talpha = TRUE;
|
||||
}
|
||||
}
|
||||
|
||||
/* interpolate */
|
||||
if (tex->imaflag & TEX_INTERPOL) {
|
||||
float filterx, filtery;
|
||||
@@ -225,11 +232,6 @@ int imagewrap(Tex *tex, Image *ima, ImBuf *ibuf, const float texvec[3], TexResul
|
||||
ibuf->rect-= (ibuf->x*ibuf->y);
|
||||
}
|
||||
|
||||
if(tex->imaflag & TEX_USEALPHA) {
|
||||
if(tex->imaflag & TEX_CALCALPHA);
|
||||
else texres->talpha= 1;
|
||||
}
|
||||
|
||||
if(texres->nor) {
|
||||
if(tex->imaflag & TEX_NORMALMAP) {
|
||||
// qdn: normal from color
|
||||
|
||||
Reference in New Issue
Block a user