mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-20 23:25:46 +00:00
shader: Fix TextureGrad
This commit is contained in:
parent
96da029a74
commit
d07e15fcf6
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ public:
|
|||
}
|
||||
boost::container::static_vector<Id, 3> deriv_x_accum;
|
||||
boost::container::static_vector<Id, 3> deriv_y_accum;
|
||||
for (size_t i = 0; i < num_derivates; i++) {
|
||||
for (u32 i = 0; i < num_derivates; ++i) {
|
||||
deriv_x_accum.push_back(ctx.OpCompositeExtract(ctx.F32[1], derivates, i * 2));
|
||||
deriv_y_accum.push_back(ctx.OpCompositeExtract(ctx.F32[1], derivates, i * 2 + 1));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue