Edit

kc3-lang/angle/src/libANGLE/renderer/SamplerImpl.h

Branch :

  • Show log

    Commit

  • Author : Geoff Lang
    Date : 2015-09-23 13:56:25
    Hash : 0af0b81d
    Message : Add a SamplerImpl object and implement it for the GL backend. Passes all tests in dEQP-GLES3.functional.samplers BUG=angleproject:1162 Change-Id: I7713031a677aac2b41889a6b4297ab512e184863 Reviewed-on: https://chromium-review.googlesource.com/301582 Reviewed-by: Corentin Wallez <cwallez@chromium.org> Reviewed-by: Geoff Lang <geofflang@chromium.org> Tested-by: Geoff Lang <geofflang@chromium.org>

  • src/libANGLE/renderer/SamplerImpl.h
  • //
    // Copyright 2014 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.
    //
    
    // SamplerImpl.h: Defines the abstract rx::SamplerImpl class.
    
    #ifndef LIBANGLE_RENDERER_SAMPLERIMPL_H_
    #define LIBANGLE_RENDERER_SAMPLERIMPL_H_
    
    #include "common/angleutils.h"
    
    namespace rx
    {
    
    class SamplerImpl : public angle::NonCopyable
    {
      public:
        SamplerImpl() {}
        virtual ~SamplerImpl() {}
    };
    }
    
    #endif  // LIBANGLE_RENDERER_SAMPLERIMPL_H_