Lines Matching defs:file
8 * you may not use this file except in compliance with the License.
20 * \file
26 * \file gl4cGlSpirvTests.cpp
55 FILE* file = fopen(filename, "wb");
56 if (file)
61 fwrite((void*)&count, 1, 1, file);
64 fwrite((void*)&binary.shaderTypes[i], 1, sizeof(ShaderType), file);
69 fwrite((void*)&strLen, 1, 1, file);
70 fwrite((void*)binary.shaderEntryPoints[i].data(), 1, strLen, file);
74 fwrite((void*)binary.binary.data(), 1, binary.binary.size() * 4, file);
75 fclose(file);