// SwiftShader Software Renderer | |
// | |
// Copyright(c) 2005-2013 TransGaming Inc. | |
// | |
// All rights reserved. No part of this software may be copied, distributed, transmitted, | |
// transcribed, stored in a retrieval system, translated into any human or computer | |
// language by any means, or disclosed to third parties without the explicit written | |
// agreement of TransGaming Inc. Without such an agreement, no rights or licenses, express | |
// or implied, including but not limited to any patent rights, are granted to you. | |
// | |
// Texture.cpp: Implements the Texture class and its derived classes | |
// Texture2D and TextureCubeMap. Implements GL texture objects and related | |
// functionality. [OpenGL ES 2.0.24] section 3.7 page 63. | |
#include "Texture.h" | |
#include "main.h" | |
#include "mathutil.h" | |
#include "Device.hpp" | |
#include "Display.h" | |
#include "Surface.h" | |
#include "common/debug.h" | |
#include <algorithm> | |
namespace es2 | |
{ | |
Texture::Texture() | |
{ | |
mMinFilter = GL_NEAREST_MIPMAP_LINEAR; | |
mMagFilter = GL_LINEAR; | |
mWrapS = GL_REPEAT; | |
mWrapT = GL_REPEAT; | |
mMaxAnisotropy = 1.0f; | |
resource = new sw::Resource(0); | |
referenceCount = 0; | |
} | |
Texture::~Texture() | |
{ | |
ASSERT(referenceCount == 0); | |
resource->destruct(); | |
} | |
void Texture::addRef() | |
{ | |
sw::atomicIncrement(&referenceCount); | |
} | |
void Texture::release() | |
{ | |
ASSERT(referenceCount > 0); | |
if(referenceCount > 0) | |
{ | |
sw::atomicDecrement(&referenceCount); | |
} | |
if(referenceCount == 0) | |
{ | |
delete this; | |
} | |
} | |
sw::Resource *Texture::getResource() const | |
{ | |
return resource; | |
} | |
// Returns true on successful filter state update (valid enum parameter) | |
bool Texture::setMinFilter(GLenum filter) | |
{ | |
switch(filter) | |
{ | |
case GL_NEAREST_MIPMAP_NEAREST: | |
case GL_LINEAR_MIPMAP_NEAREST: | |
case GL_NEAREST_MIPMAP_LINEAR: | |
case GL_LINEAR_MIPMAP_LINEAR: | |
if(getTarget() == GL_TEXTURE_EXTERNAL_OES) | |
{ | |
return false; | |
} | |
// Fall through | |
case GL_NEAREST: | |
case GL_LINEAR: | |
mMinFilter = filter; | |
return true; | |
default: | |
return false; | |
} | |
} | |
// Returns true on successful filter state update (valid enum parameter) | |
bool Texture::setMagFilter(GLenum filter) | |
{ | |
switch(filter) | |
{ | |
case GL_NEAREST: | |
case GL_LINEAR: | |
mMagFilter = filter; | |
return true; | |
default: | |
return false; | |
} | |
} | |
// Returns true on successful wrap state update (valid enum parameter) | |
bool Texture::setWrapS(GLenum wrap) | |
{ | |
switch(wrap) | |
{ | |
case GL_REPEAT: | |
case GL_MIRRORED_REPEAT: | |
if(getTarget() == GL_TEXTURE_EXTERNAL_OES) | |
{ | |
return false; | |
} | |
// Fall through | |
case GL_CLAMP_TO_EDGE: | |
mWrapS = wrap; | |
return true; | |
default: | |
return false; | |
} | |
} | |
// Returns true on successful wrap state update (valid enum parameter) | |
bool Texture::setWrapT(GLenum wrap) | |
{ | |
switch(wrap) | |
{ | |
case GL_REPEAT: | |
case GL_MIRRORED_REPEAT: | |
if(getTarget() == GL_TEXTURE_EXTERNAL_OES) | |
{ | |
return false; | |
} | |
// Fall through | |
case GL_CLAMP_TO_EDGE: | |
mWrapT = wrap; | |
return true; | |
default: | |
return false; | |
} | |
} | |
// Returns true on successful max anisotropy update (valid anisotropy value) | |
bool Texture::setMaxAnisotropy(float textureMaxAnisotropy) | |
{ | |
textureMaxAnisotropy = std::min(textureMaxAnisotropy, MAX_TEXTURE_MAX_ANISOTROPY); | |
if(textureMaxAnisotropy < 1.0f) | |
{ | |
return false; | |
} | |
if(mMaxAnisotropy != textureMaxAnisotropy) | |
{ | |
mMaxAnisotropy = textureMaxAnisotropy; | |
} | |
return true; | |
} | |
GLenum Texture::getMinFilter() const | |
{ | |
return mMinFilter; | |
} | |
GLenum Texture::getMagFilter() const | |
{ | |
return mMagFilter; | |
} | |
GLenum Texture::getWrapS() const | |
{ | |
return mWrapS; | |
} | |
GLenum Texture::getWrapT() const | |
{ | |
return mWrapT; | |
} | |
GLfloat Texture::getMaxAnisotropy() const | |
{ | |
return mMaxAnisotropy; | |
} | |
egl::Image *Texture::createSharedImage(GLenum target, unsigned int level) | |
{ | |
egl::Image *image = getRenderTarget(target, level); // Increments reference count | |
if(image) | |
{ | |
image->markShared(); | |
} | |
return image; | |
} | |
void Texture::setImage(GLenum format, GLenum type, GLint unpackAlignment, const void *pixels,egl:: Image *image) | |
{ | |
if(pixels && image) | |
{ | |
image->loadImageData(0, 0, image->getWidth(), image->getHeight(), format, type, unpackAlignment, pixels); | |
} | |
} | |
void Texture::setCompressedImage(GLsizei imageSize, const void *pixels, egl::Image *image) | |
{ | |
if(pixels && image) | |
{ | |
image->loadCompressedData(0, 0, image->getWidth(), image->getHeight(), imageSize, pixels); | |
} | |
} | |
void Texture::subImage(GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, GLint unpackAlignment, const void *pixels, egl::Image *image) | |
{ | |
if(!image) | |
{ | |
return rad::error(GL_INVALID_OPERATION); | |
} | |
if(width + xoffset > image->getWidth() || height + yoffset > image->getHeight()) | |
{ | |
return rad::error(GL_INVALID_VALUE); | |
} | |
if(IsCompressed(image->getFormat())) | |
{ | |
return rad::error(GL_INVALID_OPERATION); | |
} | |
if(format != image->getFormat()) | |
{ | |
return rad::error(GL_INVALID_OPERATION); | |
} | |
if(pixels) | |
{ | |
image->loadImageData(xoffset, yoffset, width, height, format, type, unpackAlignment, pixels); | |
} | |
} | |
void Texture::subImageCompressed(GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *pixels, egl::Image *image) | |
{ | |
if(!image) | |
{ | |
return rad::error(GL_INVALID_OPERATION); | |
} | |
if(width + xoffset > image->getWidth() || height + yoffset > image->getHeight()) | |
{ | |
return rad::error(GL_INVALID_VALUE); | |
} | |
if(format != image->getFormat()) | |
{ | |
return rad::error(GL_INVALID_OPERATION); | |
} | |
if(pixels) | |
{ | |
image->loadCompressedData(xoffset, yoffset, width, height, imageSize, pixels); | |
} | |
} | |
bool Texture::copy(egl::Image *source, const sw::Rect &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, egl::Image *dest) | |
{ | |
Device *device = getDevice(); | |
sw::Rect destRect = {xoffset, yoffset, xoffset + (sourceRect.x1 - sourceRect.x0), yoffset + (sourceRect.y1 - sourceRect.y0)}; | |
bool success = device->stretchRect(source, &sourceRect, dest, &destRect, false); | |
if(!success) | |
{ | |
return rad::error(GL_OUT_OF_MEMORY, false); | |
} | |
return true; | |
} | |
bool Texture::isMipmapFiltered() const | |
{ | |
switch(mMinFilter) | |
{ | |
case GL_NEAREST: | |
case GL_LINEAR: | |
return false; | |
case GL_NEAREST_MIPMAP_NEAREST: | |
case GL_LINEAR_MIPMAP_NEAREST: | |
case GL_NEAREST_MIPMAP_LINEAR: | |
case GL_LINEAR_MIPMAP_LINEAR: | |
return true; | |
default: UNREACHABLE(); | |
} | |
return false; | |
} | |
Texture2D::Texture2D() | |
{ | |
for(int i = 0; i < MIPMAP_LEVELS; i++) | |
{ | |
image[i] = 0; | |
} | |
mSurface = NULL; | |
} | |
Texture2D::~Texture2D() | |
{ | |
resource->lock(sw::DESTRUCT); | |
for(int i = 0; i < MIPMAP_LEVELS; i++) | |
{ | |
if(image[i]) | |
{ | |
image[i]->unbind(); | |
image[i] = 0; | |
} | |
} | |
resource->unlock(); | |
if(mSurface) | |
{ | |
mSurface->setBoundTexture(NULL); | |
mSurface = NULL; | |
} | |
} | |
GLenum Texture2D::getTarget() const | |
{ | |
return GL_TEXTURE_2D; | |
} | |
GLsizei Texture2D::getWidth(GLenum target, GLint level) const | |
{ | |
ASSERT(target == GL_TEXTURE_2D); | |
return image[level] ? image[level]->getWidth() : 0; | |
} | |
GLsizei Texture2D::getHeight(GLenum target, GLint level) const | |
{ | |
ASSERT(target == GL_TEXTURE_2D); | |
return image[level] ? image[level]->getHeight() : 0; | |
} | |
GLenum Texture2D::getFormat(GLenum target, GLint level) const | |
{ | |
ASSERT(target == GL_TEXTURE_2D); | |
return image[level] ? image[level]->getFormat() : 0; | |
} | |
GLenum Texture2D::getType(GLenum target, GLint level) const | |
{ | |
ASSERT(target == GL_TEXTURE_2D); | |
return image[level] ? image[level]->getType() : 0; | |
} | |
sw::Format Texture2D::getInternalFormat(GLenum target, GLint level) const | |
{ | |
ASSERT(target == GL_TEXTURE_2D); | |
return image[level] ? image[level]->getInternalFormat() : sw::FORMAT_NULL; | |
} | |
int Texture2D::getLevelCount() const | |
{ | |
//ASSERT(isSamplerComplete()); | |
int levels = 0; | |
while(levels < MIPMAP_LEVELS && image[levels]) | |
{ | |
levels++; | |
} | |
return levels; | |
} | |
void Texture2D::setImage(GLint level, GLsizei width, GLsizei height, GLenum format, GLenum type, GLint unpackAlignment, const void *pixels) | |
{ | |
if(image[level]) | |
{ | |
image[level]->unbind(); | |
} | |
image[level] = new Image(this, width, height, format, type); | |
if(!image[level]) | |
{ | |
return rad::error(GL_OUT_OF_MEMORY); | |
} | |
Texture::setImage(format, type, unpackAlignment, pixels, image[level]); | |
} | |
void Texture2D::setCompressedImage(GLint level, GLenum format, GLsizei width, GLsizei height, GLsizei imageSize, const void *pixels) | |
{ | |
if(image[level]) | |
{ | |
image[level]->unbind(); | |
} | |
image[level] = new Image(this, width, height, format, GL_UNSIGNED_BYTE); | |
if(!image[level]) | |
{ | |
return rad::error(GL_OUT_OF_MEMORY); | |
} | |
Texture::setCompressedImage(imageSize, pixels, image[level]); | |
} | |
void Texture2D::subImage(GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, GLint unpackAlignment, const void *pixels) | |
{ | |
Texture::subImage(xoffset, yoffset, width, height, format, type, unpackAlignment, pixels, image[level]); | |
} | |
void Texture2D::subImageCompressed(GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *pixels) | |
{ | |
Texture::subImageCompressed(xoffset, yoffset, width, height, format, imageSize, pixels, image[level]); | |
} | |
// Tests for 2D texture sampling completeness. [OpenGL ES 2.0.24] section 3.8.2 page 85. | |
bool Texture2D::isSamplerComplete() const | |
{ | |
if(!image[0]) | |
{ | |
return false; | |
} | |
GLsizei width = image[0]->getWidth(); | |
GLsizei height = image[0]->getHeight(); | |
if(width <= 0 || height <= 0) | |
{ | |
return false; | |
} | |
if(isMipmapFiltered()) | |
{ | |
if(!isMipmapComplete()) | |
{ | |
return false; | |
} | |
} | |
return true; | |
} | |
// Tests for 2D texture (mipmap) completeness. [OpenGL ES 2.0.24] section 3.7.10 page 81. | |
bool Texture2D::isMipmapComplete() const | |
{ | |
GLsizei width = image[0]->getWidth(); | |
GLsizei height = image[0]->getHeight(); | |
int q = log2(std::max(width, height)); | |
for(int level = 1; level <= q; level++) | |
{ | |
if(!image[level]) | |
{ | |
return false; | |
} | |
if(image[level]->getFormat() != image[0]->getFormat()) | |
{ | |
return false; | |
} | |
if(image[level]->getType() != image[0]->getType()) | |
{ | |
return false; | |
} | |
if(image[level]->getWidth() != std::max(1, width >> level)) | |
{ | |
return false; | |
} | |
if(image[level]->getHeight() != std::max(1, height >> level)) | |
{ | |
return false; | |
} | |
} | |
return true; | |
} | |
bool Texture2D::isCompressed(GLenum target, GLint level) const | |
{ | |
return IsCompressed(getFormat(target, level)); | |
} | |
bool Texture2D::isDepth(GLenum target, GLint level) const | |
{ | |
return IsDepthTexture(getFormat(target, level)); | |
} | |
void Texture2D::generateMipmaps() | |
{ | |
if(!image[0]) | |
{ | |
return; // FIXME: error? | |
} | |
unsigned int q = log2(std::max(image[0]->getWidth(), image[0]->getHeight())); | |
for(unsigned int i = 1; i <= q; i++) | |
{ | |
if(image[i]) | |
{ | |
image[i]->unbind(); | |
} | |
image[i] = new Image(this, std::max(image[0]->getWidth() >> i, 1), std::max(image[0]->getHeight() >> i, 1), image[0]->getFormat(), image[0]->getType()); | |
if(!image[i]) | |
{ | |
return rad::error(GL_OUT_OF_MEMORY); | |
} | |
getDevice()->stretchRect(image[i - 1], 0, image[i], 0, true); | |
} | |
} | |
egl::Image *Texture2D::getImage(unsigned int level) | |
{ | |
return image[level]; | |
} | |
egl::Image *Texture2D::getRenderTarget(GLenum target, unsigned int level) | |
{ | |
ASSERT(target == GL_TEXTURE_2D); | |
ASSERT(level < IMPLEMENTATION_MAX_TEXTURE_LEVELS); | |
if(image[level]) | |
{ | |
image[level]->addRef(); | |
} | |
return image[level]; | |
} | |
bool Texture2D::isShared(GLenum target, unsigned int level) const | |
{ | |
ASSERT(target == GL_TEXTURE_2D); | |
ASSERT(level < IMPLEMENTATION_MAX_TEXTURE_LEVELS); | |
if(mSurface) // Bound to an EGLSurface | |
{ | |
return true; | |
} | |
if(!image[level]) | |
{ | |
return false; | |
} | |
return image[level]->isShared(); | |
} | |
TextureCubeMap::TextureCubeMap() | |
{ | |
for(int f = 0; f < 6; f++) | |
{ | |
for(int i = 0; i < MIPMAP_LEVELS; i++) | |
{ | |
image[f][i] = 0; | |
} | |
} | |
} | |
TextureCubeMap::~TextureCubeMap() | |
{ | |
resource->lock(sw::DESTRUCT); | |
for(int f = 0; f < 6; f++) | |
{ | |
for(int i = 0; i < MIPMAP_LEVELS; i++) | |
{ | |
if(image[f][i]) | |
{ | |
image[f][i]->unbind(); | |
image[f][i] = 0; | |
} | |
} | |
} | |
resource->unlock(); | |
} | |
GLenum TextureCubeMap::getTarget() const | |
{ | |
return GL_TEXTURE_CUBE_MAP; | |
} | |
GLsizei TextureCubeMap::getWidth(GLenum target, GLint level) const | |
{ | |
int face = CubeFaceIndex(target); | |
return image[face][level] ? image[face][level]->getWidth() : 0; | |
} | |
GLsizei TextureCubeMap::getHeight(GLenum target, GLint level) const | |
{ | |
int face = CubeFaceIndex(target); | |
return image[face][level] ? image[face][level]->getHeight() : 0; | |
} | |
GLenum TextureCubeMap::getFormat(GLenum target, GLint level) const | |
{ | |
int face = CubeFaceIndex(target); | |
return image[face][level] ? image[face][level]->getFormat() : 0; | |
} | |
GLenum TextureCubeMap::getType(GLenum target, GLint level) const | |
{ | |
int face = CubeFaceIndex(target); | |
return image[face][level] ? image[face][level]->getType() : 0; | |
} | |
sw::Format TextureCubeMap::getInternalFormat(GLenum target, GLint level) const | |
{ | |
int face = CubeFaceIndex(target); | |
return image[face][level] ? image[face][level]->getInternalFormat() : sw::FORMAT_NULL; | |
} | |
int TextureCubeMap::getLevelCount() const | |
{ | |
ASSERT(isSamplerComplete()); | |
int levels = 0; | |
while(levels < MIPMAP_LEVELS && image[0][levels]) | |
{ | |
levels++; | |
} | |
return levels; | |
} | |
void TextureCubeMap::setCompressedImage(GLenum target, GLint level, GLenum format, GLsizei width, GLsizei height, GLsizei imageSize, const void *pixels) | |
{ | |
int face = CubeFaceIndex(target); | |
if(image[face][level]) | |
{ | |
image[face][level]->unbind(); | |
} | |
image[face][level] = new Image(this, width, height, format, GL_UNSIGNED_BYTE); | |
if(!image[face][level]) | |
{ | |
return rad::error(GL_OUT_OF_MEMORY); | |
} | |
Texture::setCompressedImage(imageSize, pixels, image[face][level]); | |
} | |
void TextureCubeMap::subImage(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, GLint unpackAlignment, const void *pixels) | |
{ | |
Texture::subImage(xoffset, yoffset, width, height, format, type, unpackAlignment, pixels, image[CubeFaceIndex(target)][level]); | |
} | |
void TextureCubeMap::subImageCompressed(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *pixels) | |
{ | |
Texture::subImageCompressed(xoffset, yoffset, width, height, format, imageSize, pixels, image[CubeFaceIndex(target)][level]); | |
} | |
// Tests for cube map sampling completeness. [OpenGL ES 2.0.24] section 3.8.2 page 86. | |
bool TextureCubeMap::isSamplerComplete() const | |
{ | |
for(int face = 0; face < 6; face++) | |
{ | |
if(!image[face][0]) | |
{ | |
return false; | |
} | |
} | |
int size = image[0][0]->getWidth(); | |
if(size <= 0) | |
{ | |
return false; | |
} | |
if(!isMipmapFiltered()) | |
{ | |
if(!isCubeComplete()) | |
{ | |
return false; | |
} | |
} | |
else | |
{ | |
if(!isMipmapCubeComplete()) // Also tests for isCubeComplete() | |
{ | |
return false; | |
} | |
} | |
return true; | |
} | |
// Tests for cube texture completeness. [OpenGL ES 2.0.24] section 3.7.10 page 81. | |
bool TextureCubeMap::isCubeComplete() const | |
{ | |
if(image[0][0]->getWidth() <= 0 || image[0][0]->getHeight() != image[0][0]->getWidth()) | |
{ | |
return false; | |
} | |
for(unsigned int face = 1; face < 6; face++) | |
{ | |
if(image[face][0]->getWidth() != image[0][0]->getWidth() || | |
image[face][0]->getWidth() != image[0][0]->getHeight() || | |
image[face][0]->getFormat() != image[0][0]->getFormat() || | |
image[face][0]->getType() != image[0][0]->getType()) | |
{ | |
return false; | |
} | |
} | |
return true; | |
} | |
bool TextureCubeMap::isMipmapCubeComplete() const | |
{ | |
if(!isCubeComplete()) | |
{ | |
return false; | |
} | |
GLsizei size = image[0][0]->getWidth(); | |
int q = log2(size); | |
for(int face = 0; face < 6; face++) | |
{ | |
for(int level = 1; level <= q; level++) | |
{ | |
if(!image[face][level]) | |
{ | |
return false; | |
} | |
if(image[face][level]->getFormat() != image[0][0]->getFormat()) | |
{ | |
return false; | |
} | |
if(image[face][level]->getType() != image[0][0]->getType()) | |
{ | |
return false; | |
} | |
if(image[face][level]->getWidth() != std::max(1, size >> level)) | |
{ | |
return false; | |
} | |
} | |
} | |
return true; | |
} | |
bool TextureCubeMap::isCompressed(GLenum target, GLint level) const | |
{ | |
return IsCompressed(getFormat(target, level)); | |
} | |
bool TextureCubeMap::isDepth(GLenum target, GLint level) const | |
{ | |
return IsDepthTexture(getFormat(target, level)); | |
} | |
void TextureCubeMap::setImage(GLenum target, GLint level, GLsizei width, GLsizei height, GLenum format, GLenum type, GLint unpackAlignment, const void *pixels) | |
{ | |
int face = CubeFaceIndex(target); | |
if(image[face][level]) | |
{ | |
image[face][level]->unbind(); | |
} | |
image[face][level] = new Image(this, width, height, format, type); | |
if(!image[face][level]) | |
{ | |
return rad::error(GL_OUT_OF_MEMORY); | |
} | |
Texture::setImage(format, type, unpackAlignment, pixels, image[face][level]); | |
} | |
Image *TextureCubeMap::getImage(int face, unsigned int level) | |
{ | |
return image[face][level]; | |
} | |
Image *TextureCubeMap::getImage(GLenum face, unsigned int level) | |
{ | |
return image[CubeFaceIndex(face)][level]; | |
} | |
void TextureCubeMap::generateMipmaps() | |
{ | |
if(!isCubeComplete()) | |
{ | |
return rad::error(GL_INVALID_OPERATION); | |
} | |
unsigned int q = log2(image[0][0]->getWidth()); | |
for(unsigned int f = 0; f < 6; f++) | |
{ | |
for(unsigned int i = 1; i <= q; i++) | |
{ | |
if(image[f][i]) | |
{ | |
image[f][i]->unbind(); | |
} | |
image[f][i] = new Image(this, std::max(image[0][0]->getWidth() >> i, 1), std::max(image[0][0]->getHeight() >> i, 1), image[0][0]->getFormat(), image[0][0]->getType()); | |
if(!image[f][i]) | |
{ | |
return rad::error(GL_OUT_OF_MEMORY); | |
} | |
getDevice()->stretchRect(image[f][i - 1], 0, image[f][i], 0, true); | |
} | |
} | |
} | |
Image *TextureCubeMap::getRenderTarget(GLenum target, unsigned int level) | |
{ | |
ASSERT(IsCubemapTextureTarget(target)); | |
ASSERT(level < IMPLEMENTATION_MAX_TEXTURE_LEVELS); | |
int face = CubeFaceIndex(target); | |
if(image[face][level]) | |
{ | |
image[face][level]->addRef(); | |
} | |
return image[face][level]; | |
} | |
bool TextureCubeMap::isShared(GLenum target, unsigned int level) const | |
{ | |
ASSERT(IsCubemapTextureTarget(target)); | |
ASSERT(level < IMPLEMENTATION_MAX_TEXTURE_LEVELS); | |
int face = CubeFaceIndex(target); | |
if(!image[face][level]) | |
{ | |
return false; | |
} | |
return image[face][level]->isShared(); | |
} | |
} | |
// Exported functions for use by EGL | |
extern "C" | |
{ | |
es2::Image *createBackBuffer(int width, int height, const egl::Config *config) | |
{ | |
if(config) | |
{ | |
return new es2::Image(0, width, height, config->mAlphaSize ? GL_RGBA : GL_RGB, GL_UNSIGNED_BYTE); | |
} | |
return 0; | |
} | |
es2::Image *createDepthStencil(unsigned int width, unsigned int height, sw::Format format, int multiSampleDepth, bool discard) | |
{ | |
if(width == 0 || height == 0 || height > OUTLINE_RESOLUTION) | |
{ | |
ERR("Invalid parameters"); | |
return 0; | |
} | |
bool lockable = true; | |
switch(format) | |
{ | |
// case sw::FORMAT_D15S1: | |
case sw::FORMAT_D24S8: | |
case sw::FORMAT_D24X8: | |
// case sw::FORMAT_D24X4S4: | |
case sw::FORMAT_D24FS8: | |
case sw::FORMAT_D32: | |
case sw::FORMAT_D16: | |
lockable = false; | |
break; | |
// case sw::FORMAT_S8_LOCKABLE: | |
// case sw::FORMAT_D16_LOCKABLE: | |
case sw::FORMAT_D32F_LOCKABLE: | |
// case sw::FORMAT_D32_LOCKABLE: | |
case sw::FORMAT_DF24S8: | |
case sw::FORMAT_DF16S8: | |
lockable = true; | |
break; | |
default: | |
UNREACHABLE(); | |
} | |
es2::Image *surface = new es2::Image(0, width, height, format, multiSampleDepth, lockable, true); | |
if(!surface) | |
{ | |
ERR("Out of memory"); | |
return 0; | |
} | |
return surface; | |
} | |
} |