From ce287201d33725ef54e2cfbae00992788c9df067 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sat, 15 Feb 2025 20:52:57 +0900 Subject: [PATCH] [qfcc] Get sampled image types working I'd forgotten to set the sampled field and messed up is_sampled_image(). --- tools/qfcc/source/image.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tools/qfcc/source/image.c b/tools/qfcc/source/image.c index 475741122..93b0fdabf 100644 --- a/tools/qfcc/source/image.c +++ b/tools/qfcc/source/image.c @@ -400,6 +400,10 @@ sampler_type (const type_t *type) return &type_int; } auto image = imageset.a[type->handle.extra]; + if (image.sampled > 1) { + error (0, "incompatible type for sampler"); + } + image.sampled = 1; return create_image_type (&image, &type_sampled_image); } @@ -412,5 +416,5 @@ bool is_image (const type_t *type) bool is_sampled_image (const type_t *type) { type = unalias_type (type); - return is_handle (type) && type->handle.type == &type_image; + return is_handle (type) && type->handle.type == &type_sampled_image; }