Home | History | Annotate | Download | only in cts
      1 #pragma version(1)
      2 #pragma rs java_package_name(android.renderscript.cts)
      3 
      4 void ceil_f32_1(const float *in, float *out) {
      5     *out = ceil(*in);
      6 }
      7 
      8 void ceil_f32_2(const float2 *in, float2 *out) {
      9     *out = ceil(*in);
     10 }
     11 
     12 void ceil_f32_3(const float3 *in, float3 *out) {
     13     *out = ceil(*in);
     14 }
     15 
     16 void ceil_f32_4(const float4 *in, float4 *out) {
     17     *out = ceil(*in);
     18 }
     19