Ilia Mirkin

Results 76 comments of Ilia Mirkin

I believe I have a solution to this waiting in a pull request since before this bug was filed: https://github.com/KhronosGroup/VK-GL-CTS/pull/283 I considered removing the gles3 requirement, but that seemed off...

So what I was wondering was whether you thought it'd be practical to have an automated process consuming the OpenGL-Refpages data directly. It could be a separate tree so that...

OK, so stuff like examples/etc are all "outside" of the main .xhtml content data? I thought there were special tags/etc that were inserted, but perhaps that's done "later". If it's...

Also, it's not so much about frequency of updates, but having a single spot where to make the updates, to avoid divergence as much as possible.

The data really is strings though, mostly encoded as UTF-8 sequences, with some bad data that somehow snuck in. I have no idea how, or which string fields it's in....

My specific use-case involves Go and protobuf.js. bytes in JS would become ByteBuffer everywhere. But there could be a similar option for js. FWIW in the short run, we've just...

By the way, in my research on this, I also found optional bool java_string_check_utf8 = 27 [default=false]; in descriptor.proto. No idea what its implications are for the Java protobuf generator......

The full comment starts with "This code used to just store a String" which then points to some problems. However they resolved it with cleverness.

There's a `--sparse` option which will only generate the protos defined/used in protocol.proto. So if you split things up so that all your js-needed protos were referenced in some file,...

Some quick investigation suggests that integers are written using a varint encoding, which is endian-safe, while floats/doubles are dumped as they appear in memory. This means that different-endian platforms will...