wayland/core: move to new impl (#6268)
* wayland/core/dmabuf: move to new impl it's the final countdown
This commit is contained in:
parent
c31d9ef417
commit
6967a31450
147 changed files with 5388 additions and 2226 deletions
|
|
@ -2,6 +2,10 @@
|
|||
|
||||
#include "../defines.hpp"
|
||||
|
||||
class IWLBuffer;
|
||||
struct SDMABUFAttrs;
|
||||
class CRegion;
|
||||
|
||||
enum TEXTURETYPE {
|
||||
TEXTURE_INVALID, // Invalid
|
||||
TEXTURE_RGBA, // 4 channels
|
||||
|
|
@ -12,13 +16,27 @@ enum TEXTURETYPE {
|
|||
class CTexture {
|
||||
public:
|
||||
CTexture();
|
||||
|
||||
CTexture(CTexture&) = delete;
|
||||
CTexture(CTexture&&) = delete;
|
||||
CTexture(const CTexture&&) = delete;
|
||||
CTexture(const CTexture&) = delete;
|
||||
|
||||
CTexture(uint32_t drmFormat, uint8_t* pixels, uint32_t stride, const Vector2D& size);
|
||||
CTexture(wlr_texture*);
|
||||
|
||||
// this ctor takes ownership of the eglImage.
|
||||
CTexture(const SDMABUFAttrs&, void* image);
|
||||
~CTexture();
|
||||
|
||||
void destroyTexture();
|
||||
void allocate();
|
||||
void update(uint32_t drmFormat, uint8_t* pixels, uint32_t stride, const CRegion& damage);
|
||||
|
||||
TEXTURETYPE m_iType = TEXTURE_RGBA;
|
||||
GLenum m_iTarget = GL_TEXTURE_2D;
|
||||
GLuint m_iTexID = 0;
|
||||
Vector2D m_vSize;
|
||||
void* m_pEglImage = nullptr;
|
||||
bool m_bNonOwning = false; // wlr
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue