I'm creating an image using this
texture = userdata("i64", 3, texture_width * texture_height )
and setting it up like this
p.texture:set(0,i,flr(xx),flr(yy),flr(1+(color_offset+(noise_value+1)*5)%30))
which I can draw with
pset(p.texture)
and is properly drawn (it's the rectangular image)

But I don't need floats! I wanted to define it with i32 instead, like this
texture = userdata("i32", 3, texture_width * texture_height)
But then it's not drawn at all:

Doesn't pset work with i32 userdata? Or should it and I'm doing something wrong? The only thing that changes here is how I define texture with f64 or i32...



Yep, batch ops only work with floats. Shouldn't be too big of an issue for most cases though.
You might get holes in your sphere if you draw with a batch pset if the scale is too big, so drawing with tline3d would also be an option.
[Please log in to post a comment]