OpenGL immediate mode: fix asserts in clip dopesheet

This commit is contained in:
Clément Foucault 2017-02-23 16:38:29 +01:00
parent e437841239
commit 071fdfbfb3
1 changed files with 2 additions and 2 deletions

View File

@ -216,7 +216,7 @@ void clip_draw_dopesheet_main(SpaceClip *sc, ARegion *ar, Scene *scene)
format = immVertexFormat();
pos_id = add_attrib(format, "pos", COMP_F32, 2, KEEP_FLOAT);
unsigned int size_id = add_attrib(format, "size", COMP_F32, 1, KEEP_FLOAT);
unsigned int color_id = add_attrib(format, "color", COMP_U8, 4, NORMALIZE_INT_TO_FLOAT);
unsigned int color_id = add_attrib(format, "color", COMP_F32, 4, KEEP_FLOAT);
unsigned int outline_color_id = add_attrib(format, "outlineColor", COMP_U8, 4, NORMALIZE_INT_TO_FLOAT);
immBindBuiltinProgram(GPU_SHADER_KEYFRAME_DIAMOND);
@ -225,7 +225,7 @@ void clip_draw_dopesheet_main(SpaceClip *sc, ARegion *ar, Scene *scene)
/* all same size with black outline */
immAttrib1f(size_id, 2.0f * STRIP_HEIGHT_HALF);
immAttrib3ub(outline_color_id, 0, 0, 0);
immAttrib4ub(outline_color_id, 0, 0, 0, 255);
y = (float) CHANNEL_FIRST; /* start again at the top */
for (channel = dopesheet->channels.first; channel; channel = channel->next) {