mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 10:32:29 +00:00
feat(region): add region functions
This commit is contained in:
parent
71ce2471ac
commit
cdd3413a1b
5 changed files with 357 additions and 0 deletions
15
storm/Region.hpp
Normal file
15
storm/Region.hpp
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#ifndef STORM_REGION_HPP
|
||||
#define STORM_REGION_HPP
|
||||
|
||||
#include "storm/region/Types.hpp"
|
||||
#include <cstdint>
|
||||
|
||||
void SRgnCombineRectf(HSRGN handle, RECTF* rect, void* param, int32_t combineMode);
|
||||
|
||||
void SRgnCreate(HSRGN* handlePtr, uint32_t reserved);
|
||||
|
||||
void SRgnDelete(HSRGN handle);
|
||||
|
||||
void SRgnGetBoundingRectf(HSRGN handle, RECTF* rect);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue