2009-03-30 11:41:02 -04:00
|
|
|
/*
|
|
|
|
* Clutter.
|
|
|
|
*
|
|
|
|
* An OpenGL based 'interactive canvas' library.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Intel Corporation.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2011-11-15 12:39:49 -05:00
|
|
|
#ifndef __CLUTTER_PROFILE_H__
|
|
|
|
#define __CLUTTER_PROFILE_H__
|
2009-03-30 11:41:02 -04:00
|
|
|
|
2010-01-06 13:15:13 -05:00
|
|
|
#include <glib.h>
|
|
|
|
|
2009-03-30 11:41:02 -04:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2010-01-06 13:15:13 -05:00
|
|
|
typedef enum {
|
2009-04-17 07:15:56 -04:00
|
|
|
CLUTTER_PROFILE_PICKING_ONLY = 1 << 0,
|
2010-01-06 13:15:13 -05:00
|
|
|
CLUTTER_PROFILE_DISABLE_REPORT = 1 << 1
|
|
|
|
} ClutterProfileFlag;
|
|
|
|
|
2009-03-30 11:41:02 -04:00
|
|
|
#ifdef CLUTTER_ENABLE_PROFILE
|
|
|
|
|
|
|
|
#include <uprof.h>
|
|
|
|
|
2011-11-15 12:39:49 -05:00
|
|
|
extern UProfContext * _clutter_uprof_context;
|
|
|
|
extern guint clutter_profile_flags;
|
2009-03-30 11:41:02 -04:00
|
|
|
|
|
|
|
#define CLUTTER_STATIC_TIMER UPROF_STATIC_TIMER
|
|
|
|
#define CLUTTER_STATIC_COUNTER UPROF_STATIC_COUNTER
|
|
|
|
#define CLUTTER_COUNTER_INC UPROF_COUNTER_INC
|
|
|
|
#define CLUTTER_COUNTER_DEC UPROF_COUNTER_DEC
|
|
|
|
#define CLUTTER_TIMER_START UPROF_TIMER_START
|
|
|
|
#define CLUTTER_TIMER_STOP UPROF_TIMER_STOP
|
|
|
|
|
2011-11-15 12:39:49 -05:00
|
|
|
void _clutter_uprof_init (void);
|
|
|
|
void _clutter_profile_suspend (void);
|
|
|
|
void _clutter_profile_resume (void);
|
2010-06-21 10:36:46 -04:00
|
|
|
|
2009-03-30 11:41:02 -04:00
|
|
|
#else /* CLUTTER_ENABLE_PROFILE */
|
|
|
|
|
2012-03-07 07:04:44 -05:00
|
|
|
#ifdef __COUNTER__
|
|
|
|
#define CLUTTER_STATIC_TIMER(A,B,C,D,E) extern void G_PASTE (_clutter_dummy_decl, __COUNTER__) (void)
|
|
|
|
#define CLUTTER_STATIC_COUNTER(A,B,C,D) extern void G_PASTE (_clutter_dummy_decl, __COUNTER__) (void)
|
|
|
|
#else
|
|
|
|
#define CLUTTER_STATIC_TIMER(A,B,C,D,E) extern void G_PASTE (_clutter_dummy_decl, __LINE__) (void)
|
2012-03-21 10:01:11 -04:00
|
|
|
#define CLUTTER_STATIC_COUNTER(A,B,C,D) extern void G_PASTE (_clutter_dummy_decl, __LINE__) (void)
|
2012-03-07 07:04:44 -05:00
|
|
|
#endif
|
2011-11-18 12:44:42 -05:00
|
|
|
#define CLUTTER_COUNTER_INC(A,B) G_STMT_START { } G_STMT_END
|
|
|
|
#define CLUTTER_COUNTER_DEC(A,B) G_STMT_START { } G_STMT_END
|
|
|
|
#define CLUTTER_TIMER_START(A,B) G_STMT_START { } G_STMT_END
|
|
|
|
#define CLUTTER_TIMER_STOP(A,B) G_STMT_START { } G_STMT_END
|
|
|
|
|
|
|
|
#define _clutter_uprof_init G_STMT_START { } G_STMT_END
|
|
|
|
#define _clutter_profile_suspend G_STMT_START { } G_STMT_END
|
|
|
|
#define _clutter_profile_resume G_STMT_START { } G_STMT_END
|
2010-06-21 10:36:46 -04:00
|
|
|
|
2009-03-30 11:41:02 -04:00
|
|
|
#endif /* CLUTTER_ENABLE_PROFILE */
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* _CLUTTER_PROFILE_H_ */
|