From e7218e7049972053140d94410aea75e0c3e87c61 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 9 Oct 2018 11:01:50 +1100 Subject: Cleanup: naming - immAttrib* -> immAttr* - immSkipAttrib -> immAttrSkip Term 'attr' is a convention for GPU module. --- source/blender/editors/space_file/file_draw.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source/blender/editors/space_file/file_draw.c') diff --git a/source/blender/editors/space_file/file_draw.c b/source/blender/editors/space_file/file_draw.c index 79b73f6ff52..2ae432fbc4e 100644 --- a/source/blender/editors/space_file/file_draw.c +++ b/source/blender/editors/space_file/file_draw.c @@ -515,15 +515,15 @@ static void draw_dividers(FileLayout *layout, View2D *v2d) sx += step; v1[0] = v2[0] = sx; - immSkipAttrib(color); + immAttrSkip(color); immVertex2iv(pos, v1); - immAttrib3ubv(color, col_lo); + immAttr3ubv(color, col_lo); immVertex2iv(pos, v2); v1[0] = v2[0] = sx + 1; - immSkipAttrib(color); + immAttrSkip(color); immVertex2iv(pos, v1); - immAttrib3ubv(color, col_hi); + immAttr3ubv(color, col_hi); immVertex2iv(pos, v2); } -- cgit v1.2.3