gfx/angle/src/libGLESv2/renderer/shaders/generate_shaders.bat

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.

michael@0 1 @ECHO OFF
michael@0 2 REM
michael@0 3 REM Copyright (c) 2012 The ANGLE Project Authors. All rights reserved.
michael@0 4 REM Use of this source code is governed by a BSD-style license that can be
michael@0 5 REM found in the LICENSE file.
michael@0 6 REM
michael@0 7
michael@0 8 PATH %PATH%;%DXSDK_DIR%\Utilities\bin\x86
michael@0 9
michael@0 10 fxc /E standardvs /T vs_2_0 /Fh compiled/standardvs.h Blit.vs
michael@0 11 fxc /E flipyvs /T vs_2_0 /Fh compiled/flipyvs.h Blit.vs
michael@0 12 fxc /E passthroughps /T ps_2_0 /Fh compiled/passthroughps.h Blit.ps
michael@0 13 fxc /E luminanceps /T ps_2_0 /Fh compiled/luminanceps.h Blit.ps
michael@0 14 fxc /E componentmaskps /T ps_2_0 /Fh compiled/componentmaskps.h Blit.ps
michael@0 15
michael@0 16 fxc /E VS_Passthrough /T vs_4_0 /Fh compiled/passthrough11vs.h Passthrough11.hlsl
michael@0 17 fxc /E PS_PassthroughRGBA /T ps_4_0 /Fh compiled/passthroughrgba11ps.h Passthrough11.hlsl
michael@0 18 fxc /E PS_PassthroughRGB /T ps_4_0 /Fh compiled/passthroughrgb11ps.h Passthrough11.hlsl
michael@0 19 fxc /E PS_PassthroughLum /T ps_4_0 /Fh compiled/passthroughlum11ps.h Passthrough11.hlsl
michael@0 20 fxc /E PS_PassthroughLumAlpha /T ps_4_0 /Fh compiled/passthroughlumalpha11ps.h Passthrough11.hlsl
michael@0 21
michael@0 22 fxc /E VS_Clear /T vs_4_0 /Fh compiled/clear11vs.h Clear11.hlsl
michael@0 23 fxc /E PS_ClearSingle /T ps_4_0 /Fh compiled/clearsingle11ps.h Clear11.hlsl
michael@0 24 fxc /E PS_ClearMultiple /T ps_4_0 /Fh compiled/clearmultiple11ps.h Clear11.hlsl

mercurial