mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-12-04 03:32:29 +00:00
15 lines
149 B
C
15 lines
149 B
C
#pragma once
|
|
|
|
#include "vec3.h"
|
|
|
|
/* __declspec(align(16)) */ struct Ray
|
|
{
|
|
Vec3 origin;
|
|
int pad;
|
|
Vec3 dir;
|
|
int pad2;
|
|
Vec3 invdir;
|
|
int pad3;
|
|
};
|
|
|