~linaro-graphics-wg/+junk/spandex-package

« back to all changes in this revision

Viewing changes to sct/common/modules/openvg/sct_openvgenableaction.h

  • Committer: Alexandros Frantzis
  • Date: 2011-05-04 08:50:52 UTC
  • Revision ID: alexandros.frantzis@linaro.org-20110504085052-88gps4jrg317s6lc
Tags: upstream-1.1.3~git20110502.0ae20368
ImportĀ upstreamĀ versionĀ 1.1.3~git20110502.0ae20368

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Spandex benchmark and test framework.
 
3
 *
 
4
 * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
 
5
 *
 
6
 * Contact: Kari J. Kangas <kari.j.kangas@nokia.com>
 
7
 *
 
8
 *   This framework is free software; you can redistribute it and/or modify it
 
9
 * under the terms of the GNU Lesser General Public License as published by the
 
10
 * Free Software Foundation, version 2.1 of the License.
 
11
 *
 
12
 *   This framework is distributed in the hope that it will be useful, but
 
13
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 
14
 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
 
15
 * for more details.
 
16
 *
 
17
 *   You should have received a copy of the GNU Lesser General Public License
 
18
 * along with this framework; if not, see <http://www.gnu.org/licenses/>.
 
19
 *
 
20
 */
 
21
 
 
22
#if !defined( __SCT_OPENVGENABLEACTION_H__ )
 
23
#define __SCT_OPENVGENABLEACTION_H__
 
24
 
 
25
#include "sct_types.h"
 
26
#include "sct_openvgmodule.h"
 
27
#include "sct_openvgmodule_parser.h"
 
28
#include "sct_vg.h"
 
29
 
 
30
/*!
 
31
 *
 
32
 */
 
33
typedef struct
 
34
{
 
35
    SCTOpenVGModuleContext*             moduleContext;
 
36
    OpenVGEnableActionData              data;
 
37
} SCTOpenVGEnableActionContext;
 
38
 
 
39
#if defined( __cplusplus )
 
40
extern "C" {
 
41
#endif  /* defined( __cplusplus ) */
 
42
 
 
43
    void*                               sctiCreateOpenVGEnableActionContext( void* moduleContext, SCTAttributeList* attributes );
 
44
    void                                sctiDestroyOpenVGEnableActionContext( void* context );
 
45
 
 
46
    SCTBoolean                          sctiOpenVGEnableActionExecute( SCTAction* action, int frameNumber );
 
47
    void                                sctiOpenVGEnableActionDestroy( SCTAction* action );
 
48
 
 
49
#if defined( __cplusplus )
 
50
}
 
51
#endif  /* defined( __cplusplus ) */
 
52
 
 
53
#endif /* !defined( __SCT_OPENVGENABLEACTION_H__ ) */