From b24bd93ae5344a284deb2b3bd455897bd6f3d772 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Sun, 24 Nov 2024 23:16:04 +0900 Subject: [PATCH] internal/shaderir: typo --- internal/shaderir/uniform.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/shaderir/uniform.go b/internal/shaderir/uniform.go index 2eb38d16e..a0bde6fe4 100644 --- a/internal/shaderir/uniform.go +++ b/internal/shaderir/uniform.go @@ -99,9 +99,9 @@ func (p *Program) UniformOffsetsInDWords() []int { headInDWords += n case Struct: // TODO: Implement this - panic("hlsl: offset for a struct is not implemented yet") + panic("shaderir: offset for a struct is not implemented yet") default: - panic(fmt.Sprintf("hlsl: unexpected type: %s", u.String())) + panic(fmt.Sprintf("shaderir: unexpected type: %s", u.String())) } }