gl_rasterizer: implement AccelerateDrawBatch to emulate PICA shader on hardware

This commit is contained in:
wwylele 2018-05-11 16:41:26 +03:00
parent 15d14be3cc
commit 9b448a0739
3 changed files with 376 additions and 36 deletions

View file

@ -66,5 +66,10 @@ public:
ScreenInfo& screen_info) {
return false;
}
/// Attempt to draw using hardware shaders
virtual bool AccelerateDrawBatch(bool is_indexed) {
return false;
}
};
} // namespace VideoCore