2014-07-22 14:31:30 +02:00
|
|
|
#include "graphics/tinygl/zrect.h"
|
|
|
|
|
|
|
|
namespace Graphics {
|
|
|
|
|
2014-07-22 20:26:42 +02:00
|
|
|
DrawCall::DrawCall(DrawCallType type) : _type(type) {
|
|
|
|
}
|
2014-07-22 14:31:30 +02:00
|
|
|
|
2014-07-22 20:26:42 +02:00
|
|
|
BlittingDrawCall::BlittingDrawCall(TinyGL::GLContext *c) : DrawCall(DrawCall_Blitting) {
|
2014-07-22 14:31:30 +02:00
|
|
|
|
2014-07-22 20:26:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
RasterizationDrawCall::RasterizationDrawCall(TinyGL::GLContext *c) : DrawCall(DrawCall_Rasterization) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void RasterizationDrawCall::execute() const {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void RasterizationDrawCall::execute( const Common::Rect &clippingRectangle ) const {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void BlittingDrawCall::execute() const {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void BlittingDrawCall::execute(const Common::Rect &clippingRectangle) const {
|
|
|
|
|
|
|
|
}
|
2014-07-22 14:31:30 +02:00
|
|
|
}
|