prototype for spirv linking
This commit is contained in:
@@ -353,6 +353,11 @@ static inline void mspv_write_op( mspv_spv *as, SpvOp op, uint16_t ops )
|
||||
mspv_array_push((*as), op | (ops+1) << 16);
|
||||
};
|
||||
|
||||
static inline uint32_t mspv_make_op( SpvOp op, uint16_t ops )
|
||||
{
|
||||
return op | (ops+1) << 16;
|
||||
};
|
||||
|
||||
static inline void mspv_write_string( mspv_spv *as, mspv_string_view s )
|
||||
{
|
||||
uint32_t u;
|
||||
|
||||
Reference in New Issue
Block a user