Skip to content

Commit 711fd46

Browse files
committed
a
Signed-off-by: sagudev <16504129+sagudev@users.noreply.github.com>
1 parent 0311b8f commit 711fd46

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/platform/egl/context.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,11 @@ impl Device {
121121
Ok(())
122122
})?;
123123

124-
println!("{:?}", context::get_proc_address("glGetString"));
124+
println!(
125+
"glGetString: {:?}",
126+
context::get_proc_address("glGetString")
127+
);
128+
println!("glGetError: {:?}", context::get_proc_address("glGetError"));
125129
let glGetError: extern "C" fn() -> u32 =
126130
unsafe { std::mem::transmute(context::get_proc_address("glGetError")) };
127131
let glGetString: extern "C" fn(u32) -> *const u8 =

0 commit comments

Comments
 (0)