Imported Upstream version 0.13.2+dsfg1
This commit is contained in:
commit
fb3990e9e5
2036 changed files with 287360 additions and 0 deletions
27
plugins/linux-capture/xcompcap-main.hpp
Normal file
27
plugins/linux-capture/xcompcap-main.hpp
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
#pragma once
|
||||
|
||||
struct XCompcapMain_private;
|
||||
|
||||
class XCompcapMain
|
||||
{
|
||||
public:
|
||||
static bool init();
|
||||
static void deinit();
|
||||
|
||||
static obs_properties_t *properties();
|
||||
static void defaults(obs_data_t *settings);
|
||||
|
||||
XCompcapMain(obs_data_t *settings, obs_source_t *source);
|
||||
~XCompcapMain();
|
||||
|
||||
void updateSettings(obs_data_t *settings);
|
||||
|
||||
void tick(float seconds);
|
||||
void render(gs_effect_t *effect);
|
||||
|
||||
uint32_t width();
|
||||
uint32_t height();
|
||||
|
||||
private:
|
||||
XCompcapMain_private *p;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue