mesa: Rename and wire-up GetInteger64i_v
The function was named badly and wasn't in the dispatch table, making it hard to find. Fixes transform_feedback2_states and gets a few other transform feedback tests closer to working in es3conform. Reviewed-by Anuj Phogat <anuj.phogat@gmail.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
@@ -595,7 +595,7 @@
|
|||||||
<enum name="MAX_FRAGMENT_INPUT_COMPONENTS" value="0x9125"/>
|
<enum name="MAX_FRAGMENT_INPUT_COMPONENTS" value="0x9125"/>
|
||||||
<enum name="CONTEXT_PROFILE_MASK" value="0x9126"/>
|
<enum name="CONTEXT_PROFILE_MASK" value="0x9126"/>
|
||||||
|
|
||||||
<function name="GetInteger64i_v" offset="assign" es2="3.0" exec="skip">
|
<function name="GetInteger64i_v" offset="assign" es2="3.0">
|
||||||
<param name="cap" type="GLenum"/>
|
<param name="cap" type="GLenum"/>
|
||||||
<param name="index" type="GLuint"/>
|
<param name="index" type="GLuint"/>
|
||||||
<param name="data" type="GLint64 *"/>
|
<param name="data" type="GLint64 *"/>
|
||||||
|
@@ -1709,11 +1709,11 @@ _mesa_GetIntegeri_v( GLenum pname, GLuint index, GLint *params )
|
|||||||
}
|
}
|
||||||
|
|
||||||
void GLAPIENTRY
|
void GLAPIENTRY
|
||||||
_mesa_GetInteger64Indexedv( GLenum pname, GLuint index, GLint64 *params )
|
_mesa_GetInteger64i_v( GLenum pname, GLuint index, GLint64 *params )
|
||||||
{
|
{
|
||||||
union value v;
|
union value v;
|
||||||
enum value_type type =
|
enum value_type type =
|
||||||
find_value_indexed("glGetIntegerIndexedv", pname, index, &v);
|
find_value_indexed("glGetInteger64i_v", pname, index, &v);
|
||||||
|
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case TYPE_INT:
|
case TYPE_INT:
|
||||||
|
@@ -60,7 +60,7 @@ extern void GLAPIENTRY
|
|||||||
_mesa_GetIntegeri_v( GLenum pname, GLuint index, GLint *params );
|
_mesa_GetIntegeri_v( GLenum pname, GLuint index, GLint *params );
|
||||||
|
|
||||||
extern void GLAPIENTRY
|
extern void GLAPIENTRY
|
||||||
_mesa_GetInteger64Indexedv( GLenum pname, GLuint index, GLint64 *params );
|
_mesa_GetInteger64i_v( GLenum pname, GLuint index, GLint64 *params );
|
||||||
|
|
||||||
extern void GLAPIENTRY
|
extern void GLAPIENTRY
|
||||||
_mesa_GetPointerv( GLenum pname, GLvoid **params );
|
_mesa_GetPointerv( GLenum pname, GLvoid **params );
|
||||||
|
@@ -1310,8 +1310,7 @@ const struct function gles3_functions_possible[] = {
|
|||||||
// We check for the aliased -OES version in GLES 2
|
// We check for the aliased -OES version in GLES 2
|
||||||
// { "glGetBufferPointerv", 30, -1 },
|
// { "glGetBufferPointerv", 30, -1 },
|
||||||
{ "glGetFragDataLocation", 30, -1 },
|
{ "glGetFragDataLocation", 30, -1 },
|
||||||
/// XXX: Missing implementation of glGetInteger64i_v
|
{ "glGetInteger64i_v", 30, -1 },
|
||||||
// { "glGetInteger64i_v", 30, -1 },
|
|
||||||
{ "glGetInteger64v", 30, -1 },
|
{ "glGetInteger64v", 30, -1 },
|
||||||
{ "glGetIntegeri_v", 30, -1 },
|
{ "glGetIntegeri_v", 30, -1 },
|
||||||
// XXX: Missing implementation of ARB_internalformat_query
|
// XXX: Missing implementation of ARB_internalformat_query
|
||||||
|
Reference in New Issue
Block a user