Home | History | Annotate | Download | only in vulkan

Lines Matching refs:sourcelength

426 	deInt32			sourcelength;
453 if (ok) ok = fread(&sourcelength, 1, 4, file) == 4;
454 if (ok && sourcelength > 0)
456 source = new char[sourcelength + 1];
457 ok = fread(source, 1, sourcelength, file) == (size_t)sourcelength;
458 source[sourcelength] = 0;