コード例 #1
0
ファイル: fe_present.cpp プロジェクト: omegaman1/attract
FeImage *FeMonitor::add_artwork(const char *l, int x, int y, int w, int h )
{
	FePresent *fep = FePresent::script_get_fep();

	if ( fep )
		return fep->add_image( true, l, x, y, w, h, elements );

	return NULL;
}
コード例 #2
0
ファイル: fe_present.cpp プロジェクト: omegaman1/attract
FeImage *FeMonitor::add_image(const char *n, int x, int y, int w, int h)
{
	FePresent *fep = FePresent::script_get_fep();

	if ( fep )
		return fep->add_image( false, n, x, y, w, h, elements );

	return NULL;
}