Lines Matching refs:pcount
6782 int pcount;
6791 pcount = g->w * g->h;
6792 g->out = (stbi_uc *) stbi__malloc(4 * pcount);
6793 g->background = (stbi_uc *) stbi__malloc(4 * pcount);
6794 g->history = (stbi_uc *) stbi__malloc(pcount);
6801 memset(g->out, 0x00, 4 * pcount);
6802 memset(g->background, 0x00, 4 * pcount); // state of the background (starts transparent)
6803 memset(g->history, 0x00, pcount); // pixels that were affected previous frame
6808 pcount = g->w * g->h;
6815 for (pi = 0; pi < pcount; ++pi) {
6822 for (pi = 0; pi < pcount; ++pi) {
6893 pcount = g->w * g->h;
6896 for (pi = 0; pi < pcount; ++pi) {