gfx/angle/src/libGLESv2/renderer/Query9.h

Tue, 06 Jan 2015 21:39:09 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 06 Jan 2015 21:39:09 +0100
branch
TOR_BUG_9701
changeset 8
97036ab72558
permissions
-rw-r--r--

Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

     1 //
     2 // Copyright (c) 2013 The ANGLE Project Authors. All rights reserved.
     3 // Use of this source code is governed by a BSD-style license that can be
     4 // found in the LICENSE file.
     5 //
     7 // Query9.h: Defines the rx::Query9 class which implements rx::QueryImpl.
     9 #ifndef LIBGLESV2_RENDERER_QUERY9_H_
    10 #define LIBGLESV2_RENDERER_QUERY9_H_
    12 #include "libGLESv2/renderer/QueryImpl.h"
    14 namespace rx
    15 {
    16 class Renderer9;
    18 class Query9 : public QueryImpl
    19 {
    20   public:
    21     Query9(rx::Renderer9 *renderer, GLenum type);
    22     virtual ~Query9();
    24     void begin();
    25     void end();
    26     GLuint getResult();
    27     GLboolean isResultAvailable();
    29   private:
    30     DISALLOW_COPY_AND_ASSIGN(Query9);
    32     GLboolean testQuery();
    34     rx::Renderer9 *mRenderer;
    35     IDirect3DQuery9 *mQuery;
    36 };
    38 }
    40 #endif // LIBGLESV2_RENDERER_QUERY9_H_

mercurial