mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-06-02 00:56:55 +02:00
Add touch input support, add fast scrolling support for coverflow display mode, fix use after free bug in banner list mode
This commit is contained in:
@@ -5,13 +5,9 @@
|
||||
|
||||
class IconButton3DView : public IconButtonView
|
||||
{
|
||||
SHARED_ONLY(IconButton3DView)
|
||||
|
||||
public:
|
||||
IconButton3DView() : IconButtonView() { }
|
||||
|
||||
IconButton3DView(Type type, State state,
|
||||
md::sys::color backgroundColor, const MaterialColorScheme* materialColorScheme)
|
||||
: IconButtonView(type, state, backgroundColor, materialColorScheme) { }
|
||||
|
||||
void Draw(GraphicsContext& graphicsContext) override;
|
||||
|
||||
static void UploadGraphics(const VramContext& vramContext);
|
||||
@@ -19,5 +15,9 @@ public:
|
||||
private:
|
||||
static u32 sSelectorTextureVramOffset;
|
||||
|
||||
IconButton3DView(Type type, State state,
|
||||
md::sys::color backgroundColor, const MaterialColorScheme* materialColorScheme)
|
||||
: IconButtonView(type, state, backgroundColor, materialColorScheme) { }
|
||||
|
||||
void DrawSelector(GraphicsContext& graphicsContext, const Rgb<8, 8, 8>& color);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user