axmol/core/renderer/backend/PixelBufferDescriptor.h

25 lines
546 B
C
Raw Normal View History

#pragma once
#include "base/CCData.h"
#include "Macros.h"
#include "Types.h"
CC_BACKEND_BEGIN
struct PixelBufferDescriptor
{
2021-12-25 10:04:45 +08:00
PixelBufferDescriptor() = default;
PixelBufferDescriptor(const PixelBufferDescriptor&) = default;
2021-12-25 10:04:45 +08:00
PixelBufferDescriptor(PixelBufferDescriptor&& rhs)
: _data(std::move(rhs._data)), _width(rhs._width), _height(rhs._height)
{}
2020-09-10 21:38:24 +08:00
explicit operator bool() const { return !_data.isNull(); }
2021-12-25 10:04:45 +08:00
Data _data;
2021-12-25 10:04:45 +08:00
int _width = 0;
2020-09-11 14:45:45 +08:00
int _height = 0;
};
CC_BACKEND_END