Commit fad40f09 by Jamie Madill Committed by Commit Bot

Entry Points: Expose glTexStorage3DEXT.

The new dEQP takes advantage of the EXT entry point. If it is missing, dEQP will trigger an unexpected crash. Bug: angleproject:2319 Change-Id: Ib9a32931cd50bc96d9918662f16262772afbe36a Reviewed-on: https://chromium-review.googlesource.com/889695Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent 6807f826
......@@ -574,6 +574,7 @@ ProcEntry g_procTable[] = {
{"glTexStorage2DEXT", P(gl::TexStorage2DEXT)},
{"glTexStorage2DMultisample", P(gl::TexStorage2DMultisample)},
{"glTexStorage3D", P(gl::TexStorage3D)},
{"glTexStorage3DEXT", P(gl::TexStorage3DEXT)},
{"glTexSubImage2D", P(gl::TexSubImage2D)},
{"glTexSubImage2DRobustANGLE", P(gl::TexSubImage2DRobustANGLE)},
{"glTexSubImage3D", P(gl::TexSubImage3D)},
......@@ -646,5 +647,5 @@ ProcEntry g_procTable[] = {
{"glWaitSync", P(gl::WaitSync)},
{"glWeightPointerOES", P(gl::WeightPointerOES)}};
size_t g_numProcs = 616;
size_t g_numProcs = 617;
} // namespace egl
......@@ -344,7 +344,8 @@
],
"GL_EXT_texture_storage": [
"glTexStorage2DEXT"
"glTexStorage2DEXT",
"glTexStorage3DEXT"
],
"GL_EXT_robustness": [
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment