@@ -648,25 +648,25 @@ struct bindless_image_sampler {
648
648
sycl::addressing_mode addressing;
649
649
sycl::coordinate_normalization_mode coordinate;
650
650
sycl::filtering_mode filtering;
651
- sycl::filtering_mode mipmapFiltering ;
652
- float minMipmapLevelClamp ;
653
- float maxMipmapLevelClamp ;
654
- float maxAnisotropy ;
651
+ sycl::filtering_mode mipmap_filtering ;
652
+ float min_mipmap_level_clamp ;
653
+ float max_mipmap_level_clamp ;
654
+ float max_anisotropy ;
655
655
};
656
656
657
657
}
658
658
```
659
659
660
- `mipmapFiltering ` dictates the method in which sampling between mipmap
660
+ `mipmap_filtering ` dictates the method in which sampling between mipmap
661
661
levels is performed.
662
662
663
- `minMipmapLevelClamp ` defines the minimum mipmap level from which we can sample,
664
- with the minimum value being 0.
663
+ `min_mipmap_level_clamp ` defines the minimum mipmap level from which we can
664
+ sample, with the minimum value being 0.
665
665
666
- `maxMipmapLevelClamp ` defines the maximum mipmap level from which we can sample.
667
- This cannot value cannot be higher than the number of allocated levels.
666
+ `max_mipmap_level_clamp ` defines the maximum mipmap level from which we can
667
+ sample. This cannot value cannot be higher than the number of allocated levels.
668
668
669
- `maxAnisotropy ` dictates the anisotropic ratio used when samplling the mipmap
669
+ `max_anisotropy ` dictates the anisotropic ratio used when samplling the mipmap
670
670
with anisotropic filtering.
671
671
672
672
=== Explicit copies
@@ -1970,4 +1970,5 @@ These features still need to be handled:
1970
1970
Semantics.
1971
1971
1972
1972
- Updated code samples.
1973
+ |4.1|2023-07-21| - Made bindless image sampler member names snake-case
1973
1974
|======================
0 commit comments