Hash :
ba0570ef
Author :
Date :
2012-10-31T18:07:39
Move sampler state setting to the Renderer Trac #21727 git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@1336 736b8ea6-26fd-11df-bfd4-992fa37f6226
//
// Copyright (c) 2012 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.
//
// EnumTypes.h : Defines a variety of enum types that are used throughout libGLESv2
#ifndef LIBGLESV2_ENUMTYPES_H_
#define LIBGLESV2_ENUMTYPES_H_
namespace gl
{
enum TextureType
{
TEXTURE_2D,
TEXTURE_CUBE,
TEXTURE_TYPE_COUNT,
TEXTURE_UNKNOWN
};
enum SamplerType
{
SAMPLER_PIXEL,
SAMPLER_VERTEX
};
}
#endif // LIBGLESV2_ENUMTYPES_H_