Bug 1229152. Expose unsized GL_FLOAT formats required by GL_OES_texture_float

BUG=angleproject:1209
This commit is contained in:
Jeff Muizelaar 2015-12-03 16:39:50 -05:00
parent 747c6ff6f1
commit 3add85f0a5
2 changed files with 4 additions and 2 deletions

View File

@ -1,3 +1,3 @@
#define ANGLE_COMMIT_HASH "2eb89424cc6d"
#define ANGLE_COMMIT_HASH "316930d51ea9"
#define ANGLE_COMMIT_HASH_SIZE 12
#define ANGLE_COMMIT_DATE "2015-11-28 17:17:38 -0500"
#define ANGLE_COMMIT_DATE "2015-12-03 16:34:05 -0500"

View File

@ -154,6 +154,8 @@ ES3FormatCombinationSet BuildES3FormatSet()
InsertES3FormatCombo(&set, GL_SRGB8, GL_SRGB_EXT, GL_UNSIGNED_BYTE );
// From GL_OES_texture_float
InsertES3FormatCombo(&set, GL_RGBA, GL_RGBA, GL_FLOAT );
InsertES3FormatCombo(&set, GL_RGB, GL_RGB, GL_FLOAT );
InsertES3FormatCombo(&set, GL_LUMINANCE_ALPHA, GL_LUMINANCE_ALPHA, GL_FLOAT );
InsertES3FormatCombo(&set, GL_LUMINANCE, GL_LUMINANCE, GL_FLOAT );
InsertES3FormatCombo(&set, GL_ALPHA, GL_ALPHA, GL_FLOAT );