code cleanup: remove unused struct

This commit is contained in:
2013-06-02 02:25:40 +00:00
parent a8c55a612b
commit 7ce0ea00a0
2 changed files with 1 additions and 7 deletions

View File

@@ -79,12 +79,6 @@ typedef struct TexSnapshot {
bool old_col;
} TexSnapshot;
typedef struct CurveSnapshot {
int BKE_brush_size_get;
int curve_changed_timestamp;
bool init;
} CurveSnapshot;
static int same_tex_snap(TexSnapshot *snap, MTex *mtex, ViewContext *vc, bool col, float zoom)
{
return (/* make brush smaller shouldn't cause a resample */

View File

@@ -823,7 +823,7 @@ ImBuf *sequencer_ibuf_get(struct Main *bmain, Scene *scene, SpaceSeq *sseq, int
SeqRenderData context;
ImBuf *ibuf;
int rectx, recty;
float render_size = 0.0;
float render_size;
float proxy_size = 100.0;
short is_break = G.is_break;