5a04d2b745db7af59417e969690afd6b18a39079
[mesa.git] / src / gallium / state_trackers / clover / api / sampler.cpp
1 //
2 // Copyright 2012 Francisco Jerez
3 //
4 // Permission is hereby granted, free of charge, to any person obtaining a
5 // copy of this software and associated documentation files (the "Software"),
6 // to deal in the Software without restriction, including without limitation
7 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 // and/or sell copies of the Software, and to permit persons to whom the
9 // Software is furnished to do so, subject to the following conditions:
10 //
11 // The above copyright notice and this permission notice shall be included in
12 // all copies or substantial portions of the Software.
13 //
14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 // OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 // ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 // OTHER DEALINGS IN THE SOFTWARE.
21 //
22
23 #include "api/util.hpp"
24 #include "core/sampler.hpp"
25
26 using namespace clover;
27
28 CLOVER_API cl_sampler
29 clCreateSampler(cl_context d_ctx, cl_bool norm_mode,
30 cl_addressing_mode addr_mode, cl_filter_mode filter_mode,
31 cl_int *r_errcode) try {
32 auto &ctx = obj(d_ctx);
33
34 ret_error(r_errcode, CL_SUCCESS);
35 return new sampler(ctx, norm_mode, addr_mode, filter_mode);
36
37 } catch (error &e) {
38 ret_error(r_errcode, e);
39 return NULL;
40 }
41
42 CLOVER_API cl_int
43 clRetainSampler(cl_sampler d_s) try {
44 obj(d_s).retain();
45 return CL_SUCCESS;
46
47 } catch (error &e) {
48 return e.get();
49 }
50
51 CLOVER_API cl_int
52 clReleaseSampler(cl_sampler d_s) try {
53 if (obj(d_s).release())
54 delete pobj(d_s);
55
56 return CL_SUCCESS;
57
58 } catch (error &e) {
59 return e.get();
60 }
61
62 CLOVER_API cl_int
63 clGetSamplerInfo(cl_sampler d_s, cl_sampler_info param,
64 size_t size, void *r_buf, size_t *r_size) try {
65 property_buffer buf { r_buf, size, r_size };
66 auto &s = obj(d_s);
67
68 switch (param) {
69 case CL_SAMPLER_REFERENCE_COUNT:
70 buf.as_scalar<cl_uint>() = s.ref_count();
71 break;
72
73 case CL_SAMPLER_CONTEXT:
74 buf.as_scalar<cl_context>() = desc(s.ctx);
75 break;
76
77 case CL_SAMPLER_NORMALIZED_COORDS:
78 buf.as_scalar<cl_bool>() = s.norm_mode();
79 break;
80
81 case CL_SAMPLER_ADDRESSING_MODE:
82 buf.as_scalar<cl_addressing_mode>() = s.addr_mode();
83 break;
84
85 case CL_SAMPLER_FILTER_MODE:
86 buf.as_scalar<cl_filter_mode>() = s.filter_mode();
87 break;
88
89 default:
90 throw error(CL_INVALID_VALUE);
91 }
92
93 return CL_SUCCESS;
94
95 } catch (error &e) {
96 return e.get();
97 }