From 5ac477805637f20b8ac5e742457fa8f304066d83 Mon Sep 17 00:00:00 2001 From: Valentin Date: Wed, 30 Sep 2020 20:09:02 +1000 Subject: Cleanup: convert gforge task ID's to phabricator format Cleanup old tracker task format to the new. e.g: [#34039] to T34039 Ref D8718 --- source/blender/render/intern/source/bake_api.c | 2 +- source/blender/render/intern/source/imagetexture.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/render') diff --git a/source/blender/render/intern/source/bake_api.c b/source/blender/render/intern/source/bake_api.c index 6e336604b59..6f5db4986f2 100644 --- a/source/blender/render/intern/source/bake_api.c +++ b/source/blender/render/intern/source/bake_api.c @@ -746,7 +746,7 @@ void RE_bake_pixels_populate(Mesh *me, /* Note, workaround for pixel aligned UVs which are common and can screw up our * intersection tests where a pixel gets in between 2 faces or the middle of a quad, * camera aligned quads also have this problem but they are less common. - * Add a small offset to the UVs, fixes bug #18685 - Campbell */ + * Add a small offset to the UVs, fixes bug T18685 - Campbell */ vec[a][0] = uv[0] * (float)bd.bk_image->width - (0.5f + 0.001f); vec[a][1] = uv[1] * (float)bd.bk_image->height - (0.5f + 0.002f); } diff --git a/source/blender/render/intern/source/imagetexture.c b/source/blender/render/intern/source/imagetexture.c index 188bdab316c..dd179f9461b 100644 --- a/source/blender/render/intern/source/imagetexture.c +++ b/source/blender/render/intern/source/imagetexture.c @@ -239,7 +239,7 @@ int imagewrap(Tex *tex, } } - /* keep this before interpolation [#29761] */ + /* Keep this before interpolation T29761. */ if (ima) { if ((tex->imaflag & TEX_USEALPHA) && (ima->alpha_mode != IMA_ALPHA_IGNORE)) { if ((tex->imaflag & TEX_CALCALPHA) == 0) { @@ -254,7 +254,7 @@ int imagewrap(Tex *tex, filterx = (0.5f * tex->filtersize) / ibuf->x; filtery = (0.5f * tex->filtersize) / ibuf->y; - /* important that this value is wrapped [#27782] + /* Important that this value is wrapped T27782. * this applies the modifications made by the checks above, * back to the floating point values */ fx -= (float)(xi - x) / (float)ibuf->x; -- cgit v1.2.3