buffer: add a NONE flag to eBufferCapability (#11)

ensure we dont cast out of range in caps(),
return (Aquamarine::eBufferCapability)0; in GBM.cpp
This commit is contained in:
Tom Englund 2024-07-11 17:09:48 +02:00 committed by GitHub
parent 1ae9ead82c
commit c3bfe3de89
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -8,6 +8,7 @@
namespace Aquamarine {
enum eBufferCapability : uint32_t {
BUFFER_CAPABILITY_NONE = 0,
BUFFER_CAPABILITY_DATAPTR = (1 << 0),
};