summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/render/bgfx/texturehandleprovider.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/osd/modules/render/bgfx/texturehandleprovider.h')
-rw-r--r--src/osd/modules/render/bgfx/texturehandleprovider.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/osd/modules/render/bgfx/texturehandleprovider.h b/src/osd/modules/render/bgfx/texturehandleprovider.h
index 03387040d7c..14fb2fe892c 100644
--- a/src/osd/modules/render/bgfx/texturehandleprovider.h
+++ b/src/osd/modules/render/bgfx/texturehandleprovider.h
@@ -25,7 +25,8 @@ public:
virtual uint16_t width() const = 0;
virtual uint16_t height() const = 0;
virtual uint16_t rowpixels() const = 0;
- virtual int convert_stride() const = 0;
+ virtual int width_div_factor() const = 0;
+ virtual int width_mul_factor() const = 0;
};
#endif // __DRAWBGFX_TEXTURE_HANDLE_PROVIDER__