<param name="value" type="const GLuint64 *" />
</function>
- <function name="IsTextureHandleResidentARB">
+ <function name="IsTextureHandleResidentARB" no_error="true">
<return type="GLboolean"/>
<param name="handle" type="GLuint64" />
</function>
- <function name="IsImageHandleResidentARB">
+ <function name="IsImageHandleResidentARB" no_error="true">
<return type="GLboolean"/>
<param name="handle" type="GLuint64" />
</function>
make_image_handle_resident(ctx, imgHandleObj, GL_READ_ONLY, false);
}
+GLboolean GLAPIENTRY
+_mesa_IsTextureHandleResidentARB_no_error(GLuint64 handle)
+{
+ GET_CURRENT_CONTEXT(ctx);
+ return is_texture_handle_resident(ctx, handle);
+}
+
GLboolean GLAPIENTRY
_mesa_IsTextureHandleResidentARB(GLuint64 handle)
{
return is_texture_handle_resident(ctx, handle);
}
+GLboolean GLAPIENTRY
+_mesa_IsImageHandleResidentARB_no_error(GLuint64 handle)
+{
+ GET_CURRENT_CONTEXT(ctx);
+ return is_image_handle_resident(ctx, handle);
+}
+
GLboolean GLAPIENTRY
_mesa_IsImageHandleResidentARB(GLuint64 handle)
{
void GLAPIENTRY
_mesa_MakeImageHandleNonResidentARB(GLuint64 handle);
+GLboolean GLAPIENTRY
+_mesa_IsTextureHandleResidentARB_no_error(GLuint64 handle);
+
GLboolean GLAPIENTRY
_mesa_IsTextureHandleResidentARB(GLuint64 handle);
+
+GLboolean GLAPIENTRY
+_mesa_IsImageHandleResidentARB_no_error(GLuint64 handle);
+
GLboolean GLAPIENTRY
_mesa_IsImageHandleResidentARB(GLuint64 handle);