// GENERATED FILE - DO NOT EDIT. // Generated by gen_vk_internal_shaders.py. // // Copyright 2018 The ANGLE Project Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // // shaders/gen/BlitResolve.frag.0000000A.inc: // Pre-generated shader for the ANGLE Vulkan back-end. #pragma once constexpr uint8_t kBlitResolve_frag_0000000A[] = …; // Generated from: // // #version 450 core // // #extension GL_GOOGLE_include_directive : require // // #extension GL_EXT_samplerless_texture_functions : require // // layout(set = 0, binding = 0)uniform utexture2DMS color; // // layout(location = 0)out uvec4 colorOut0; // layout(location = 1)out uvec4 colorOut1; // layout(location = 2)out uvec4 colorOut2; // layout(location = 3)out uvec4 colorOut3; // layout(location = 4)out uvec4 colorOut4; // layout(location = 5)out uvec4 colorOut5; // layout(location = 6)out uvec4 colorOut6; // layout(location = 7)out uvec4 colorOut7; // // #line 1 "shaders/src/BlitResolve.inc" // // layout(push_constant)uniform PushConstants { // // ivec2 offset; // vec2 stretch; // vec2 invSrcExtent; // int srcLayer; // int samples; // float invSamples; // // int outputMask; // // bool flipX; // bool flipY; // bool rotateXY; // } params; // // ivec2 getSrcImageCoords() // { // // ivec2 srcImageCoords = ivec2(gl_FragCoord . xy); // // srcImageCoords -= params . offset; // // if(params . flipX) // srcImageCoords . x = - srcImageCoords . x; // if(params . flipY) // srcImageCoords . y = - srcImageCoords . y; // if(params . rotateXY) // srcImageCoords . xy = srcImageCoords . yx; // // return srcImageCoords; // } // // void broadcastColor(uvec4 colorValue) // { // // if((params . outputMask &(1 << 0))!= 0) // { // colorOut0 = colorValue; // } // if((params . outputMask &(1 << 1))!= 0) // { // colorOut1 = colorValue; // } // if((params . outputMask &(1 << 2))!= 0) // { // colorOut2 = colorValue; // } // if((params . outputMask &(1 << 3))!= 0) // { // colorOut3 = colorValue; // } // if((params . outputMask &(1 << 4))!= 0) // { // colorOut4 = colorValue; // } // if((params . outputMask &(1 << 5))!= 0) // { // colorOut5 = colorValue; // } // if((params . outputMask &(1 << 6))!= 0) // { // colorOut6 = colorValue; // } // if((params . outputMask &(1 << 7))!= 0) // { // colorOut7 = colorValue; // } // } // // #line 123 "shaders/src/BlitResolve.frag" // // void main() // { // ivec2 srcImageCoords = getSrcImageCoords(); // // uvec4 colorValue = uvec4(0, 0, 0, 0); // for(int i = 0;i < params . samples;++ i) // { // colorValue += texelFetch(color, srcImageCoords, i); // } // // colorValue = uvec4(round(colorValue * params . invSamples)); // // broadcastColor(colorValue); // // }