revert. I didn't see that the .c files were included...

SVN revision: 42664
This commit is contained in:
Vincent Torri 2009-09-24 06:01:59 +00:00
parent f12c2099d4
commit c1b56b9cf1
4 changed files with 18 additions and 26 deletions

View File

@ -1,6 +1,23 @@
#include "evas_common.h"
#include "evas_private.h"
#include "evas_object_gradient2.h"
typedef struct _Evas_Object_Gradient2 Evas_Object_Gradient2;
struct _Evas_Object_Gradient2
{
DATA32 magic;
struct {
struct {
Evas_Common_Transform transform;
int spread;
} fill;
unsigned char gradient_opaque : 1;
} cur, prev;
unsigned char gradient_changed : 1;
};
/**

View File

@ -1,23 +0,0 @@
#ifndef EVAS_GRADIENT2_H_
#define EVAS_GRADIENT2_H_
typedef struct _Evas_Object_Gradient2 Evas_Object_Gradient2;
struct _Evas_Object_Gradient2
{
DATA32 magic;
struct {
struct {
Evas_Common_Transform transform;
int spread;
} fill;
unsigned char gradient_opaque : 1;
} cur, prev;
unsigned char gradient_changed : 1;
};
#endif

View File

@ -1,6 +1,5 @@
#include "evas_common.h"
#include "evas_private.h"
#include "evas_object_gradient2.h"
/* private magic number for linear gradient objects */
static const char lg_type[] = "linear_gradient";

View File

@ -1,6 +1,5 @@
#include "evas_common.h"
#include "evas_private.h"
#include "evas_object_gradient2.h"
/* private magic number for radial gradient objects */
static const char rg_type[] = "radial_gradient";