Skip to content

Commit

Permalink
Use smaller buffer
Browse files Browse the repository at this point in the history
  • Loading branch information
brimson committed Jun 9, 2022
1 parent 779ed5a commit 1b797c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion shaders/cMotionBlur.fx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@

namespace Shared_Resources_Motion_Blur
{
TEXTURE(Render_Common_0, int2(BUFFER_WIDTH >> 1, BUFFER_HEIGHT >> 1), RG8, 4)
TEXTURE(Render_Common_0, int2(BUFFER_WIDTH >> 1, BUFFER_HEIGHT >> 1), R8, 4)
SAMPLER(Sample_Common_0, Render_Common_0)

TEXTURE(Render_Common_1_A, BUFFER_SIZE_1, RG16F, 9)
Expand Down
2 changes: 1 addition & 1 deletion shaders/kDatamosh.fx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@

namespace Shared_Resources_Datamosh
{
TEXTURE(Render_Common_0, int2(BUFFER_WIDTH >> 1, BUFFER_HEIGHT >> 1), RG8, 4)
TEXTURE(Render_Common_0, int2(BUFFER_WIDTH >> 1, BUFFER_HEIGHT >> 1), R8, 4)
SAMPLER(Sample_Common_0, Render_Common_0)

TEXTURE(Render_Common_1_A, BUFFER_SIZE_1, RG16F, 9)
Expand Down

0 comments on commit 1b797c2

Please sign in to comment.