gfx/angle/src/libGLESv2/precompiled.h

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 //
michael@0 2 // Copyright (c) 2013 The ANGLE Project Authors. All rights reserved.
michael@0 3 // Use of this source code is governed by a BSD-style license that can be
michael@0 4 // found in the LICENSE file.
michael@0 5 //
michael@0 6
michael@0 7 // precompiled.h: Precompiled header file for libGLESv2.
michael@0 8
michael@0 9 #define GL_APICALL
michael@0 10 #include <GLES2/gl2.h>
michael@0 11 #include <GLES2/gl2ext.h>
michael@0 12
michael@0 13 #define EGLAPI
michael@0 14 #include <EGL/egl.h>
michael@0 15
michael@0 16 #include <assert.h>
michael@0 17 #include <cstddef>
michael@0 18 #include <float.h>
michael@0 19 #include <intrin.h>
michael@0 20 #include <math.h>
michael@0 21 #include <stdarg.h>
michael@0 22 #include <stdlib.h>
michael@0 23 #include <stdio.h>
michael@0 24 #include <string.h>
michael@0 25
michael@0 26 #include <algorithm> // for std::min and std::max
michael@0 27 #include <limits>
michael@0 28 #include <map>
michael@0 29 #include <set>
michael@0 30 #include <sstream>
michael@0 31 #include <string>
michael@0 32 #include <unordered_map>
michael@0 33 #include <vector>
michael@0 34
michael@0 35 #include <d3d9.h>
michael@0 36 #include <d3d11.h>
michael@0 37 #include <dxgi.h>
michael@0 38 #include <d3dcompiler.h>
michael@0 39
michael@0 40 #ifdef _MSC_VER
michael@0 41 #include <hash_map>
michael@0 42 #endif

mercurial