MCPcopy Create free account
hub / github.com/GPUOpen-Effects/GeometryFX / serialize_float4

Function serialize_float4

amd_lib/shared/d3d11/src/AMD_Serialize.cpp:63–67  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

61 }
62
63 void serialize_float4(FILE * file, const char * name, float * v)
64 {
65 fprintf(file, "#%s = %.10f %.10f %.10f %.10f; \n", name, v[0], v[1], v[2], v[3]);
66 serialize_uint4(file, name, (uint *) v);
67 }
68
69 void serialize_float4x4(FILE * file, const char * name, float * v)
70 {

Callers 1

serialize_float4x4Function · 0.85

Calls 1

serialize_uint4Function · 0.85

Tested by

no test coverage detected