Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update bindings to 2.5.0 #91

Merged
merged 1 commit into from
Jun 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 66 additions & 6 deletions crankstart-sys/src/bindings_aarch64.rs
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,8 @@ pub struct playdate_graphics {
pub clear: ::core::option::Option<unsafe extern "C" fn(color: LCDColor)>,
pub setBackgroundColor: ::core::option::Option<unsafe extern "C" fn(color: LCDSolidColor)>,
pub setStencil: ::core::option::Option<unsafe extern "C" fn(stencil: *mut LCDBitmap)>,
pub setDrawMode: ::core::option::Option<unsafe extern "C" fn(mode: LCDBitmapDrawMode)>,
pub setDrawMode:
::core::option::Option<unsafe extern "C" fn(mode: LCDBitmapDrawMode) -> LCDBitmapDrawMode>,
pub setDrawOffset:
::core::option::Option<unsafe extern "C" fn(dx: ctypes::c_int, dy: ctypes::c_int)>,
pub setClipRect: ::core::option::Option<
Expand Down Expand Up @@ -653,14 +654,31 @@ pub struct playdate_graphics {
unsafe extern "C" fn(data: *mut LCDFontData, wide: ctypes::c_int) -> *mut LCDFont,
>,
pub getTextTracking: ::core::option::Option<unsafe extern "C" fn() -> ctypes::c_int>,
pub setPixel: ::core::option::Option<
unsafe extern "C" fn(x: ctypes::c_int, y: ctypes::c_int, c: LCDColor),
>,
pub getBitmapPixel: ::core::option::Option<
unsafe extern "C" fn(
bitmap: *mut LCDBitmap,
x: ctypes::c_int,
y: ctypes::c_int,
) -> LCDSolidColor,
>,
pub getBitmapTableInfo: ::core::option::Option<
unsafe extern "C" fn(
table: *mut LCDBitmapTable,
count: *mut ctypes::c_int,
width: *mut ctypes::c_int,
),
>,
}
#[test]
fn bindgen_test_layout_playdate_graphics() {
const UNINIT: ::core::mem::MaybeUninit<playdate_graphics> = ::core::mem::MaybeUninit::uninit();
let ptr = UNINIT.as_ptr();
assert_eq!(
::core::mem::size_of::<playdate_graphics>(),
480usize,
504usize,
concat!("Size of: ", stringify!(playdate_graphics))
);
assert_eq!(
Expand Down Expand Up @@ -1268,6 +1286,36 @@ fn bindgen_test_layout_playdate_graphics() {
stringify!(getTextTracking)
)
);
assert_eq!(
unsafe { ::core::ptr::addr_of!((*ptr).setPixel) as usize - ptr as usize },
480usize,
concat!(
"Offset of field: ",
stringify!(playdate_graphics),
"::",
stringify!(setPixel)
)
);
assert_eq!(
unsafe { ::core::ptr::addr_of!((*ptr).getBitmapPixel) as usize - ptr as usize },
488usize,
concat!(
"Offset of field: ",
stringify!(playdate_graphics),
"::",
stringify!(getBitmapPixel)
)
);
assert_eq!(
unsafe { ::core::ptr::addr_of!((*ptr).getBitmapTableInfo) as usize - ptr as usize },
496usize,
concat!(
"Offset of field: ",
stringify!(playdate_graphics),
"::",
stringify!(getBitmapTableInfo)
)
);
}
impl Default for playdate_graphics {
fn default() -> Self {
Expand Down Expand Up @@ -5366,6 +5414,7 @@ pub struct playdate_sound_sample {
format: SoundFormat,
sampleRate: u32,
byteCount: ctypes::c_int,
shouldFreeData: ctypes::c_int,
) -> *mut AudioSample,
>,
pub getData: ::core::option::Option<
Expand Down Expand Up @@ -7254,7 +7303,7 @@ pub struct playdate_sound_sequence {
loops: ctypes::c_int,
),
>,
pub getTempo:
pub getTempo_deprecated:
::core::option::Option<unsafe extern "C" fn(seq: *mut SoundSequence) -> ctypes::c_int>,
pub setTempo:
::core::option::Option<unsafe extern "C" fn(seq: *mut SoundSequence, stepsPerSecond: f32)>,
Expand Down Expand Up @@ -7298,6 +7347,7 @@ pub struct playdate_sound_sequence {
playNotes: ctypes::c_int,
),
>,
pub getTempo: ::core::option::Option<unsafe extern "C" fn(seq: *mut SoundSequence) -> f32>,
}
#[test]
fn bindgen_test_layout_playdate_sound_sequence() {
Expand All @@ -7306,7 +7356,7 @@ fn bindgen_test_layout_playdate_sound_sequence() {
let ptr = UNINIT.as_ptr();
assert_eq!(
::core::mem::size_of::<playdate_sound_sequence>(),
152usize,
160usize,
concat!("Size of: ", stringify!(playdate_sound_sequence))
);
assert_eq!(
Expand Down Expand Up @@ -7375,13 +7425,13 @@ fn bindgen_test_layout_playdate_sound_sequence() {
)
);
assert_eq!(
unsafe { ::core::ptr::addr_of!((*ptr).getTempo) as usize - ptr as usize },
unsafe { ::core::ptr::addr_of!((*ptr).getTempo_deprecated) as usize - ptr as usize },
48usize,
concat!(
"Offset of field: ",
stringify!(playdate_sound_sequence),
"::",
stringify!(getTempo)
stringify!(getTempo_deprecated)
)
);
assert_eq!(
Expand Down Expand Up @@ -7504,6 +7554,16 @@ fn bindgen_test_layout_playdate_sound_sequence() {
stringify!(setCurrentStep)
)
);
assert_eq!(
unsafe { ::core::ptr::addr_of!((*ptr).getTempo) as usize - ptr as usize },
152usize,
concat!(
"Offset of field: ",
stringify!(playdate_sound_sequence),
"::",
stringify!(getTempo)
)
);
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
Expand Down
72 changes: 66 additions & 6 deletions crankstart-sys/src/bindings_playdate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,8 @@ pub struct playdate_graphics {
pub clear: ::core::option::Option<unsafe extern "C" fn(color: LCDColor)>,
pub setBackgroundColor: ::core::option::Option<unsafe extern "C" fn(color: LCDSolidColor)>,
pub setStencil: ::core::option::Option<unsafe extern "C" fn(stencil: *mut LCDBitmap)>,
pub setDrawMode: ::core::option::Option<unsafe extern "C" fn(mode: LCDBitmapDrawMode)>,
pub setDrawMode:
::core::option::Option<unsafe extern "C" fn(mode: LCDBitmapDrawMode) -> LCDBitmapDrawMode>,
pub setDrawOffset:
::core::option::Option<unsafe extern "C" fn(dx: ctypes::c_int, dy: ctypes::c_int)>,
pub setClipRect: ::core::option::Option<
Expand Down Expand Up @@ -653,14 +654,31 @@ pub struct playdate_graphics {
unsafe extern "C" fn(data: *mut LCDFontData, wide: ctypes::c_int) -> *mut LCDFont,
>,
pub getTextTracking: ::core::option::Option<unsafe extern "C" fn() -> ctypes::c_int>,
pub setPixel: ::core::option::Option<
unsafe extern "C" fn(x: ctypes::c_int, y: ctypes::c_int, c: LCDColor),
>,
pub getBitmapPixel: ::core::option::Option<
unsafe extern "C" fn(
bitmap: *mut LCDBitmap,
x: ctypes::c_int,
y: ctypes::c_int,
) -> LCDSolidColor,
>,
pub getBitmapTableInfo: ::core::option::Option<
unsafe extern "C" fn(
table: *mut LCDBitmapTable,
count: *mut ctypes::c_int,
width: *mut ctypes::c_int,
),
>,
}
#[test]
fn bindgen_test_layout_playdate_graphics() {
const UNINIT: ::core::mem::MaybeUninit<playdate_graphics> = ::core::mem::MaybeUninit::uninit();
let ptr = UNINIT.as_ptr();
assert_eq!(
::core::mem::size_of::<playdate_graphics>(),
240usize,
252usize,
concat!("Size of: ", stringify!(playdate_graphics))
);
assert_eq!(
Expand Down Expand Up @@ -1268,6 +1286,36 @@ fn bindgen_test_layout_playdate_graphics() {
stringify!(getTextTracking)
)
);
assert_eq!(
unsafe { ::core::ptr::addr_of!((*ptr).setPixel) as usize - ptr as usize },
240usize,
concat!(
"Offset of field: ",
stringify!(playdate_graphics),
"::",
stringify!(setPixel)
)
);
assert_eq!(
unsafe { ::core::ptr::addr_of!((*ptr).getBitmapPixel) as usize - ptr as usize },
244usize,
concat!(
"Offset of field: ",
stringify!(playdate_graphics),
"::",
stringify!(getBitmapPixel)
)
);
assert_eq!(
unsafe { ::core::ptr::addr_of!((*ptr).getBitmapTableInfo) as usize - ptr as usize },
248usize,
concat!(
"Offset of field: ",
stringify!(playdate_graphics),
"::",
stringify!(getBitmapTableInfo)
)
);
}
impl Default for playdate_graphics {
fn default() -> Self {
Expand Down Expand Up @@ -5366,6 +5414,7 @@ pub struct playdate_sound_sample {
format: SoundFormat,
sampleRate: u32,
byteCount: ctypes::c_int,
shouldFreeData: ctypes::c_int,
) -> *mut AudioSample,
>,
pub getData: ::core::option::Option<
Expand Down Expand Up @@ -7254,7 +7303,7 @@ pub struct playdate_sound_sequence {
loops: ctypes::c_int,
),
>,
pub getTempo:
pub getTempo_deprecated:
::core::option::Option<unsafe extern "C" fn(seq: *mut SoundSequence) -> ctypes::c_int>,
pub setTempo:
::core::option::Option<unsafe extern "C" fn(seq: *mut SoundSequence, stepsPerSecond: f32)>,
Expand Down Expand Up @@ -7298,6 +7347,7 @@ pub struct playdate_sound_sequence {
playNotes: ctypes::c_int,
),
>,
pub getTempo: ::core::option::Option<unsafe extern "C" fn(seq: *mut SoundSequence) -> f32>,
}
#[test]
fn bindgen_test_layout_playdate_sound_sequence() {
Expand All @@ -7306,7 +7356,7 @@ fn bindgen_test_layout_playdate_sound_sequence() {
let ptr = UNINIT.as_ptr();
assert_eq!(
::core::mem::size_of::<playdate_sound_sequence>(),
76usize,
80usize,
concat!("Size of: ", stringify!(playdate_sound_sequence))
);
assert_eq!(
Expand Down Expand Up @@ -7375,13 +7425,13 @@ fn bindgen_test_layout_playdate_sound_sequence() {
)
);
assert_eq!(
unsafe { ::core::ptr::addr_of!((*ptr).getTempo) as usize - ptr as usize },
unsafe { ::core::ptr::addr_of!((*ptr).getTempo_deprecated) as usize - ptr as usize },
24usize,
concat!(
"Offset of field: ",
stringify!(playdate_sound_sequence),
"::",
stringify!(getTempo)
stringify!(getTempo_deprecated)
)
);
assert_eq!(
Expand Down Expand Up @@ -7504,6 +7554,16 @@ fn bindgen_test_layout_playdate_sound_sequence() {
stringify!(setCurrentStep)
)
);
assert_eq!(
unsafe { ::core::ptr::addr_of!((*ptr).getTempo) as usize - ptr as usize },
76usize,
concat!(
"Offset of field: ",
stringify!(playdate_sound_sequence),
"::",
stringify!(getTempo)
)
);
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
Expand Down
Loading
Loading