summaryrefslogtreecommitdiff
path: root/engine/src/shader/cursor.rs
diff options
context:
space:
mode:
Diffstat (limited to 'engine/src/shader/cursor.rs')
-rw-r--r--engine/src/shader/cursor.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/src/shader/cursor.rs b/engine/src/shader/cursor.rs
index b5ba4e0..0522858 100644
--- a/engine/src/shader/cursor.rs
+++ b/engine/src/shader/cursor.rs
@@ -1,7 +1,7 @@
use crate::asset::Handle as AssetHandle;
-use crate::image::Image;
use crate::matrix::Matrix;
use crate::shader::{TypeKind, TypeLayout, VariableLayout};
+use crate::texture::Texture;
use crate::vector::Vec3;
/// Shader cursor
@@ -116,7 +116,7 @@ pub enum BindingValue
Float(f32),
FVec3(Vec3<f32>),
FMat4x4(Matrix<f32, 4, 4>),
- Texture(AssetHandle<Image>),
+ Texture(AssetHandle<Texture>),
}
impl From<u32> for BindingValue