Lines Matching refs:attributeBuffer
89 c->attributeBuffer=(char*)malloc(width*height); in vcGetConsole()
90 memset(c->attributeBuffer,0x07,width*height); in vcGetConsole()
92 c->attributeBuffer=NULL; in vcGetConsole()
169 if(c->attributeBuffer) in vcScroll()
170 memmove(c->attributeBuffer, in vcScroll()
171 c->attributeBuffer+(c->height-lineCount)*c->width, in vcScroll()
181 if(c->attributeBuffer) in vcScroll()
182 memmove(c->attributeBuffer-lineCount*c->width, in vcScroll()
183 c->attributeBuffer, in vcScroll()
194 if(c->attributeBuffer) in vcScroll()
195 memset(c->attributeBuffer+y1/c->cHeight*c->width,0x07, in vcScroll()
220 if(c->attributeBuffer) { in vcPutChar()
221 unsigned char colour=c->attributeBuffer[c->x+c->y*c->width]; in vcPutChar()
262 if(c->attributeBuffer) in vcPutCharColour()
263 c->attributeBuffer[c->x+c->y*c->width]=foreColour|(backColour<<4); in vcPutCharColour()