From 7c7c62409bec10650de7e528462026a35f3e7e62 Mon Sep 17 00:00:00 2001 From: Peter Schlaile Date: Sun, 5 Aug 2007 18:22:45 +0000 Subject: == Sequencer == This adds "[#6766] Transform Sequencer effect" by damiles. * Configurable interpolation: no, linear, bicubic * Makes it possible to specify coordinates in units of pixels or by percent of the picture size It makes the code a lot more clean, since new imbuf functions are used. This patch also fixes [#6829] Limit on VSE Transform Effect --- source/blender/makesdna/DNA_sequence_types.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source/blender/makesdna/DNA_sequence_types.h') diff --git a/source/blender/makesdna/DNA_sequence_types.h b/source/blender/makesdna/DNA_sequence_types.h index 5bb9f61f71e..5db102e9868 100644 --- a/source/blender/makesdna/DNA_sequence_types.h +++ b/source/blender/makesdna/DNA_sequence_types.h @@ -170,6 +170,8 @@ typedef struct TransformVars { float yFin; float rotIni; float rotFin; + int percent; + int interpolation; } TransformVars; typedef struct SolidColorVars { -- cgit v1.2.3