frameworks/compile/slang/tests/P_static_struct/static_struct.rscript

12 lines
193 B
Plaintext
Raw Permalink Normal View History

2025-08-25 08:17:13 +08:00
// -target-api 12
#pragma version(1)
#pragma rs java_package_name(com.example);
typedef struct Plane_s {
float3 point;
} Plane;
static Plane carouselPlane = {
{ 0.0f, 0.0f, 0.0f }
};