This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
layout(local_size_x = 8, local_size_y = 8, local_size_z = 1) in; | |
uniform int input_tex; | |
uniform int jpg_result_tex; | |
shared vec3 shared_inputtex[8][8]; | |
shared vec3 shared_dct_horiz[8][8]; | |
shared vec3 shared_dct_vert[8][8]; | |
shared vec3 shared_dct_vert_inv[8][8]; |
OlderNewer