Skip to content

Commit

Permalink
Replace GLuint64EXT with GLuint64 (KhronosGroup#3195)
Browse files Browse the repository at this point in the history
Back in the old days [there was no GLuint64](KhronosGroup#2076 (comment)), but [now there is](https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.1).

The current definition causes IDL parser warning because there are two definitions, one here and another in [EXT_disjoint_timer_query](https://www.khronos.org/registry/webgl/extensions/EXT_disjoint_timer_query/).
  • Loading branch information
saschanaz authored Dec 29, 2020
1 parent c35d432 commit b9f6615
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions extensions/EXT_disjoint_timer_query_webgl2/extension.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@
</overview>

<idl xml:space="preserve">
typedef unsigned long long GLuint64EXT;

[LegacyNoInterfaceObject]
interface EXT_disjoint_timer_query_webgl2 {
const GLenum QUERY_COUNTER_BITS_EXT = 0x8864;
Expand Down Expand Up @@ -102,7 +100,7 @@ interface EXT_disjoint_timer_query_webgl2 {
The return type depends on the parameter queried:
<table width="30%">
<tr><th>pname</th><th>returned type</th></tr>
<tr><td>TIMESTAMP_EXT</td><td>GLuint64EXT</td></tr>
<tr><td>TIMESTAMP_EXT</td><td>GLuint64</td></tr>
<tr><td>GPU_DISJOINT_EXT</td><td>boolean</td></tr>
</table>
</function>
Expand Down

0 comments on commit b9f6615

Please sign in to comment.