mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-07 17:20:14 +01:00
* game_list: add custom config indicator * icon resize: get rid of duplicate call (great performance boost) * icon resize: only save on slider release or clicks (performance) refactoring shenanigans * game_list: skip filtered out games in Refresh (performance) * settings_dialog: remove unnecessary show() that caused glitches * gs_frame: add disableMouse setting * fix travis warnings
19 lines
403 B
C++
19 lines
403 B
C++
#pragma once
|
|
|
|
#include "stdafx.h"
|
|
#include "gs_frame.h"
|
|
|
|
class gl_gs_frame : public gs_frame
|
|
{
|
|
private:
|
|
QSurfaceFormat m_format;
|
|
|
|
public:
|
|
gl_gs_frame(int w, int h, QIcon appIcon, bool disableMouse);
|
|
|
|
void* make_context() override;
|
|
void set_current(draw_context_t context) override;
|
|
void delete_context(void* context) override;
|
|
void flip(draw_context_t context, bool skip_frame=false) override;
|
|
};
|