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" |
| 21 | #include "RenderScript.h" |
| 22 | |
| 23 | // --------------------------------------------------------------------------- |
| 24 | namespace android { |
| 25 | namespace renderscript { |
| 26 | |
| 27 | const static uint32_t RS_MAX_SAMPLER_SLOT = 16; |
| 28 | |
| 29 | class SamplerState; |
| 30 | |
| 31 | class Sampler : public ObjectBase |
| 32 | { |
| 33 | public: |
Jason Sams | e514b45 | 2009-09-25 14:51:22 -0700 | [diff] [blame] | 34 | Sampler(Context *, |
| 35 | RsSamplerValue magFilter, |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 36 | RsSamplerValue minFilter, |
| 37 | RsSamplerValue wrapS, |
| 38 | RsSamplerValue wrapT, |
| 39 | RsSamplerValue wrapR); |
| 40 | |
| 41 | virtual ~Sampler(); |
| 42 | |
| 43 | void bind(Allocation *); |
Jason Sams | ef21edc | 2010-02-22 15:37:51 -0800 | [diff] [blame] | 44 | void setupGL(const Context *, bool npot); |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 45 | |
| 46 | void bindToContext(SamplerState *, uint32_t slot); |
| 47 | void unbindFromContext(SamplerState *); |
Alex Sakhartchouk | b825f67 | 2010-06-04 10:06:50 -0700 | [diff] [blame] | 48 | |
Alex Sakhartchouk | fb6b614 | 2010-05-21 12:53:13 -0700 | [diff] [blame] | 49 | virtual void serialize(OStream *stream) const; |
Alex Sakhartchouk | b825f67 | 2010-06-04 10:06:50 -0700 | [diff] [blame] | 50 | virtual RsA3DClassID getClassId() const { return RS_A3D_CLASS_ID_SAMPLER; } |
Alex Sakhartchouk | fb6b614 | 2010-05-21 12:53:13 -0700 | [diff] [blame] | 51 | static Sampler *createFromStream(Context *rsc, IStream *stream); |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 52 | |
| 53 | protected: |
| 54 | RsSamplerValue mMagFilter; |
| 55 | RsSamplerValue mMinFilter; |
| 56 | RsSamplerValue mWrapS; |
| 57 | RsSamplerValue mWrapT; |
| 58 | RsSamplerValue mWrapR; |
| 59 | |
| 60 | int32_t mBoundSlot; |
| 61 | |
| 62 | private: |
Jason Sams | e514b45 | 2009-09-25 14:51:22 -0700 | [diff] [blame] | 63 | Sampler(Context *); |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 64 | |
| 65 | }; |
| 66 | |
| 67 | |
Jason Sams | e514b45 | 2009-09-25 14:51:22 -0700 | [diff] [blame] | 68 | class SamplerState |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 69 | { |
| 70 | public: |
| 71 | |
| 72 | RsSamplerValue mMagFilter; |
| 73 | RsSamplerValue mMinFilter; |
| 74 | RsSamplerValue mWrapS; |
| 75 | RsSamplerValue mWrapT; |
| 76 | RsSamplerValue mWrapR; |
| 77 | |
| 78 | |
| 79 | ObjectBaseRef<Sampler> mSamplers[RS_MAX_SAMPLER_SLOT]; |
| 80 | |
Jason Sams | 3eb28f0 | 2010-01-27 14:41:43 -0800 | [diff] [blame] | 81 | //void setupGL(); |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 82 | |
| 83 | }; |
| 84 | |
| 85 | |
| 86 | |
| 87 | } |
| 88 | } |
| 89 | #endif //ANDROID_RS_SAMPLER_H |
| 90 | |
| 91 | |
| 92 | |