You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
25 lines
824 B
25 lines
824 B
/////////////////////////////////////////////////////////////////////////////////////////////////// |
|
// OpenGL Image Copyright (c) 2008 - 2011 G-Truc Creation (www.g-truc.net) |
|
/////////////////////////////////////////////////////////////////////////////////////////////////// |
|
// Created : 2010-09-27 |
|
// Updated : 2010-09-27 |
|
// Licence : This source is under MIT License |
|
// File : gli/core/generate_mipmaps.hpp |
|
/////////////////////////////////////////////////////////////////////////////////////////////////// |
|
|
|
#ifndef GLI_GENERATE_MIPMAPS_INCLUDED |
|
#define GLI_GENERATE_MIPMAPS_INCLUDED |
|
|
|
#include "texture2d.hpp" |
|
|
|
namespace gli |
|
{ |
|
texture2D generateMipmaps( |
|
texture2D const & Texture, |
|
texture2D::level_type const & BaseLevel); |
|
|
|
}//namespace gli |
|
|
|
#include "generate_mipmaps.inl" |
|
|
|
#endif//GLI_GENERATE_MIPMAPS_INCLUDED
|
|
|