blob: ab085d3989a806797d11890051b5ad1a5e055467 [file] [log] [blame]
Jason Sams326e0dd2009-05-22 14:03:28 -07001/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ANDROID_RS_SAMPLER_H
18#define ANDROID_RS_SAMPLER_H
19
Jason Sams326e0dd2009-05-22 14:03:28 -070020#include "rsAllocation.h"
Jason Sams326e0dd2009-05-22 14:03:28 -070021
Miao Wang82e135c2017-02-27 23:35:35 -080022#include <vector>
23
Jason Sams326e0dd2009-05-22 14:03:28 -070024// ---------------------------------------------------------------------------
25namespace android {
26namespace renderscript {
27
28const static uint32_t RS_MAX_SAMPLER_SLOT = 16;
29
30class SamplerState;
Alex Sakhartchouk407f8ca2011-09-23 17:05:04 -070031/*****************************************************************************
32 * CAUTION
33 *
34 * Any layout changes for this class may require a corresponding change to be
35 * made to frameworks/compile/libbcc/lib/ScriptCRT/rs_core.c, which contains
36 * a partial copy of the information below.
37 *
38 *****************************************************************************/
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -080039class Sampler : public ObjectBase {
Jason Sams326e0dd2009-05-22 14:03:28 -070040public:
Alex Sakhartchoukc2c02a82011-05-04 17:45:36 -070041 struct Hal {
42 mutable void *drv;
Jason Sams326e0dd2009-05-22 14:03:28 -070043
Alex Sakhartchoukc2c02a82011-05-04 17:45:36 -070044 struct State {
45 RsSamplerValue magFilter;
46 RsSamplerValue minFilter;
47 RsSamplerValue wrapS;
48 RsSamplerValue wrapT;
49 RsSamplerValue wrapR;
50 float aniso;
51 };
52 State state;
53 };
54 Hal mHal;
55
Ling Wan3abc05b2013-03-15 16:21:50 -070056 void operator delete(void* ptr);
57
Alex Sakhartchouk407f8ca2011-09-23 17:05:04 -070058 static ObjectBaseRef<Sampler> getSampler(Context *,
59 RsSamplerValue magFilter,
60 RsSamplerValue minFilter,
61 RsSamplerValue wrapS,
62 RsSamplerValue wrapT,
63 RsSamplerValue wrapR,
64 float aniso = 1.0f);
65 void bindToContext(SamplerState *, uint32_t slot);
66 void unbindFromContext(SamplerState *);
67
Jason Samse3150cf2012-07-24 18:10:20 -070068 virtual void serialize(Context *rsc, OStream *stream) const;
Alex Sakhartchouk407f8ca2011-09-23 17:05:04 -070069 virtual RsA3DClassID getClassId() const { return RS_A3D_CLASS_ID_SAMPLER; }
70 static Sampler *createFromStream(Context *rsc, IStream *stream);
71
Alex Sakhartchoukc2c02a82011-05-04 17:45:36 -070072protected:
Jason Sams326e0dd2009-05-22 14:03:28 -070073 int32_t mBoundSlot;
74
Alex Sakhartchoukc700e642011-08-16 13:09:46 -070075 virtual void preDestroy() const;
76 virtual ~Sampler();
77
Jason Sams326e0dd2009-05-22 14:03:28 -070078private:
Chih-Hung Hsieh10ab8bb2016-07-01 12:20:20 -070079 explicit Sampler(Context *);
Alex Sakhartchoukc700e642011-08-16 13:09:46 -070080 Sampler(Context *,
81 RsSamplerValue magFilter,
82 RsSamplerValue minFilter,
83 RsSamplerValue wrapS,
84 RsSamplerValue wrapT,
85 RsSamplerValue wrapR,
86 float aniso = 1.0f);
Jason Sams326e0dd2009-05-22 14:03:28 -070087};
88
89
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -080090class SamplerState {
Jason Sams326e0dd2009-05-22 14:03:28 -070091public:
Jason Sams326e0dd2009-05-22 14:03:28 -070092 ObjectBaseRef<Sampler> mSamplers[RS_MAX_SAMPLER_SLOT];
Alex Sakhartchoukc700e642011-08-16 13:09:46 -070093 void init(Context *rsc) {
94 }
95 void deinit(Context *rsc) {
96 for (uint32_t i = 0; i < RS_MAX_SAMPLER_SLOT; i ++) {
97 mSamplers[i].clear();
98 }
99 }
100 // Cache of all existing raster programs.
Miao Wang82e135c2017-02-27 23:35:35 -0800101 std::vector<Sampler *> mAllSamplers;
Jason Sams326e0dd2009-05-22 14:03:28 -0700102};
103
Rahul Chaudhry7974fc02017-02-09 12:33:28 -0800104} // namespace renderscript
105} // namespace android
Jason Sams326e0dd2009-05-22 14:03:28 -0700106#endif //ANDROID_RS_SAMPLER_H
Yang Nib8353c52015-02-14 18:00:59 -0800107
108
109