HalfLifeAssetManager icon indicating copy to clipboard operation
HalfLifeAssetManager copied to clipboard

glGenerateMipmap is an OpenGL 3.0 API, needs replacing

Open SamVanheer opened this issue 3 years ago • 1 comments

glGenerateMipmap was added with OpenGL 3.0, which means users whose driver only supports OpenGL 2.1 will not be able to run the program if mipmaps are enabled. A software implementation is needed to replace this API call.

SamVanheer avatar Aug 16 '21 10:08 SamVanheer

This API is part of OpenGL ES 2.0 so it may be possible to rely on ANGLE to handle this instead.

SamVanheer avatar Aug 18 '21 09:08 SamVanheer