diff options
| author | 2020-02-01 22:49:25 -0300 | |
|---|---|---|
| committer | 2020-02-01 22:52:10 -0300 | |
| commit | 223a89a19f7cd904c79c4070498c5941bcdf0724 (patch) | |
| tree | 8f2a211c419e7446cc162a83b348132fcf478624 /src/video_core/shader/node.h | |
| parent | Merge pull request #3282 from FernandoS27/indexed-samplers (diff) | |
| download | yuzu-223a89a19f7cd904c79c4070498c5941bcdf0724.tar.gz yuzu-223a89a19f7cd904c79c4070498c5941bcdf0724.tar.xz yuzu-223a89a19f7cd904c79c4070498c5941bcdf0724.zip | |
shader: Remove curly braces initializers on shared pointers
Diffstat (limited to 'src/video_core/shader/node.h')
| -rw-r--r-- | src/video_core/shader/node.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/shader/node.h b/src/video_core/shader/node.h index 5f83403db..a0a7b9111 100644 --- a/src/video_core/shader/node.h +++ b/src/video_core/shader/node.h | |||
| @@ -443,9 +443,9 @@ struct MetaTexture { | |||
| 443 | std::vector<Node> derivates; | 443 | std::vector<Node> derivates; |
| 444 | Node bias; | 444 | Node bias; |
| 445 | Node lod; | 445 | Node lod; |
| 446 | Node component{}; | 446 | Node component; |
| 447 | u32 element{}; | 447 | u32 element{}; |
| 448 | Node index{}; | 448 | Node index; |
| 449 | }; | 449 | }; |
| 450 | 450 | ||
| 451 | struct MetaImage { | 451 | struct MetaImage { |