-
Notifications
You must be signed in to change notification settings - Fork 199
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Raw10/12 CTS tests #1830
Raw10/12 CTS tests #1830
Conversation
test_common/harness/imageHelpers.h
Outdated
switch (format->image_channel_data_type) | ||
{ | ||
case CL_UNSIGNED_INT_RAW10_EXT: { | ||
ptr += z * slice_pitch_lod + y * row_pitch_lod + (x / 4) * 5; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we use RAW10_EXT_CLUMP_SIZE
and RAW10_EXT_CLUMP_NUM_PIXELS
throughout instead? (Same for raw12)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sure, I'll make the change
@@ -385,6 +393,7 @@ test_definition test_list[] = { | |||
ADD_TEST_VERSION(image_from_small_buffer_negative, Version(3, 0)), | |||
ADD_TEST_VERSION(image_from_buffer_fill_positive, Version(3, 0)), | |||
ADD_TEST_VERSION(image_from_buffer_read_positive, Version(3, 0)), | |||
ADD_TEST_VERSION(cl_ext_image_raw10_raw12, Version(3, 0)), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This extension could be supported from a 1.2 implementation.
Add support for cl_ext_image_raw10_raw12 testing on test_image_streams. Signed-off-by: John Kesapides <john.kesapides@arm.com>
2db755c
to
ade77d5
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for making the changes, apologies for the delay!
Merging as discussed in the May 21st teleconference. |
Add support for cl_ext_image_raw10_raw12 testing
on test_image_streams.