mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-07-01 15:48:18 +00:00
Removed stale debugging code.
This commit is contained in:
parent
d72a75f2fc
commit
8ffb395f95
|
@ -210,12 +210,6 @@ namespace CHeaderToXML
|
||||||
// where [parameter name] can either be inside comments (/* ... */) or not.
|
// where [parameter name] can either be inside comments (/* ... */) or not.
|
||||||
var get_param = new Regex(@"(\w+\s\(\*\w+\)\s*\(.*\)\s*(/\*.*?\*/|\w+)? | (const\s)?\w+\s*\**\s*(/\*.*?\*/|\w+(\[.*?\])?)),?", RegexOptions.IgnorePatternWhitespace);
|
var get_param = new Regex(@"(\w+\s\(\*\w+\)\s*\(.*\)\s*(/\*.*?\*/|\w+)? | (const\s)?\w+\s*\**\s*(/\*.*?\*/|\w+(\[.*?\])?)),?", RegexOptions.IgnorePatternWhitespace);
|
||||||
|
|
||||||
#if true
|
|
||||||
if (funcname == "EnqueueNativeKernel")
|
|
||||||
Debugger.Break();
|
|
||||||
var ars = get_param.Matches(paramaters_string).OfType<Match>().Select(m => m.Captures[0].Value.TrimEnd(','));
|
|
||||||
#endif
|
|
||||||
|
|
||||||
var fun =
|
var fun =
|
||||||
new
|
new
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue