src/blitter/32bpp_base.cpp
changeset 7456 0c0636370335
parent 7447 2537a074be26
child 7481 699607d457a0
equal deleted inserted replaced
7455:d6f39d44664b 7456:0c0636370335
   175 
   175 
   176 int Blitter_32bppBase::BufferSize(int width, int height)
   176 int Blitter_32bppBase::BufferSize(int width, int height)
   177 {
   177 {
   178 	return width * height * sizeof(uint32);
   178 	return width * height * sizeof(uint32);
   179 }
   179 }
       
   180 
       
   181 void Blitter_32bppBase::PaletteAnimate(uint start, uint count)
       
   182 {
       
   183 	/* By default, 32bpp doesn't have palette animation */
       
   184 }
       
   185 
       
   186 Blitter::PaletteAnimation Blitter_32bppBase::UsePaletteAnimation()
       
   187 {
       
   188 	return Blitter::PALETTE_ANIMATION_NONE;
       
   189 }