|
Last change
on this file since 1147 was 1114, checked in by iritscen, 6 years ago |
|
Adding OniSplit source code (v0.9.99.0). Many thanks to Neo for all his work over the years.
|
|
File size:
685 bytes
|
| Line | |
|---|
| 1 | namespace Oni.Dae
|
|---|
| 2 | {
|
|---|
| 3 | internal class EffectSampler
|
|---|
| 4 | {
|
|---|
| 5 | public EffectSampler()
|
|---|
| 6 | {
|
|---|
| 7 | }
|
|---|
| 8 |
|
|---|
| 9 | public EffectSampler(EffectSurface surface)
|
|---|
| 10 | {
|
|---|
| 11 | Surface = surface;
|
|---|
| 12 | }
|
|---|
| 13 |
|
|---|
| 14 | public EffectParameter Owner { get; set; }
|
|---|
| 15 | public EffectSurface Surface { get; set; }
|
|---|
| 16 | public EffectSamplerWrap WrapS { get; set; } = EffectSamplerWrap.Wrap;
|
|---|
| 17 | public EffectSamplerWrap WrapT { get; set; } = EffectSamplerWrap.Wrap;
|
|---|
| 18 | public EffectSamplerFilter MinFilter { get; set; }
|
|---|
| 19 | public EffectSamplerFilter MagFilter { get; set; }
|
|---|
| 20 | public EffectSamplerFilter MipFilter { get; set; }
|
|---|
| 21 | }
|
|---|
| 22 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.