blob: 5c97ca6632c3edb10bd952f1321f09007eaeb4e4 [file] [log] [blame]
// This file is automatically generated from
// frameworks/rs/tests/java_api/RSUnitTests/RSUnitTests.py
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "shared.rsh"
#pragma rs_fp_relaxed
uchar4 u4 = 4;
int4 gi4 = {2, 2, 2, 2};
void int4_test() {
bool failed = false;
int4 i4 = {u4.x, u4.y, u4.z, u4.w};
i4 *= gi4;
rsDebug("i4.x", i4.x);
rsDebug("i4.y", i4.y);
rsDebug("i4.z", i4.z);
rsDebug("i4.w", i4.w);
_RS_ASSERT(i4.x == 8);
_RS_ASSERT(i4.y == 8);
_RS_ASSERT(i4.z == 8);
_RS_ASSERT(i4.w == 8);
if (failed) {
rsSendToClientBlocking(RS_MSG_TEST_FAILED);
}
else {
rsSendToClientBlocking(RS_MSG_TEST_PASSED);
}
}