xref: /aosp_15_r20/external/OpenCL-Headers/tests/test_cl_d3d10.h.c (revision 3cc257528f335c5672e46865a03b8ee020e5fe2d)
1*3cc25752SFrank Piva //
2*3cc25752SFrank Piva // Copyright (c) 2020 The Khronos Group Inc.
3*3cc25752SFrank Piva //
4*3cc25752SFrank Piva // Licensed under the Apache License, Version 2.0 (the "License");
5*3cc25752SFrank Piva // you may not use this file except in compliance with the License.
6*3cc25752SFrank Piva // You may obtain a copy of the License at
7*3cc25752SFrank Piva //
8*3cc25752SFrank Piva //    http://www.apache.org/licenses/LICENSE-2.0
9*3cc25752SFrank Piva //
10*3cc25752SFrank Piva // Unless required by applicable law or agreed to in writing, software
11*3cc25752SFrank Piva // distributed under the License is distributed on an "AS IS" BASIS,
12*3cc25752SFrank Piva // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13*3cc25752SFrank Piva // See the License for the specific language governing permissions and
14*3cc25752SFrank Piva // limitations under the License.
15*3cc25752SFrank Piva //
16*3cc25752SFrank Piva 
17*3cc25752SFrank Piva #include <stdio.h>
18*3cc25752SFrank Piva 
19*3cc25752SFrank Piva #if defined(_WIN32)
20*3cc25752SFrank Piva #include "CL/cl_d3d10.h"
21*3cc25752SFrank Piva #endif
22*3cc25752SFrank Piva 
main(void)23*3cc25752SFrank Piva int main( void )
24*3cc25752SFrank Piva {
25*3cc25752SFrank Piva   printf("cl_d3d10.h standalone test PASSED.\n");
26*3cc25752SFrank Piva   return 0;
27*3cc25752SFrank Piva }
28