Home | History | Annotate | Download | only in effects

Lines Matching defs:file

6  * found in the LICENSE file.
55 FILE* file = ::fopen("SkEmbossMask_Table.h", "w");
56 SkASSERT(file);
57 ::fprintf(file, "#include \"SkTypes.h\"\n\n");
58 ::fprintf(file, "static const U16 gInvSqrtTable[128 * 128] = {\n");
62 ::fprintf(file, "\t");
66 ::fprintf(file, "0x%04X", value);
68 ::fprintf(file, ", ");
71 ::fprintf(file, "\n");
75 ::fprintf(file, "};\n#define kDeltaUsedToBuildTable\t%d\n", kDelta);
76 ::fclose(file);