Welcome, Guest. Please login or register. Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - wdmitry

Pages: [1]
1
Feature requests / Android text input other than english
« on: June 11, 2024, 11:39:58 pm »
the event _ev.type == sf::Event::TextEntered won't come on input attempt in another language.
the button code comes -1.

however in desktop version it works

2
Feature requests / export vertexes from the Shape class
« on: March 23, 2024, 01:28:47 pm »
The Shape class has this members. I assume it contains all the information required to draw basic sfml shapes.
But when you have too many shapes to draw, each shape require an individual draw call

Instead it would be possible to export memory to this vertexes of the shapes from the Shape class.
So that the user can build a huge array of vertexes from this shapes and just batch draw it in a single call.

VertexArray    m_vertices{PrimitiveType::TriangleFan};          //!< Vertex array containing the fill geometry
VertexArray    m_outlineVertices{PrimitiveType::TriangleStrip}; //!< Vertex array containing the outline geometry
 

3
General / Drawing out of screen
« on: November 22, 2023, 07:33:18 am »
Should I detect that the graphics is out of main view and therefor disable the draw code or it is done automatically?

4
System / sf::Vector2f is unsigned?
« on: November 21, 2023, 12:03:39 pm »
sf::Vector2f(100, -100);

will result into

{ 100, 2.14748e+09 }

5
General / Android support
« on: November 19, 2023, 10:01:26 pm »
I find some very old articles of people tried to build this thing up for android.
Is there any Android support at all? Tutorials?


Pages: [1]