Skip to content

Commit 99cbdd1

Browse files
[SYCL][Doc] Bindless images proposal name fix (#10520)
Made the bindless image sampler member names snake case to match SYCL convention.
1 parent 177680e commit 99cbdd1

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

sycl/doc/extensions/proposed/sycl_ext_oneapi_bindless_images.asciidoc

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -648,25 +648,25 @@ struct bindless_image_sampler {
648648
sycl::addressing_mode addressing;
649649
sycl::coordinate_normalization_mode coordinate;
650650
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;
655655
};
656656

657657
}
658658
```
659659

660-
`mipmapFiltering` dictates the method in which sampling between mipmap
660+
`mipmap_filtering` dictates the method in which sampling between mipmap
661661
levels is performed.
662662

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.
665665

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.
668668

669-
`maxAnisotropy` dictates the anisotropic ratio used when samplling the mipmap
669+
`max_anisotropy` dictates the anisotropic ratio used when samplling the mipmap
670670
with anisotropic filtering.
671671

672672
=== Explicit copies
@@ -1970,4 +1970,5 @@ These features still need to be handled:
19701970
Semantics.
19711971

19721972
- Updated code samples.
1973+
|4.1|2023-07-21| - Made bindless image sampler member names snake-case
19731974
|======================

0 commit comments

Comments
 (0)