The drivers for Intel HD Graphics 3000 in Windows 10 does not expose all Open GL capabilities of the GPU. So software relying on Open GL features not present in Open GL 1.1 will not work. Using older versions of Windows or Linux might work since the chip have more features than the driver exposes.
The fix is to add a compatibility shim using the Windows ADK software.
Link: https://docs.microsoft.com/en-us/windows-hardware/get-started/adk-install
Here's a list of mildly interesting things about the C language that I learned mostly by consuming Clang's ASTs. Although surprises are getting sparser, I might continue to update this document over time.
There are many more mildly interesting features of C++, but the language is literally known for being weird, whereas C is usually considered smaller and simpler, so this is (almost) only about C.
1. Combined type and variable/field declaration, inside a struct scope [https://godbolt.org/g/Rh94Go]
struct foo {
struct bar {
int x;This is intended to be a complete and ready-to-use user constraints file for the [Digilent CoolRunner-II CPLD Starter Board][1] to ease the creation of projects within the Xilinx ISE software.
Below is a list of the high-level I/O components featured on the board:
- LEDs - 4
| The USB Blaster udev rules on the Altera website | |
| ( http://www.altera.com/download/drivers/dri-usb_b-lnx.html ) | |
| did not work for me on Debian Jessie/Sid. A modified version of the file, listed below, works for me | |
| (this is the contents of /etc/udev/rules.d/51-usbblaster.rules ). After restarting udev | |
| (`sudo service udev restart`) I was able to program the DE0-Nano. | |
| # USB-Blaster | |
| SUBSYSTEM=="usb", ATTR{idVendor}=="09fb", ATTR{idProduct}=="6001", MODE="0666", GROUP="plugdev" | |
| SUBSYSTEM=="usb", ATTR{idVendor}=="09fb", ATTR{idProduct}=="6002", MODE="0666", GROUP="plugdev" | |
| SUBSYSTEM=="usb", ATTR{idVendor}=="09fb", ATTR{idProduct}=="6003", MODE="0666", GROUP="plugdev" |