Bug 491

Summary: createImage3d incorrect arguments/bugs
Product: [JogAmp] Jocl Reporter: notzed
Component: openclAssignee: Michael Bien <bienator>
Status: VERIFIED FIXED    
Severity: normal    
Priority: ---    
Version: 1   
Hardware: All   
OS: all   
Type: --- SCM Refs:
Workaround: ---

Description notzed 2011-04-04 04:23:50 CEST
CLContext.createImage3d(width, height, depth, rowStride, format, memflags) incorrectly ignores the depth argument and uses rowStride instead.

fix: drop rowStride from argument list and invoke callee with depth.
Comment 1 Michael Bien 2011-04-04 20:27:24 CEST
fixed in commit
https://github.com/mbien/jocl/commit/907e4a1f9077f4ce5d2a8f98b99816f752ce30ce
all image3d factory methods have now a depth parameter, optional arguments are overloaded properly.