immediate mode: use new ThemeColor functions
This commit is contained in:
@@ -101,11 +101,8 @@ static void time_draw_sfra_efra(Scene *scene, View2D *v2d)
|
||||
glDisable(GL_BLEND);
|
||||
|
||||
/* thin lines where the actual frames are */
|
||||
unsigned char color[3];
|
||||
UI_GetThemeColorShade3ubv(TH_BACK, -60, color);
|
||||
|
||||
immBindBuiltinProgram(GPU_SHADER_2D_UNIFORM_COLOR);
|
||||
immUniformColor3ubv(color);
|
||||
immUniformThemeColorShade(TH_BACK, -60);
|
||||
|
||||
immBegin(GL_LINES, 4);
|
||||
|
||||
|
||||
@@ -264,9 +264,7 @@ static void drawFlyPixel(const struct bContext *UNUSED(C), ARegion *UNUSED(ar),
|
||||
|
||||
immBindBuiltinProgram(GPU_SHADER_2D_UNIFORM_COLOR);
|
||||
|
||||
unsigned char square_color[3];
|
||||
UI_GetThemeColor3ubv(TH_VIEW_OVERLAY, square_color);
|
||||
immUniformColor3ubv(square_color);
|
||||
immUniformThemeColor(TH_VIEW_OVERLAY);
|
||||
|
||||
immBegin(GL_LINES, 16);
|
||||
|
||||
|
||||
@@ -345,9 +345,7 @@ static void drawWalkPixel(const struct bContext *UNUSED(C), ARegion *ar, void *a
|
||||
|
||||
immBindBuiltinProgram(GPU_SHADER_2D_UNIFORM_COLOR);
|
||||
|
||||
unsigned char crosshair_color[3];
|
||||
UI_GetThemeColor3ubv(TH_VIEW_OVERLAY, crosshair_color);
|
||||
immUniformColor3ubv(crosshair_color);
|
||||
immUniformThemeColor(TH_VIEW_OVERLAY);
|
||||
|
||||
immBegin(GL_LINES, 8);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user