spirv: Add log for ignoring pos1
This commit is contained in:
parent
c27ce65dd8
commit
80c114a135
|
@ -215,6 +215,7 @@ Id EmitGetAttributeU32(EmitContext& ctx, IR::Attribute attr, u32 comp) {
|
||||||
|
|
||||||
void EmitSetAttribute(EmitContext& ctx, IR::Attribute attr, Id value, u32 element) {
|
void EmitSetAttribute(EmitContext& ctx, IR::Attribute attr, Id value, u32 element) {
|
||||||
if (attr == IR::Attribute::Position1) {
|
if (attr == IR::Attribute::Position1) {
|
||||||
|
LOG_WARNING(Render_Vulkan, "Ignoring pos1 export");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const Id pointer{OutputAttrPointer(ctx, attr, element)};
|
const Id pointer{OutputAttrPointer(ctx, attr, element)};
|
||||||
|
|
Loading…
Reference in New Issue