mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-29 18:23:36 +00:00
33 lines
682 B
Plaintext
33 lines
682 B
Plaintext
(
|
|
vertex:[
|
|
(
|
|
entry_point:"no_padding_vert",
|
|
target_profile:"vs_5_1",
|
|
),
|
|
(
|
|
entry_point:"needs_padding_vert",
|
|
target_profile:"vs_5_1",
|
|
),
|
|
],
|
|
fragment:[
|
|
(
|
|
entry_point:"no_padding_frag",
|
|
target_profile:"ps_5_1",
|
|
),
|
|
(
|
|
entry_point:"needs_padding_frag",
|
|
target_profile:"ps_5_1",
|
|
),
|
|
],
|
|
compute:[
|
|
(
|
|
entry_point:"no_padding_comp",
|
|
target_profile:"cs_5_1",
|
|
),
|
|
(
|
|
entry_point:"needs_padding_comp",
|
|
target_profile:"cs_5_1",
|
|
),
|
|
],
|
|
)
|