1
0
Fork 0
forked from wry/wry

macros: auto generate bitflag variants

This commit is contained in:
Julian Orth 2026-02-26 15:50:01 +01:00
parent 39289cdd44
commit 71294b0fd1
9 changed files with 129 additions and 71 deletions

View file

@ -713,8 +713,8 @@ pub trait AsyncShmGfxTextureCallback {
bitflags! {
StagingBufferUsecase: u32;
STAGING_UPLOAD = 1 << 0,
STAGING_DOWNLOAD = 1 << 1,
STAGING_UPLOAD,
STAGING_DOWNLOAD,
}
pub trait GfxStagingBuffer: Any {