2022-11-30 16:39:42 +11:00
|
|
|
use crate::framebuffer::GLImage;
|
2022-11-30 17:38:05 +11:00
|
|
|
use librashader_common::{FilterMode, WrapMode};
|
2022-11-27 18:10:11 +11:00
|
|
|
|
|
|
|
#[derive(Default, Debug, Copy, Clone)]
|
|
|
|
pub struct Texture {
|
2022-11-30 16:39:42 +11:00
|
|
|
pub image: GLImage,
|
2022-11-27 18:10:11 +11:00
|
|
|
pub filter: FilterMode,
|
|
|
|
pub mip_filter: FilterMode,
|
|
|
|
pub wrap_mode: WrapMode,
|
|
|
|
}
|
2022-11-30 11:36:09 +11:00
|
|
|
|
|
|
|
impl Texture {
|
|
|
|
pub fn is_bound(&self) -> bool {
|
2022-11-30 17:38:05 +11:00
|
|
|
self.image.handle != 0
|
2022-11-30 11:36:09 +11:00
|
|
|
}
|
2022-11-30 17:38:05 +11:00
|
|
|
}
|