Add baseVertex to drawIndexed; add ESpecialKey::Tab

This commit is contained in:
2021-05-24 17:24:02 -04:00
parent 55deba0913
commit d13fbda0c0
11 changed files with 46 additions and 25 deletions

View File

@@ -1006,6 +1006,8 @@ static boo::ESpecialKey translateKeycode(short code) {
return boo::ESpecialKey::Up;
case kVK_DownArrow:
return boo::ESpecialKey::Down;
case kVK_Tab:
return boo::ESpecialKey::Tab;
default:
return boo::ESpecialKey::None;
}