Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 1 | /* |
| 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 Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 20 | #include "rsAllocation.h" |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 21 | |
| 22 | // --------------------------------------------------------------------------- |
| 23 | namespace android { |
| 24 | namespace renderscript { |
| 25 | |
| 26 | const static uint32_t RS_MAX_SAMPLER_SLOT = 16; |
| 27 | |
| 28 | class SamplerState; |
Alex Sakhartchouk | 407f8ca | 2011-09-23 17:05:04 -0700 | [diff] [blame] | 29 | /***************************************************************************** |
| 30 | * CAUTION |
| 31 | * |
| 32 | * Any layout changes for this class may require a corresponding change to be |
| 33 | * made to frameworks/compile/libbcc/lib/ScriptCRT/rs_core.c, which contains |
| 34 | * a partial copy of the information below. |
| 35 | * |
| 36 | *****************************************************************************/ |
Alex Sakhartchouk | afb743a | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 37 | class Sampler : public ObjectBase { |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 38 | public: |
Alex Sakhartchouk | c2c02a8 | 2011-05-04 17:45:36 -0700 | [diff] [blame] | 39 | struct Hal { |
| 40 | mutable void *drv; |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 41 | |
Alex Sakhartchouk | c2c02a8 | 2011-05-04 17:45:36 -0700 | [diff] [blame] | 42 | struct State { |
| 43 | RsSamplerValue magFilter; |
| 44 | RsSamplerValue minFilter; |
| 45 | RsSamplerValue wrapS; |
| 46 | RsSamplerValue wrapT; |
| 47 | RsSamplerValue wrapR; |
| 48 | float aniso; |
| 49 | }; |
| 50 | State state; |
| 51 | }; |
| 52 | Hal mHal; |
| 53 | |
Ling Wan | 3abc05b | 2013-03-15 16:21:50 -0700 | [diff] [blame] | 54 | void operator delete(void* ptr); |
| 55 | |
Alex Sakhartchouk | 407f8ca | 2011-09-23 17:05:04 -0700 | [diff] [blame] | 56 | static ObjectBaseRef<Sampler> getSampler(Context *, |
| 57 | RsSamplerValue magFilter, |
| 58 | RsSamplerValue minFilter, |
| 59 | RsSamplerValue wrapS, |
| 60 | RsSamplerValue wrapT, |
| 61 | RsSamplerValue wrapR, |
| 62 | float aniso = 1.0f); |
| 63 | void bindToContext(SamplerState *, uint32_t slot); |
| 64 | void unbindFromContext(SamplerState *); |
| 65 | |
Jason Sams | e3150cf | 2012-07-24 18:10:20 -0700 | [diff] [blame] | 66 | virtual void serialize(Context *rsc, OStream *stream) const; |
Alex Sakhartchouk | 407f8ca | 2011-09-23 17:05:04 -0700 | [diff] [blame] | 67 | virtual RsA3DClassID getClassId() const { return RS_A3D_CLASS_ID_SAMPLER; } |
| 68 | static Sampler *createFromStream(Context *rsc, IStream *stream); |
| 69 | |
Alex Sakhartchouk | c2c02a8 | 2011-05-04 17:45:36 -0700 | [diff] [blame] | 70 | protected: |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 71 | int32_t mBoundSlot; |
| 72 | |
Alex Sakhartchouk | c700e64 | 2011-08-16 13:09:46 -0700 | [diff] [blame] | 73 | virtual void preDestroy() const; |
| 74 | virtual ~Sampler(); |
| 75 | |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 76 | private: |
Jason Sams | e514b45 | 2009-09-25 14:51:22 -0700 | [diff] [blame] | 77 | Sampler(Context *); |
Alex Sakhartchouk | c700e64 | 2011-08-16 13:09:46 -0700 | [diff] [blame] | 78 | Sampler(Context *, |
| 79 | RsSamplerValue magFilter, |
| 80 | RsSamplerValue minFilter, |
| 81 | RsSamplerValue wrapS, |
| 82 | RsSamplerValue wrapT, |
| 83 | RsSamplerValue wrapR, |
| 84 | float aniso = 1.0f); |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 85 | }; |
| 86 | |
| 87 | |
Alex Sakhartchouk | afb743a | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 88 | class SamplerState { |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 89 | public: |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 90 | ObjectBaseRef<Sampler> mSamplers[RS_MAX_SAMPLER_SLOT]; |
Alex Sakhartchouk | c700e64 | 2011-08-16 13:09:46 -0700 | [diff] [blame] | 91 | void init(Context *rsc) { |
| 92 | } |
| 93 | void deinit(Context *rsc) { |
| 94 | for (uint32_t i = 0; i < RS_MAX_SAMPLER_SLOT; i ++) { |
| 95 | mSamplers[i].clear(); |
| 96 | } |
| 97 | } |
| 98 | // Cache of all existing raster programs. |
Yang Ni | b8353c5 | 2015-02-14 18:00:59 -0800 | [diff] [blame] | 99 | Vector<Sampler *> mAllSamplers; |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 100 | }; |
| 101 | |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 102 | } |
| 103 | } |
| 104 | #endif //ANDROID_RS_SAMPLER_H |
Yang Ni | b8353c5 | 2015-02-14 18:00:59 -0800 | [diff] [blame] | 105 | |
| 106 | |
| 107 | |