You can use the WS_POPUPWINDOW style to remove all decoration and set the size to the screen size…
It doesn't work. Here's my code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
2…
Can the CreateWindow create a fullscreen window? If it can then what parameter should I pass in? …
You need to use AdujstWindowRect. You give it the desired size and position (the client rect/area…
The CreateWindow function creates a window with a size equal to the drawable area and the little …
Miles —
I'm starting up on devlog videos again after a long hiatus. In this one, I show off all the featu…
[offtopic] I worked around my build issue by moving the 4coder folder to a different hard drive. …
Sokus —
Okay, I played with it a bit more and sq_goto_next_jump works just as the original, I created a j…
Sokus —
My file structure looks like this:
1
2
3
4
5
6
7
8
9
10
11
12
134coder (root folder)
c…
What is the structure of your 4coder folder and custom code folder.
I tried to compile your code…
Sokus —
The command lister did list sq_goto_next_jump, although it surprised me it was already bound to a…
Also depending on what you want to do, 4coder provides some function to draw things. Look into 4c…
If you use the command lister (default is Alt + x) does it list a keybinding for sq_goto_next_jum…
Sokus —
Custom command I created got assigned to a key without me specifying it. I am trying to get new f…
Using glfw or any other library does not require anything special in 4coder. As long as you have …
Riana —
I don't have to use Cmake. I just want to be able to say #include <GLFW/glfw3.h>.
The preferred way of compiling the custom layer is to use the script files in the custom/bin fold…
Riana —
I have just started using 4coder today and I want to know how I could set it up to work with Cmak…
spx —
TorquePentagramI have returned to work on c++ project. I have some problems with codeclap 0.9.7.1…
But making an ISA for gpu and cpu would only solve the first one, it wouldn't help other hardware…
1. you don't talk to gpus directly, instead you talk to the gpu driver through a standardized API…
I've just watched "The Thirty Million Line Problem" and there's something that I haven't understa…
Thank you very much for answering such a noob question!
Visual Studio does not care about Intel vs AMD cpu. Its debugger will run exactly the same on any…
Hi,
I'm not sure if this is the right place to ask, but I'm planning to buy a new PC,
and I'm th…
nakst —
longtran2904What about quaternion? What advantage does quaternion have over a vector3?
Let me …
As ratchetfreak said, if VirtualAlloc fails you can't do anything. You could print a message to t…
I don't know much about PE headers, but I inspected 6 executables (with this tool, which I don't …
HMH's memory strategy is structured around a few big allocations of reasonable size up front. If …
Hello,
I recently started following handmade hero and am finding it really helpful and invaluabl…