mirror of
https://github.com/bkaradzic/bgfx.git
synced 2026-09-18 08:24:29 +00:00
Allow negative x/y in bgfx::setViewRect. (#3848)
This commit is contained in:
committed by
GitHub
parent
7551ac61c5
commit
ce18bdb6c6
@@ -58,6 +58,8 @@ local function convert_type_0(arg)
|
||||
return arg.ctype:gsub("int32_t", "int32")
|
||||
elseif hasPrefix(arg.ctype, "uint16_t") then
|
||||
return arg.ctype:gsub("uint16_t", "uint16")
|
||||
elseif hasPrefix(arg.ctype, "int16_t") then
|
||||
return arg.ctype:gsub("int16_t", "int16")
|
||||
elseif hasPrefix(arg.ctype, "uint8_t") then
|
||||
return arg.ctype:gsub("uint8_t", "uint8")
|
||||
elseif hasPrefix(arg.ctype, "uintptr_t") then
|
||||
|
||||
Reference in New Issue
Block a user