mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-01-30 21:32:50 +00:00
Test
This commit is contained in:
parent
cd2eb59da6
commit
303a9de045
@ -165,22 +165,6 @@ namespace ppu_func_detail
|
|||||||
template<void* func, typename RT, typename... T>
|
template<void* func, typename RT, typename... T>
|
||||||
struct func_binder;
|
struct func_binder;
|
||||||
|
|
||||||
template<void* func, typename... T>
|
|
||||||
struct func_binder<func, void, T...>
|
|
||||||
{
|
|
||||||
typedef void(*func_t)(T...);
|
|
||||||
|
|
||||||
static void do_call(PPUThread& CPU, func_t _func)
|
|
||||||
{
|
|
||||||
call<void>(_func, iterate<0, 0, 0, T...>(CPU));
|
|
||||||
}
|
|
||||||
|
|
||||||
static void do_call(PPUThread& CPU)
|
|
||||||
{
|
|
||||||
do_call(CPU, (func_t)func);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
template<void* func, typename... T>
|
template<void* func, typename... T>
|
||||||
struct func_binder<func, void, PPUThread&, T...>
|
struct func_binder<func, void, PPUThread&, T...>
|
||||||
{
|
{
|
||||||
@ -197,14 +181,14 @@ namespace ppu_func_detail
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
template<void* func, typename RT, typename... T>
|
template<void* func, typename... T>
|
||||||
struct func_binder
|
struct func_binder<func, void, T...>
|
||||||
{
|
{
|
||||||
typedef RT(*func_t)(T...);
|
typedef void(*func_t)(T...);
|
||||||
|
|
||||||
static void do_call(PPUThread& CPU, func_t _func)
|
static void do_call(PPUThread& CPU, func_t _func)
|
||||||
{
|
{
|
||||||
bind_result<RT, result_type<RT>::value>::func(CPU, call<RT>(_func, iterate<0, 0, 0, T...>(CPU)));
|
call<void>(_func, iterate<0, 0, 0, T...>(CPU));
|
||||||
}
|
}
|
||||||
|
|
||||||
static void do_call(PPUThread& CPU)
|
static void do_call(PPUThread& CPU)
|
||||||
@ -229,6 +213,22 @@ namespace ppu_func_detail
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
template<void* func, typename RT, typename... T>
|
||||||
|
struct func_binder
|
||||||
|
{
|
||||||
|
typedef RT(*func_t)(T...);
|
||||||
|
|
||||||
|
static void do_call(PPUThread& CPU, func_t _func)
|
||||||
|
{
|
||||||
|
bind_result<RT, result_type<RT>::value>::func(CPU, call<RT>(_func, iterate<0, 0, 0, T...>(CPU)));
|
||||||
|
}
|
||||||
|
|
||||||
|
static void do_call(PPUThread& CPU)
|
||||||
|
{
|
||||||
|
do_call(CPU, (func_t)func);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
template<void* func, typename RT, typename... T>
|
template<void* func, typename RT, typename... T>
|
||||||
ps3_func_caller _bind_func(RT(*_func)(T...))
|
ps3_func_caller _bind_func(RT(*_func)(T...))
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user