Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Leung <aligorith@gmail.com>2018-05-10 18:56:12 +0300
committerJoshua Leung <aligorith@gmail.com>2018-05-10 18:56:12 +0300
commitbe400a0789d9eac2afaa929834ea70aa5d2a39a3 (patch)
tree431e8d772d69e482d870e8b73e3c333d270bb4f8 /source/blender/editors/space_clip/clip_utils.c
parentc20cc3cf14be322f76db5f76d273b55408233802 (diff)
UI: Fix time cursor number box styling for Clip Editor's Dopesheet/Graph views
Diffstat (limited to 'source/blender/editors/space_clip/clip_utils.c')
-rw-r--r--source/blender/editors/space_clip/clip_utils.c33
1 files changed, 0 insertions, 33 deletions
diff --git a/source/blender/editors/space_clip/clip_utils.c b/source/blender/editors/space_clip/clip_utils.c
index 9f79e8ffd6b..eeb2526921f 100644
--- a/source/blender/editors/space_clip/clip_utils.c
+++ b/source/blender/editors/space_clip/clip_utils.c
@@ -264,39 +264,6 @@ void clip_view_center_to_point(SpaceClip *sc, float x, float y)
sc->yof = (y - 0.5f) * height * aspy;
}
-void clip_draw_cfra(SpaceClip *sc, ARegion *ar, Scene *scene)
-{
- /* Draw a light green line to indicate current frame */
- View2D *v2d = &ar->v2d;
- float x = (float)(sc->user.framenr * scene->r.framelen);
-
- unsigned int pos = GWN_vertformat_attr_add(immVertexFormat(), "pos", GWN_COMP_F32, 2, GWN_FETCH_FLOAT);
-
- immBindBuiltinProgram(GPU_SHADER_2D_UNIFORM_COLOR);
- immUniformThemeColor(TH_CFRAME);
- glLineWidth(2.0f);
-
- immBegin(GWN_PRIM_LINES, 2);
- immVertex2f(pos, x, v2d->cur.ymin);
- immVertex2f(pos, x, v2d->cur.ymax);
- immEnd();
-
- immUnbindProgram();
-
- UI_view2d_view_orthoSpecial(ar, v2d, 1);
-
- /* because the frame number text is subject to the same scaling as the contents of the view */
- float xscale;
- UI_view2d_scale_get(v2d, &xscale, NULL);
- gpuPushMatrix();
- gpuScale2f(1.0f / xscale, 1.0f);
-
- ED_region_cache_draw_curfra_label(sc->user.framenr, (float)sc->user.framenr * xscale, 18);
-
- /* restore view transform */
- gpuPopMatrix();
-}
-
void clip_draw_sfra_efra(View2D *v2d, Scene *scene)
{
UI_view2d_view_ortho(v2d);