0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-04-02 23:41:28 +00:00

[qfcc] Get sampled image types working

I'd forgotten to set the sampled field and messed up is_sampled_image().
This commit is contained in:
Bill Currie 2025-02-15 20:52:57 +09:00
parent bc00bd0a0c
commit ce287201d3

View file

@ -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;
}