mirror of
https://github.com/Redot-Engine/redot-engine.git
synced 2025-12-06 15:21:56 -05:00
Fix mat2 alignment
This commit is contained in:
@@ -70,8 +70,10 @@ static int _get_datatype_size(SL::DataType p_type) {
|
||||
case SL::TYPE_VEC2: return 8;
|
||||
case SL::TYPE_VEC3: return 12;
|
||||
case SL::TYPE_VEC4: return 16;
|
||||
case SL::TYPE_MAT2: return 16;
|
||||
case SL::TYPE_MAT3: return 44;
|
||||
case SL::TYPE_MAT2:
|
||||
return 24; //4 * 4 + 4 * 2
|
||||
case SL::TYPE_MAT3:
|
||||
return 44; // 4 * 4 + 4 * 4 + 4 * 3
|
||||
case SL::TYPE_MAT4: return 64;
|
||||
case SL::TYPE_SAMPLER2D: return 16;
|
||||
case SL::TYPE_ISAMPLER2D: return 16;
|
||||
|
||||
Reference in New Issue
Block a user