equal
deleted
inserted
replaced
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 } |